From 2a92ba9f12ddfc741f194c8e2392097f8a3a57e7 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Mon, 17 Mar 2025 21:13:01 -0700 Subject: [PATCH 1/9] Pop two load const inline borrow --- Include/internal/pycore_uop_ids.h | 59 +- Include/internal/pycore_uop_metadata.h | 4 + Python/bytecodes.c | 6 + Python/deepfreeze/deepfreeze.c | 154152 ++++++++++++++++++++++ Python/executor_cases.c.h | 24 + Python/optimizer_bytecodes.c | 17 +- Python/optimizer_cases.c.h | 29 +- 7 files changed, 154260 insertions(+), 31 deletions(-) create mode 100644 Python/deepfreeze/deepfreeze.c diff --git a/Include/internal/pycore_uop_ids.h b/Include/internal/pycore_uop_ids.h index 5143b10def5396..0a04ddec49ffcc 100644 --- a/Include/internal/pycore_uop_ids.h +++ b/Include/internal/pycore_uop_ids.h @@ -240,50 +240,51 @@ extern "C" { #define _POP_TOP POP_TOP #define _POP_TOP_LOAD_CONST_INLINE 446 #define _POP_TOP_LOAD_CONST_INLINE_BORROW 447 +#define _POP_TWO_LOAD_CONST_INLINE_BORROW 448 #define _PUSH_EXC_INFO PUSH_EXC_INFO -#define _PUSH_FRAME 448 +#define _PUSH_FRAME 449 #define _PUSH_NULL PUSH_NULL -#define _PUSH_NULL_CONDITIONAL 449 -#define _PY_FRAME_GENERAL 450 -#define _PY_FRAME_KW 451 -#define _QUICKEN_RESUME 452 -#define _REPLACE_WITH_TRUE 453 +#define _PUSH_NULL_CONDITIONAL 450 +#define _PY_FRAME_GENERAL 451 +#define _PY_FRAME_KW 452 +#define _QUICKEN_RESUME 453 +#define _REPLACE_WITH_TRUE 454 #define _RESUME_CHECK RESUME_CHECK #define _RETURN_GENERATOR RETURN_GENERATOR #define _RETURN_VALUE RETURN_VALUE -#define _SAVE_RETURN_OFFSET 454 -#define _SEND 455 -#define _SEND_GEN_FRAME 456 +#define _SAVE_RETURN_OFFSET 455 +#define _SEND 456 +#define _SEND_GEN_FRAME 457 #define _SETUP_ANNOTATIONS SETUP_ANNOTATIONS #define _SET_ADD SET_ADD #define _SET_FUNCTION_ATTRIBUTE SET_FUNCTION_ATTRIBUTE #define _SET_UPDATE SET_UPDATE -#define _START_EXECUTOR 457 -#define _STORE_ATTR 458 -#define _STORE_ATTR_INSTANCE_VALUE 459 -#define _STORE_ATTR_SLOT 460 -#define _STORE_ATTR_WITH_HINT 461 +#define _START_EXECUTOR 458 +#define _STORE_ATTR 459 +#define _STORE_ATTR_INSTANCE_VALUE 460 +#define _STORE_ATTR_SLOT 461 +#define _STORE_ATTR_WITH_HINT 462 #define _STORE_DEREF STORE_DEREF -#define _STORE_FAST 462 -#define _STORE_FAST_0 463 -#define _STORE_FAST_1 464 -#define _STORE_FAST_2 465 -#define _STORE_FAST_3 466 -#define _STORE_FAST_4 467 -#define _STORE_FAST_5 468 -#define _STORE_FAST_6 469 -#define _STORE_FAST_7 470 +#define _STORE_FAST 463 +#define _STORE_FAST_0 464 +#define _STORE_FAST_1 465 +#define _STORE_FAST_2 466 +#define _STORE_FAST_3 467 +#define _STORE_FAST_4 468 +#define _STORE_FAST_5 469 +#define _STORE_FAST_6 470 +#define _STORE_FAST_7 471 #define _STORE_FAST_LOAD_FAST STORE_FAST_LOAD_FAST #define _STORE_FAST_STORE_FAST STORE_FAST_STORE_FAST #define _STORE_GLOBAL STORE_GLOBAL #define _STORE_NAME STORE_NAME -#define _STORE_SLICE 471 -#define _STORE_SUBSCR 472 +#define _STORE_SLICE 472 +#define _STORE_SUBSCR 473 #define _STORE_SUBSCR_DICT STORE_SUBSCR_DICT #define _STORE_SUBSCR_LIST_INT STORE_SUBSCR_LIST_INT #define _SWAP SWAP -#define _TIER2_RESUME_CHECK 473 -#define _TO_BOOL 474 +#define _TIER2_RESUME_CHECK 474 +#define _TO_BOOL 475 #define _TO_BOOL_BOOL TO_BOOL_BOOL #define _TO_BOOL_INT TO_BOOL_INT #define _TO_BOOL_LIST TO_BOOL_LIST @@ -293,13 +294,13 @@ extern "C" { #define _UNARY_NEGATIVE UNARY_NEGATIVE #define _UNARY_NOT UNARY_NOT #define _UNPACK_EX UNPACK_EX -#define _UNPACK_SEQUENCE 475 +#define _UNPACK_SEQUENCE 476 #define _UNPACK_SEQUENCE_LIST UNPACK_SEQUENCE_LIST #define _UNPACK_SEQUENCE_TUPLE UNPACK_SEQUENCE_TUPLE #define _UNPACK_SEQUENCE_TWO_TUPLE UNPACK_SEQUENCE_TWO_TUPLE #define _WITH_EXCEPT_START WITH_EXCEPT_START #define _YIELD_VALUE YIELD_VALUE -#define MAX_UOP_ID 475 +#define MAX_UOP_ID 476 #ifdef __cplusplus } diff --git a/Include/internal/pycore_uop_metadata.h b/Include/internal/pycore_uop_metadata.h index 883a07a408ca92..9e107e13c01c3e 100644 --- a/Include/internal/pycore_uop_metadata.h +++ b/Include/internal/pycore_uop_metadata.h @@ -273,6 +273,7 @@ const uint16_t _PyUop_Flags[MAX_UOP_ID+1] = { [_POP_TOP_LOAD_CONST_INLINE] = HAS_ESCAPES_FLAG | HAS_PURE_FLAG, [_LOAD_CONST_INLINE_BORROW] = HAS_PURE_FLAG, [_POP_TOP_LOAD_CONST_INLINE_BORROW] = HAS_ESCAPES_FLAG | HAS_PURE_FLAG, + [_POP_TWO_LOAD_CONST_INLINE_BORROW] = HAS_ESCAPES_FLAG | HAS_PURE_FLAG, [_CHECK_FUNCTION] = HAS_DEOPT_FLAG, [_START_EXECUTOR] = HAS_ESCAPES_FLAG, [_MAKE_WARM] = 0, @@ -495,6 +496,7 @@ const char *const _PyOpcode_uop_name[MAX_UOP_ID+1] = { [_POP_TOP] = "_POP_TOP", [_POP_TOP_LOAD_CONST_INLINE] = "_POP_TOP_LOAD_CONST_INLINE", [_POP_TOP_LOAD_CONST_INLINE_BORROW] = "_POP_TOP_LOAD_CONST_INLINE_BORROW", + [_POP_TWO_LOAD_CONST_INLINE_BORROW] = "_POP_TWO_LOAD_CONST_INLINE_BORROW", [_PUSH_EXC_INFO] = "_PUSH_EXC_INFO", [_PUSH_FRAME] = "_PUSH_FRAME", [_PUSH_NULL] = "_PUSH_NULL", @@ -1065,6 +1067,8 @@ int _PyUop_num_popped(int opcode, int oparg) return 0; case _POP_TOP_LOAD_CONST_INLINE_BORROW: return 1; + case _POP_TWO_LOAD_CONST_INLINE_BORROW: + return 2; case _CHECK_FUNCTION: return 0; case _START_EXECUTOR: diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 17dc0c5bfb5c9f..6716b7a0f80401 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -5038,6 +5038,12 @@ dummy_func( value = PyStackRef_FromPyObjectImmortal(ptr); } + tier2 pure op (_POP_TWO_LOAD_CONST_INLINE_BORROW, (ptr/4, pop1, pop2 -- value)) { + PyStackRef_CLOSE(pop2); + PyStackRef_CLOSE(pop1); + value = PyStackRef_FromPyObjectImmortal(ptr); + } + tier2 op(_CHECK_FUNCTION, (func_version/2 -- )) { assert(PyStackRef_FunctionCheck(frame->f_funcobj)); PyFunctionObject *func = (PyFunctionObject *)PyStackRef_AsPyObjectBorrow(frame->f_funcobj); diff --git a/Python/deepfreeze/deepfreeze.c b/Python/deepfreeze/deepfreeze.c new file mode 100644 index 00000000000000..a81695b8c7ca1c --- /dev/null +++ b/Python/deepfreeze/deepfreeze.c @@ -0,0 +1,154152 @@ +#include "Python.h" +#include "internal/pycore_gc.h" +#include "internal/pycore_code.h" +#include "internal/pycore_long.h" + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[340]; + } +importlib__bootstrap_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 339, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x6f\x72\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x2e\x0a\x0a\x54\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x4e\x4f\x54\x20\x6d\x65\x61\x6e\x74\x20\x74\x6f\x20\x62\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x21\x20\x49\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x64\x65\x73\x69\x67\x6e\x65\x64\x20\x73\x75\x63\x68\x0a\x74\x68\x61\x74\x20\x69\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x62\x6f\x6f\x74\x73\x74\x72\x61\x70\x70\x65\x64\x20\x69\x6e\x74\x6f\x20\x50\x79\x74\x68\x6f\x6e\x20\x61\x73\x20\x74\x68\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x2e\x20\x41\x73\x0a\x73\x75\x63\x68\x20\x69\x74\x20\x72\x65\x71\x75\x69\x72\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x6a\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x61\x6e\x64\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x73\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x0a\x77\x6f\x72\x6b\x2e\x20\x4f\x6e\x65\x20\x73\x68\x6f\x75\x6c\x64\x20\x75\x73\x65\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x20\x61\x73\x20\x74\x68\x65\x20\x70\x75\x62\x6c\x69\x63\x2d\x66\x61\x63\x69\x6e\x67\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_AttributeError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AttributeError", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_type = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "type", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(__qualname__), + & const_str_AttributeError._ascii.ob_base, + & const_str_type._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +importlib__bootstrap_toplevel_consts_1_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str__object_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_object_name", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +importlib__bootstrap_toplevel_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x03\x05\x26\xd8\x0f\x12\xd4\x0f\x1f\xd0\x08\x1f\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xdd\x0f\x13\x90\x43\x89\x79\x8c\x79\xd4\x0f\x25\xd0\x08\x25\xd0\x08\x25\xd0\x08\x25\xf0\x03\x01\x05\x26\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +importlib__bootstrap_toplevel_consts_1_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x06\x09\x00\x89\x1e\x2a\x03\xa9\x01\x2a\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(obj), + }, + }, +}; +static + struct _PyCode_DEF(90) +importlib__bootstrap_toplevel_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 45, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_1_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 23, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__object_name._ascii.ob_base, + .co_qualname = & const_str__object_name._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x17\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[48]; + } +importlib__bootstrap_toplevel_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 47, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Simple substitute for functools.update_wrapper.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_3_consts_1 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(__module__), + &_Py_ID(__name__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_3_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_3_consts_1._object.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_hasattr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "hasattr", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_setattr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "setattr", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_update = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "update", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_hasattr._ascii.ob_base, + & const_str_setattr._ascii.ob_base, + &_Py_ID(getattr), + &_Py_ID(__dict__), + & const_str_update._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__wrap = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[95]; + } +importlib__bootstrap_toplevel_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 94, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x13\x48\xf0\x00\x02\x05\x39\xf0\x00\x02\x05\x39\x88\x07\xdd\x0b\x12\x90\x33\x98\x07\xd1\x0b\x20\xd4\x0b\x20\xf0\x00\x01\x09\x39\xdd\x0c\x13\x90\x43\x98\x17\xa5\x27\xa8\x23\xa8\x77\xd1\x22\x37\xd4\x22\x37\xd1\x0c\x38\xd4\x0c\x38\xd0\x0c\x38\xf8\xd8\x04\x07\x84\x4c\xd7\x04\x17\xd2\x04\x17\x98\x03\x9c\x0c\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_new = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "new", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_old = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "old", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_new._ascii.ob_base, + & const_str_old._ascii.ob_base, + &_Py_ID(replace), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[4]; + } +importlib__bootstrap_toplevel_consts_3_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 3, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(172) +importlib__bootstrap_toplevel_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 86, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_3_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 9, + .co_firstlineno = 40, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__wrap._ascii.ob_base, + .co_qualname = & const_str__wrap._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x44\x00\x5d\x31\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x32\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_sys = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sys", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_type._ascii.ob_base, + & const_str_sys._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str__new_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_new_module", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +importlib__bootstrap_toplevel_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x14\x8d\x34\x95\x03\x89\x39\x8c\x39\x90\x54\x89\x3f\x8c\x3f\xd0\x04\x1a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(name), + }, + }, +}; +static + struct _PyCode_DEF(60) +importlib__bootstrap_toplevel_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 30, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 48, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__new_module._ascii.ob_base, + .co_qualname = & const_str__new_module._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__DeadlockError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_DeadlockError", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__DeadlockError._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +importlib__bootstrap_toplevel_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x08\x80\x44", +}; +static + struct _PyCode_DEF(14) +importlib__bootstrap_toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 7, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_5_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 61, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__DeadlockError._ascii.ob_base, + .co_qualname = & const_str__DeadlockError._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str__ModuleLock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLock", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[170]; + } +importlib__bootstrap_toplevel_consts_7_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 169, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x72\x65\x63\x75\x72\x73\x69\x76\x65\x20\x6c\x6f\x63\x6b\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x64\x65\x74\x65\x63\x74\x20\x64\x65\x61\x64\x6c\x6f\x63\x6b\x73\x0a\x20\x20\x20\x20\x28\x65\x2e\x67\x2e\x20\x74\x68\x72\x65\x61\x64\x20\x31\x20\x74\x72\x79\x69\x6e\x67\x20\x74\x6f\x20\x74\x61\x6b\x65\x20\x6c\x6f\x63\x6b\x73\x20\x41\x20\x74\x68\x65\x6e\x20\x42\x2c\x20\x61\x6e\x64\x20\x74\x68\x72\x65\x61\x64\x20\x32\x20\x74\x72\x79\x69\x6e\x67\x20\x74\x6f\x0a\x20\x20\x20\x20\x74\x61\x6b\x65\x20\x6c\x6f\x63\x6b\x73\x20\x42\x20\x74\x68\x65\x6e\x20\x41\x29\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__thread = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_thread", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_allocate_lock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "allocate_lock", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_lock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lock", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_wakeup = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "wakeup", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_owner = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "owner", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_count = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "count", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_waiters = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "waiters", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str__thread._ascii.ob_base, + & const_str_allocate_lock._ascii.ob_base, + & const_str_lock._ascii.ob_base, + & const_str_wakeup._ascii.ob_base, + &_Py_ID(name), + & const_str_owner._ascii.ob_base, + & const_str_count._ascii.ob_base, + & const_str_waiters._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +importlib__bootstrap_toplevel_consts_7_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLock.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[73]; + } +importlib__bootstrap_toplevel_consts_7_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 72, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x14\x1b\xd7\x14\x29\xd2\x14\x29\xd1\x14\x2b\xd4\x14\x2b\x88\x04\x8c\x09\xdd\x16\x1d\xd7\x16\x2b\xd2\x16\x2b\xd1\x16\x2d\xd4\x16\x2d\x88\x04\x8c\x0b\xd8\x14\x18\x88\x04\x8c\x09\xd8\x15\x19\x88\x04\x8c\x0a\xd8\x15\x16\x88\x04\x8c\x0a\xd8\x17\x18\x88\x04\x8c\x0c\x88\x0c\x88\x0c", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_self = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "self", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(name), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(182) +importlib__bootstrap_toplevel_consts_7_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 91, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_7_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 71, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_2_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + Py_True, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_get_ident = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "get_ident", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_set = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str__blocking_on = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_blocking_on", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__thread._ascii.ob_base, + & const_str_get_ident._ascii.ob_base, + & const_str_owner._ascii.ob_base, + & const_str_set._ascii.ob_base, + & const_str__blocking_on._ascii.ob_base, + &_Py_ID(get), + &_Py_ID(add), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_has_deadlock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "has_deadlock", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +importlib__bootstrap_toplevel_consts_7_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLock.has_deadlock", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[127]; + } +importlib__bootstrap_toplevel_consts_7_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 126, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0d\x14\xd7\x0d\x1e\xd2\x0d\x1e\xd1\x0d\x20\xd4\x0d\x20\x88\x02\xd8\x0e\x12\x8c\x6a\x88\x03\xdd\x0f\x12\x89\x75\x8c\x75\x88\x04\xf0\x02\x0e\x09\x1a\xdd\x13\x1f\xd7\x13\x23\xd2\x13\x23\xa0\x43\xd1\x13\x28\xd4\x13\x28\x88\x44\xd8\x0f\x13\x88\x7c\xd8\x17\x1c\x90\x75\xd8\x12\x16\x94\x2a\x88\x43\xd8\x0f\x12\x90\x62\x8a\x79\x88\x79\xd8\x17\x1b\x90\x74\xd8\x0f\x12\x90\x64\x88\x7b\x88\x7b\xf0\x0c\x00\x18\x1d\x90\x75\xd8\x0c\x10\x8f\x48\x8a\x48\x90\x53\x89\x4d\x8c\x4d\x88\x4d\xf0\x1d\x0e\x09\x1a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_me = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "me", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_tid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "tid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_seen = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "seen", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_me._ascii.ob_base, + & const_str_tid._ascii.ob_base, + & const_str_seen._ascii.ob_base, + & const_str_lock._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[6]; + } +importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 5, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(242) +importlib__bootstrap_toplevel_consts_7_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 121, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_7_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 79, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_has_deadlock._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_3_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x09\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x80\x02\x64\x02\x53\x00\x7c\x04\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x7c\x02\x7c\x03\x76\x00\x72\x02\x64\x02\x53\x00\x7c\x03\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x49", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[186]; + } +importlib__bootstrap_toplevel_consts_7_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 185, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x41\x63\x71\x75\x69\x72\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6c\x6f\x63\x6b\x2e\x20\x20\x49\x66\x20\x61\x20\x70\x6f\x74\x65\x6e\x74\x69\x61\x6c\x20\x64\x65\x61\x64\x6c\x6f\x63\x6b\x20\x69\x73\x20\x64\x65\x74\x65\x63\x74\x65\x64\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x20\x5f\x44\x65\x61\x64\x6c\x6f\x63\x6b\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x20\x6c\x6f\x63\x6b\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x61\x63\x71\x75\x69\x72\x65\x64\x20\x61\x6e\x64\x20\x54\x72\x75\x65\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +importlib__bootstrap_toplevel_consts_7_consts_4_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "deadlock detected by %r", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_7_consts_4_consts_0._ascii.ob_base, + Py_True, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + & importlib__bootstrap_toplevel_consts_7_consts_4_consts_5._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_acquire = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "acquire", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_release = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "release", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str__thread._ascii.ob_base, + & const_str_get_ident._ascii.ob_base, + & const_str__blocking_on._ascii.ob_base, + & const_str_lock._ascii.ob_base, + & const_str_count._ascii.ob_base, + & const_str_owner._ascii.ob_base, + & const_str_has_deadlock._ascii.ob_base, + & const_str__DeadlockError._ascii.ob_base, + & const_str_wakeup._ascii.ob_base, + & const_str_acquire._ascii.ob_base, + & const_str_waiters._ascii.ob_base, + & const_str_release._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +importlib__bootstrap_toplevel_consts_7_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLock.acquire", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[382]; + } +importlib__bootstrap_toplevel_consts_7_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 381, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0c\x00\x0f\x16\xd7\x0e\x1f\xd2\x0e\x1f\xd1\x0e\x21\xd4\x0e\x21\x88\x03\xd8\x1c\x20\x8d\x0c\x90\x53\xd1\x08\x19\xf0\x02\x0f\x09\x22\xf0\x02\x0c\x0d\x26\xd8\x15\x19\x94\x59\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xd8\x17\x1b\x94\x7a\xa0\x51\x92\x7f\x90\x7f\xa8\x24\xac\x2a\xb8\x03\xd2\x2a\x3b\xd0\x2a\x3b\xd8\x25\x28\x98\x04\x9c\x0a\xd8\x18\x1c\x98\x0a\x9c\x0a\xa0\x61\x99\x0f\x98\x0a\x9c\x0a\xd8\x1f\x23\xf0\x09\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf1\x00\x08\x11\x2a\xf4\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf5\x1a\x00\x11\x1d\x98\x53\xd0\x10\x21\xd0\x10\x21\xd0\x10\x21\xf0\x11\x00\x18\x1c\xd7\x17\x28\xd2\x17\x28\xd1\x17\x2a\xd4\x17\x2a\xf0\x00\x01\x15\x4f\x01\xdd\x1e\x2c\xd0\x2d\x46\xc8\x14\xd1\x2d\x4d\xd1\x1e\x4e\xd4\x1e\x4e\xd0\x18\x4e\xd8\x17\x1b\x94\x7b\xd7\x17\x2a\xd2\x17\x2a\xa8\x35\xd1\x17\x31\xd4\x17\x31\xf0\x00\x01\x15\x2a\xd8\x18\x1c\x98\x0c\x9c\x0c\xa8\x01\xd1\x18\x29\x98\x0c\x9c\x0c\xf0\x11\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf1\x00\x08\x11\x2a\xf4\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf8\xf8\xf8\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x14\x00\x11\x15\x94\x0b\xd7\x10\x23\xd2\x10\x23\xd1\x10\x25\xd4\x10\x25\xd0\x10\x25\xd8\x10\x14\x94\x0b\xd7\x10\x23\xd2\x10\x23\xd1\x10\x25\xd4\x10\x25\xd0\x10\x25\xf0\x19\x0c\x0d\x26\xf8\xf5\x1c\x00\x11\x1d\x98\x53\xd0\x10\x21\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[60]; + } +importlib__bootstrap_toplevel_consts_7_consts_4_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 59, + }, + .ob_shash = -1, + .ob_sval = "\xa5\x08\x44\x0b\x00\xad\x2f\x43\x0d\x03\xc1\x1c\x0b\x44\x0b\x00\xc1\x31\x41\x10\x43\x0d\x03\xc3\x01\x0c\x44\x0b\x00\xc3\x0d\x04\x43\x11\x07\xc3\x11\x03\x44\x0b\x00\xc3\x14\x01\x43\x11\x07\xc3\x15\x36\x44\x0b\x00\xc4\x0b\x0a\x44\x15\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_tid._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(560) +importlib__bootstrap_toplevel_consts_7_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 280, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_4_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_7_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_7_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 100, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_acquire._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_4_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x09\x00\x09\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x73\x0b\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x2d\x7c\x01\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x78\x01\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x0d\x00\x00\x63\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x64\x04\x64\x04\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x64\x01\x53\x00\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x12\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x7c\x00\x78\x01\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x0d\x00\x00\x63\x02\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x64\x04\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xe5\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +importlib__bootstrap_toplevel_consts_7_consts_5_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cannot release un-acquired lock", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_toplevel_consts_7_consts_5_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_RuntimeError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "RuntimeError", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str__thread._ascii.ob_base, + & const_str_get_ident._ascii.ob_base, + & const_str_lock._ascii.ob_base, + & const_str_owner._ascii.ob_base, + & const_str_RuntimeError._ascii.ob_base, + & const_str_count._ascii.ob_base, + & const_str_waiters._ascii.ob_base, + & const_str_wakeup._ascii.ob_base, + & const_str_release._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +importlib__bootstrap_toplevel_consts_7_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLock.release", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[250]; + } +importlib__bootstrap_toplevel_consts_7_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 249, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0e\x15\xd7\x0e\x1f\xd2\x0e\x1f\xd1\x0e\x21\xd4\x0e\x21\x88\x03\xd8\x0d\x11\x8c\x59\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xd8\x0f\x13\x8c\x7a\x98\x53\xd2\x0f\x20\xd0\x0f\x20\xdd\x16\x22\xd0\x23\x44\xd1\x16\x45\xd4\x16\x45\xd0\x10\x45\xd8\x13\x17\x94\x3a\xa0\x01\x92\x3e\x90\x3e\x90\x3e\x90\x3e\xd8\x0c\x10\x88\x4a\x8c\x4a\x98\x21\x89\x4f\x88\x4a\x8c\x4a\xd8\x0f\x13\x8c\x7a\x98\x51\x8a\x7f\x88\x7f\xd8\x1d\x21\x90\x04\x94\x0a\xd8\x13\x17\x94\x3c\xf0\x00\x02\x11\x2a\xd8\x14\x18\x90\x4c\x94\x4c\xa0\x41\xd1\x14\x25\x90\x4c\x94\x4c\xd8\x14\x18\x94\x4b\xd7\x14\x27\xd2\x14\x27\xd1\x14\x29\xd4\x14\x29\xd0\x14\x29\xf0\x13\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf1\x00\x09\x09\x2a\xf4\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf8\xf8\xf8\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +importlib__bootstrap_toplevel_consts_7_consts_5_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xa1\x41\x3a\x42\x28\x03\xc2\x28\x04\x42\x2c\x07\xc2\x2f\x01\x42\x2c\x07", +}; +static + struct _PyCode_DEF(362) +importlib__bootstrap_toplevel_consts_7_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 181, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_5_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_7_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_7_consts_5_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 125, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_release._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_5_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x04\x00\x00\x00\x00\x73\x02\x4a\x00\x82\x01\x7c\x00\x78\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x17\x00\x00\x63\x02\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x37\x64\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x29\x7c\x00\x78\x01\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x17\x00\x00\x63\x02\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +importlib__bootstrap_toplevel_consts_7_consts_6_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLock({!r}) at {}", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_toplevel_consts_7_consts_6_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_format = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "format", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_id = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "id", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_format._ascii.ob_base, + &_Py_ID(name), + & const_str_id._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +importlib__bootstrap_toplevel_consts_7_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLock.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[33]; + } +importlib__bootstrap_toplevel_consts_7_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 32, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x28\xd7\x0f\x2f\xd2\x0f\x2f\xb0\x04\xb4\x09\xbd\x32\xb8\x64\xb9\x38\xbc\x38\xd1\x0f\x44\xd4\x0f\x44\xd0\x08\x44", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(82) +importlib__bootstrap_toplevel_consts_7_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 41, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_6_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_7_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 138, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_6_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str__ModuleLock._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_7_consts_1._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_7_consts_2.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_7_consts_3.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_7_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_7_consts_5.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_7_consts_6.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib__bootstrap_toplevel_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + & const_str_has_deadlock._ascii.ob_base, + & const_str_acquire._ascii.ob_base, + & const_str_release._ascii.ob_base, + &_Py_ID(__repr__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[111]; + } +importlib__bootstrap_toplevel_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 110, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x03\x05\x08\xf0\x00\x03\x05\x08\xf0\x0a\x06\x05\x19\xf0\x00\x06\x05\x19\xf0\x00\x06\x05\x19\xf0\x10\x13\x05\x1a\xf0\x00\x13\x05\x1a\xf0\x00\x13\x05\x1a\xf0\x2a\x17\x05\x22\xf0\x00\x17\x05\x22\xf0\x00\x17\x05\x22\xf0\x32\x0b\x05\x2a\xf0\x00\x0b\x05\x2a\xf0\x00\x0b\x05\x2a\xf0\x1a\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01", +}; +static + struct _PyCode_DEF(48) +importlib__bootstrap_toplevel_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 65, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__ModuleLock._ascii.ob_base, + .co_qualname = & const_str__ModuleLock._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__DummyModuleLock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_DummyModuleLock", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[87]; + } +importlib__bootstrap_toplevel_consts_9_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 86, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x73\x69\x6d\x70\x6c\x65\x20\x5f\x4d\x6f\x64\x75\x6c\x65\x4c\x6f\x63\x6b\x20\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x74\x20\x66\x6f\x72\x20\x50\x79\x74\x68\x6f\x6e\x20\x62\x75\x69\x6c\x64\x73\x20\x77\x69\x74\x68\x6f\x75\x74\x0a\x20\x20\x20\x20\x6d\x75\x6c\x74\x69\x2d\x74\x68\x72\x65\x61\x64\x69\x6e\x67\x20\x73\x75\x70\x70\x6f\x72\x74\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(name), + & const_str_count._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +importlib__bootstrap_toplevel_consts_9_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_DummyModuleLock.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +importlib__bootstrap_toplevel_consts_9_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x14\x18\x88\x04\x8c\x09\xd8\x15\x16\x88\x04\x8c\x0a\x88\x0a\x88\x0a", +}; +static + struct _PyCode_DEF(34) +importlib__bootstrap_toplevel_consts_9_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_9_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 146, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_2_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_True, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_count._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +importlib__bootstrap_toplevel_consts_9_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_DummyModuleLock.acquire", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +importlib__bootstrap_toplevel_consts_9_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x88\x0a\x8c\x0a\x90\x61\x89\x0f\x88\x0a\x8c\x0a\xd8\x0f\x13\x88\x74", +}; +static + struct _PyCode_DEF(38) +importlib__bootstrap_toplevel_consts_9_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_9_consts_3_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_9_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 150, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_acquire._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_3_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x78\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x0d\x00\x00\x63\x02\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & importlib__bootstrap_toplevel_consts_7_consts_5_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_count._ascii.ob_base, + & const_str_RuntimeError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +importlib__bootstrap_toplevel_consts_9_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_DummyModuleLock.release", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[48]; + } +importlib__bootstrap_toplevel_consts_9_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 47, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0f\x8c\x3a\x98\x11\x8a\x3f\x88\x3f\xdd\x12\x1e\xd0\x1f\x40\xd1\x12\x41\xd4\x12\x41\xd0\x0c\x41\xd8\x08\x0c\x88\x0a\x8c\x0a\x90\x61\x89\x0f\x88\x0a\x8c\x0a\x88\x0a\x88\x0a", +}; +static + struct _PyCode_DEF(90) +importlib__bootstrap_toplevel_consts_9_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 45, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_9_consts_4_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_9_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 154, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_release._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_4_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x0f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x78\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x17\x00\x00\x63\x02\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +importlib__bootstrap_toplevel_consts_9_consts_5_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_DummyModuleLock({!r}) at {}", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_toplevel_consts_9_consts_5_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +importlib__bootstrap_toplevel_consts_9_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_DummyModuleLock.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[33]; + } +importlib__bootstrap_toplevel_consts_9_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 32, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x2d\xd7\x0f\x34\xd2\x0f\x34\xb0\x54\xb4\x59\xc5\x02\xc0\x34\xc1\x08\xc4\x08\xd1\x0f\x49\xd4\x0f\x49\xd0\x08\x49", +}; +static + struct _PyCode_DEF(82) +importlib__bootstrap_toplevel_consts_9_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 41, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_9_consts_5_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_7_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 159, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_5_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__DummyModuleLock._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_9_consts_1._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_9_consts_2.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_9_consts_3.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_9_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_9_consts_5.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + & const_str_acquire._ascii.ob_base, + & const_str_release._ascii.ob_base, + &_Py_ID(__repr__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[96]; + } +importlib__bootstrap_toplevel_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 95, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x06\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x08\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x08\x03\x05\x18\xf0\x00\x03\x05\x18\xf0\x00\x03\x05\x18\xf0\x0a\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01", +}; +static + struct _PyCode_DEF(42) +importlib__bootstrap_toplevel_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_9_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 142, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__DummyModuleLock._ascii.ob_base, + .co_qualname = & const_str__DummyModuleLock._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str__ModuleLockManager = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLockManager", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__lock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_lock", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_11_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__name._ascii.ob_base, + & const_str__lock._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +importlib__bootstrap_toplevel_consts_11_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLockManager.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +importlib__bootstrap_toplevel_consts_11_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x15\x19\x88\x04\x8c\x0a\xd8\x15\x19\x88\x04\x8c\x0a\x88\x0a\x88\x0a", +}; +static + struct _PyCode_DEF(34) +importlib__bootstrap_toplevel_consts_11_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_11_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 165, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & importlib__bootstrap_toplevel_consts_11_consts_1_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_11_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__get_module_lock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_module_lock", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_11_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__get_module_lock._ascii.ob_base, + & const_str__name._ascii.ob_base, + & const_str__lock._ascii.ob_base, + & const_str_acquire._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +importlib__bootstrap_toplevel_consts_11_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLockManager.__enter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[46]; + } +importlib__bootstrap_toplevel_consts_11_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 45, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x15\x25\xa0\x64\xa4\x6a\xd1\x15\x31\xd4\x15\x31\x88\x04\x8c\x0a\xd8\x08\x0c\x8c\x0a\xd7\x08\x1a\xd2\x08\x1a\xd1\x08\x1c\xd4\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c", +}; +static + struct _PyCode_DEF(106) +importlib__bootstrap_toplevel_consts_11_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 53, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_11_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 169, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & importlib__bootstrap_toplevel_consts_11_consts_2_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_11_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_11_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__lock._ascii.ob_base, + & const_str_release._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +importlib__bootstrap_toplevel_consts_11_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModuleLockManager.__exit__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[29]; + } +importlib__bootstrap_toplevel_consts_11_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 28, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0a\xd7\x08\x1a\xd2\x08\x1a\xd1\x08\x1c\xd4\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_args = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "args", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_kwargs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "kwargs", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_11_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_kwargs._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(56) +importlib__bootstrap_toplevel_consts_11_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_11_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 15, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 173, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_11_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & importlib__bootstrap_toplevel_consts_11_consts_3_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_11_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__ModuleLockManager._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_11_consts_1.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_11_consts_2.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_11_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +importlib__bootstrap_toplevel_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__init__), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[66]; + } +importlib__bootstrap_toplevel_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 65, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x08\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x08\x01\x05\x1d\xf0\x00\x01\x05\x1d\xf0\x00\x01\x05\x1d\xf0\x00\x01\x05\x1d\xf0\x00\x01\x05\x1d", +}; +static + struct _PyCode_DEF(32) +importlib__bootstrap_toplevel_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_11_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 163, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__ModuleLockManager._ascii.ob_base, + .co_qualname = & const_str__ModuleLockManager._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[140]; + } +importlib__bootstrap_toplevel_consts_13_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 139, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x47\x65\x74\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6c\x6f\x63\x6b\x20\x66\x6f\x72\x20\x61\x20\x67\x69\x76\x65\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x41\x63\x71\x75\x69\x72\x65\x2f\x72\x65\x6c\x65\x61\x73\x65\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x6c\x79\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x20\x69\x6d\x70\x6f\x72\x74\x20\x6c\x6f\x63\x6b\x20\x74\x6f\x20\x70\x72\x6f\x74\x65\x63\x74\x0a\x20\x20\x20\x20\x5f\x6d\x6f\x64\x75\x6c\x65\x5f\x6c\x6f\x63\x6b\x73\x2e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str__imp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_imp", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_acquire_lock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "acquire_lock", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__module_locks = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_module_locks", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_release_lock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "release_lock", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_13_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__imp._ascii.ob_base, + & const_str_acquire_lock._ascii.ob_base, + & const_str__module_locks._ascii.ob_base, + &_Py_ID(get), + & const_str_release_lock._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_cb = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cb", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +importlib__bootstrap_toplevel_consts_13_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_module_lock..cb", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[109]; + } +importlib__bootstrap_toplevel_consts_13_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 108, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x10\x14\xd7\x10\x21\xd2\x10\x21\xd1\x10\x23\xd4\x10\x23\xd0\x10\x23\xf0\x02\x07\x11\x28\xf5\x08\x00\x18\x25\xd7\x17\x28\xd2\x17\x28\xa8\x14\xd1\x17\x2e\xd4\x17\x2e\xb0\x23\xd0\x17\x35\xd0\x17\x35\xdd\x1c\x29\xa8\x24\xd0\x1c\x2f\xe5\x14\x18\xd7\x14\x25\xd2\x14\x25\xd1\x14\x27\xd4\x14\x27\xd0\x14\x27\xd0\x14\x27\xd0\x14\x27\xf8\x95\x44\xd7\x14\x25\xd2\x14\x25\xd1\x14\x27\xd4\x14\x27\xd0\x14\x27\xd0\x14\x27\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[12]; + } +importlib__bootstrap_toplevel_consts_13_consts_2_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 11, + }, + .ob_shash = -1, + .ob_sval = "\x9b\x24\x41\x1a\x00\xc1\x1a\x1b\x41\x35\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_ref = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ref", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_13_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_ref._ascii.ob_base, + &_Py_ID(name), + }, + }, +}; +static + struct _PyCode_DEF(240) +importlib__bootstrap_toplevel_consts_13_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 120, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_13_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_13_consts_2_exceptiontable.ob_base.ob_base, + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 198, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_13_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_cb._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_13_consts_2_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_13_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x75\x00\x72\x08\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_13_consts_0._ascii.ob_base, + Py_None, + & importlib__bootstrap_toplevel_consts_13_consts_2.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_KeyError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "KeyError", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__weakref = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_weakref", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +importlib__bootstrap_toplevel_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & const_str__imp._ascii.ob_base, + & const_str_acquire_lock._ascii.ob_base, + & const_str__module_locks._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + & const_str__thread._ascii.ob_base, + & const_str__DummyModuleLock._ascii.ob_base, + & const_str__ModuleLock._ascii.ob_base, + & const_str__weakref._ascii.ob_base, + & const_str_ref._ascii.ob_base, + & const_str_release_lock._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[226]; + } +importlib__bootstrap_toplevel_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 225, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0c\x00\x05\x09\xd7\x04\x15\xd2\x04\x15\xd1\x04\x17\xd4\x04\x17\xd0\x04\x17\xf0\x02\x19\x05\x1c\xf0\x02\x03\x09\x18\xdd\x13\x20\xa0\x14\xd4\x13\x26\xd1\x13\x28\xd4\x13\x28\x88\x44\x88\x44\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xd8\x13\x17\x88\x44\x88\x44\x88\x44\xf0\x03\x01\x09\x18\xf8\xf8\xf8\xf0\x06\x00\x0c\x10\x88\x3c\xdd\x0f\x16\x88\x7f\xdd\x17\x27\xa8\x04\xd1\x17\x2d\xd4\x17\x2d\x90\x04\x90\x04\xe5\x17\x22\xa0\x34\xd1\x17\x28\xd4\x17\x28\x90\x04\xe0\x1d\x21\xf0\x00\x09\x0d\x28\xf0\x00\x09\x0d\x28\xf0\x00\x09\x0d\x28\xf0\x00\x09\x0d\x28\xf5\x16\x00\x23\x2b\xa7\x2c\xa2\x2c\xa8\x74\xb0\x52\xd1\x22\x38\xd4\x22\x38\x8d\x4d\x98\x24\xd1\x0c\x1f\xe5\x08\x0c\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xf8\x8d\x04\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xf8\xf8\xf8\xe0\x0b\x0f\x80\x4b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[38]; + } +importlib__bootstrap_toplevel_consts_13_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 37, + }, + .ob_shash = -1, + .ob_sval = "\x9c\x14\x31\x00\xb0\x01\x42\x2d\x00\xb1\x0c\x41\x00\x03\xbd\x02\x42\x2d\x00\xbf\x01\x41\x00\x03\xc1\x00\x41\x13\x42\x2d\x00\xc2\x2d\x1b\x43\x08\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_13_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(name), + & const_str_lock._ascii.ob_base, + & const_str_cb._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(410) +importlib__bootstrap_toplevel_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 205, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_13_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_13_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 179, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_13_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__get_module_lock._ascii.ob_base, + .co_qualname = & const_str__get_module_lock._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x12\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x01\x7d\x01\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x80\x4e\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x10\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x0f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x66\x01\x64\x02\x84\x01\x7d\x02\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x3c\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1e\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[190]; + } +importlib__bootstrap_toplevel_consts_14_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 189, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x63\x71\x75\x69\x72\x65\x73\x20\x74\x68\x65\x6e\x20\x72\x65\x6c\x65\x61\x73\x65\x73\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6c\x6f\x63\x6b\x20\x66\x6f\x72\x20\x61\x20\x67\x69\x76\x65\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x65\x6e\x73\x75\x72\x65\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x6c\x79\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64\x2c\x20\x69\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x65\x76\x65\x6e\x74\x20\x69\x74\x20\x69\x73\x20\x62\x65\x69\x6e\x67\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x62\x79\x20\x61\x6e\x6f\x74\x68\x65\x72\x20\x74\x68\x72\x65\x61\x64\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_14_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__get_module_lock._ascii.ob_base, + & const_str_acquire._ascii.ob_base, + & const_str_release._ascii.ob_base, + & const_str__DeadlockError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[93]; + } +importlib__bootstrap_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 92, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0c\x00\x0c\x1c\x98\x44\xd1\x0b\x21\xd4\x0b\x21\x80\x44\xf0\x02\x07\x05\x17\xd8\x08\x0c\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\xf0\x0c\x00\x09\x0d\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\x88\x0e\x88\x0e\xf8\xf5\x0b\x00\x0c\x1a\xf0\x00\x03\x05\x0d\xf0\x00\x03\x05\x0d\xf0\x00\x03\x05\x0d\xf0\x06\x00\x09\x0d\x88\x04\x88\x04\xf0\x07\x03\x05\x0d\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +importlib__bootstrap_toplevel_consts_14_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x91\x14\x3b\x00\xbb\x0a\x41\x09\x03\xc1\x08\x01\x41\x09\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(name), + & const_str_lock._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(152) +importlib__bootstrap_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 76, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_14_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_14_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 216, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(_lock_unlock_module), + .co_qualname = &_Py_ID(_lock_unlock_module), + .co_linetable = & importlib__bootstrap_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[303]; + } +importlib__bootstrap_toplevel_consts_15_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 302, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x72\x65\x6d\x6f\x76\x65\x5f\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x5f\x66\x72\x61\x6d\x65\x73\x20\x69\x6e\x20\x69\x6d\x70\x6f\x72\x74\x2e\x63\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x72\x65\x6d\x6f\x76\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x0a\x20\x20\x20\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x20\x66\x72\x61\x6d\x65\x73\x20\x74\x68\x61\x74\x20\x65\x6e\x64\x20\x77\x69\x74\x68\x20\x61\x20\x63\x61\x6c\x6c\x20\x74\x6f\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x0a\x0a\x20\x20\x20\x20\x55\x73\x65\x20\x69\x74\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x61\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x63\x61\x6c\x6c\x20\x69\x6e\x20\x70\x6c\x61\x63\x65\x73\x20\x77\x68\x65\x72\x65\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x0a\x20\x20\x20\x20\x66\x72\x61\x6d\x65\x73\x20\x69\x6e\x74\x72\x6f\x64\x75\x63\x65\x73\x20\x75\x6e\x77\x61\x6e\x74\x65\x64\x20\x6e\x6f\x69\x73\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x74\x72\x61\x63\x65\x62\x61\x63\x6b\x20\x28\x65\x2e\x67\x2e\x20\x77\x68\x65\x6e\x20\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x0a\x20\x20\x20\x20\x6d\x6f\x64\x75\x6c\x65\x20\x63\x6f\x64\x65\x29\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_15_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +const_str__call_with_frames_removed = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_call_with_frames_removed", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +importlib__bootstrap_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x10\x00\x0c\x0d\x88\x31\x88\x64\xd0\x0b\x1b\x90\x64\xd0\x0b\x1b\xd0\x0b\x1b\xd0\x04\x1b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_f = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "f", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_kwds = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "kwds", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_15_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_f._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_kwds._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(18) +importlib__bootstrap_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 9, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 15, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 233, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__call_with_frames_removed._ascii.ob_base, + .co_qualname = & const_str__call_with_frames_removed._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x02\x00\x7c\x00\x7c\x01\x69\x00\x7c\x02\xa4\x01\x8e\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_verbosity = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "verbosity", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_17 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_verbosity._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[62]; + } +importlib__bootstrap_toplevel_consts_18_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 61, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Print the message to stderr if -v/PYTHONVERBOSE is turned on.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +importlib__bootstrap_toplevel_consts_18_consts_1_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "#", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +importlib__bootstrap_toplevel_consts_18_consts_1_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "import ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_18_consts_1 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_18_consts_1_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_18_consts_1_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +importlib__bootstrap_toplevel_consts_18_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "# ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_file = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "file", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_18_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_file._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_18_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_18_consts_1._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_18_consts_2._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_flags = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "flags", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_verbose = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "verbose", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_startswith = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "startswith", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_print = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "print", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_verbose._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str_print._ascii.ob_base, + & const_str_format._ascii.ob_base, + &_Py_ID(stderr), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__verbose_message = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_verbose_message", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[95]; + } +importlib__bootstrap_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 94, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x07\x0a\x84\x79\xd4\x07\x18\x98\x49\xd2\x07\x25\xd0\x07\x25\xd8\x0f\x16\xd7\x0f\x21\xd2\x0f\x21\xd0\x22\x32\xd1\x0f\x33\xd4\x0f\x33\xf0\x00\x01\x09\x25\xd8\x16\x1a\x98\x57\x91\x6e\x88\x47\xdd\x08\x0d\x88\x6e\x88\x67\x8c\x6e\x98\x64\xd0\x0e\x23\xad\x23\xac\x2a\xd0\x08\x35\xd1\x08\x35\xd4\x08\x35\xd0\x08\x35\xd0\x08\x35\xd0\x08\x35\xf0\x07\x00\x08\x26\xd0\x07\x25", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_message = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "message", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_18_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_message._ascii.ob_base, + & const_str_verbosity._ascii.ob_base, + & const_str_args._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(174) +importlib__bootstrap_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 87, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 1, + .co_stacksize = 5, + .co_firstlineno = 244, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__verbose_message._ascii.ob_base, + .co_qualname = & const_str__verbose_message._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x05\x00\x00\x00\x00\x72\x3f\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x05\x64\x02\x7c\x00\x7a\x00\x00\x00\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x8e\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x04\x53\x00\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[50]; + } +importlib__bootstrap_toplevel_consts_19_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 49, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Decorator to verify the named module is built-in.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +importlib__bootstrap_toplevel_consts_19_consts_1_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "{!r} is not a built-in module", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_19_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_toplevel_consts_19_consts_1_consts_1._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str_builtin_module_names = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "builtin_module_names", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_ImportError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ImportError", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_19_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_builtin_module_names._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_format._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +const_str__requires_builtin_wrapper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_requires_builtin_wrapper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[53]; + } +importlib__bootstrap_toplevel_consts_19_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 52, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_requires_builtin.._requires_builtin_wrapper", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[79]; + } +importlib__bootstrap_toplevel_consts_19_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 78, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd8\x0b\x13\x9d\x33\xd4\x1b\x33\xd0\x0b\x33\xd0\x0b\x33\xdd\x12\x1d\xd0\x1e\x3d\xd7\x1e\x44\xd2\x1e\x44\xc0\x58\xd1\x1e\x4e\xd4\x1e\x4e\xd8\x23\x2b\xf0\x03\x01\x13\x2d\xf1\x00\x01\x13\x2d\xf4\x00\x01\x13\x2d\xf0\x00\x01\x0d\x2d\xe0\x0f\x12\x88\x73\x90\x34\x98\x18\xd1\x0f\x22\xd4\x0f\x22\xd0\x08\x22", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_fullname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fullname", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_fxn = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fxn", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_19_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + & const_str_fxn._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[4]; + } +importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 3, + }, + .ob_shash = -1, + .ob_sval = "\x20\x20\x80", +}; +static + struct _PyCode_DEF(128) +importlib__bootstrap_toplevel_consts_19_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 64, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_19_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_19_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 254, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_19_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__requires_builtin_wrapper._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_19_consts_1_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_19_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x02\x00\x89\x02\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_19_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_19_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_19_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_19_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__wrap._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__requires_builtin = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_requires_builtin", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[54]; + } +importlib__bootstrap_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 53, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf0\x04\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf5\x0a\x00\x05\x0a\xd0\x0a\x23\xa0\x53\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xd8\x0b\x24\xd0\x04\x24", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_fxn._ascii.ob_base, + & const_str__requires_builtin_wrapper._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +importlib__bootstrap_toplevel_consts_19_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "` ", +}; +static + struct _PyCode_DEF(50) +importlib__bootstrap_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_19_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 252, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__requires_builtin._ascii.ob_base, + .co_qualname = & const_str__requires_builtin._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x89\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[48]; + } +importlib__bootstrap_toplevel_consts_20_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 47, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Decorator to verify the named module is frozen.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +importlib__bootstrap_toplevel_consts_20_consts_1_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "{!r} is not a frozen module", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_20_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_toplevel_consts_20_consts_1_consts_1._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_is_frozen = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "is_frozen", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_20_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__imp._ascii.ob_base, + & const_str_is_frozen._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_format._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str__requires_frozen_wrapper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_requires_frozen_wrapper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[51]; + } +importlib__bootstrap_toplevel_consts_20_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 50, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_requires_frozen.._requires_frozen_wrapper", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[85]; + } +importlib__bootstrap_toplevel_consts_20_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 84, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xdd\x0f\x13\x8f\x7e\x8a\x7e\x98\x68\xd1\x0f\x27\xd4\x0f\x27\xf0\x00\x02\x09\x2d\xdd\x12\x1d\xd0\x1e\x3b\xd7\x1e\x42\xd2\x1e\x42\xc0\x38\xd1\x1e\x4c\xd4\x1e\x4c\xd8\x23\x2b\xf0\x03\x01\x13\x2d\xf1\x00\x01\x13\x2d\xf4\x00\x01\x13\x2d\xf0\x00\x01\x0d\x2d\xe0\x0f\x12\x88\x73\x90\x34\x98\x18\xd1\x0f\x22\xd4\x0f\x22\xd0\x08\x22", +}; +static + struct _PyCode_DEF(152) +importlib__bootstrap_toplevel_consts_20_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 76, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_20_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_20_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 265, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_19_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__requires_frozen_wrapper._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_20_consts_1_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_20_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x02\x00\x89\x02\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_20_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_20_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_20_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__requires_frozen = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_requires_frozen", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[54]; + } +importlib__bootstrap_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 53, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf0\x04\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf5\x0a\x00\x05\x0a\xd0\x0a\x22\xa0\x43\xd1\x04\x28\xd4\x04\x28\xd0\x04\x28\xd8\x0b\x23\xd0\x04\x23", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_20_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_fxn._ascii.ob_base, + & const_str__requires_frozen_wrapper._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(50) +importlib__bootstrap_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_20_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 263, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__requires_frozen._ascii.ob_base, + .co_qualname = & const_str__requires_frozen._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x89\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[131]; + } +importlib__bootstrap_toplevel_consts_21_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 130, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x4c\x6f\x61\x64\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x6e\x74\x6f\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x69\x74\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x20\x20\x55\x73\x65\x20\x6c\x6f\x61\x64\x65\x72\x2e\x65\x78\x65\x63\x5f\x6d\x6f\x64\x75\x6c\x65\x28\x29\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[104]; + } +importlib__bootstrap_toplevel_consts_21_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 103, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_21_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_21_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_21_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__warnings = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_warnings", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_warn = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "warn", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_DeprecationWarning = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "DeprecationWarning", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_spec_from_loader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spec_from_loader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__exec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_exec", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__load = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_load", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_21_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str__warnings._ascii.ob_base, + & const_str_warn._ascii.ob_base, + & const_str_DeprecationWarning._ascii.ob_base, + & const_str_spec_from_loader._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str__exec._ascii.ob_base, + & const_str__load._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__load_module_shim = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_load_module_shim", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[112]; + } +importlib__bootstrap_toplevel_consts_21_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 111, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0c\x01\x0c\x33\x80\x43\xe5\x04\x0d\x87\x4e\x82\x4e\x90\x33\xd5\x18\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xdd\x0b\x1b\x98\x48\xa0\x64\xd1\x0b\x2b\xd4\x0b\x2b\x80\x44\xd8\x07\x0f\x95\x33\x94\x3b\xd0\x07\x1e\xd0\x07\x1e\xdd\x11\x14\x94\x1b\x98\x58\xd4\x11\x26\x88\x06\xdd\x08\x0d\x88\x64\x90\x46\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xdd\x0f\x12\x8c\x7b\x98\x38\xd4\x0f\x24\xd0\x08\x24\xe5\x0f\x14\x90\x54\x89\x7b\x8c\x7b\xd0\x08\x1a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_spec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spec", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_21_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + &_Py_ID(msg), + & const_str_spec._ascii.ob_base, + & const_str_module._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(264) +importlib__bootstrap_toplevel_consts_21 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 132, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_21_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 275, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__load_module_shim._ascii.ob_base, + .co_qualname = & const_str__load_module_shim._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_21_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7d\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x34\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +importlib__bootstrap_toplevel_consts_22_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "The implementation of ModuleType.__repr__().", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_module_repr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module_repr", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +importlib__bootstrap_toplevel_consts_22_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "?", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +importlib__bootstrap_toplevel_consts_22_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +importlib__bootstrap_toplevel_consts_22_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +importlib__bootstrap_toplevel_consts_22_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib__bootstrap_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_22_consts_0._ascii.ob_base, + &_Py_ID(__loader__), + Py_None, + &_Py_ID(__spec__), + & const_str_module_repr._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_22_consts_5._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_22_consts_6._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_22_consts_7._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_22_consts_8._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str__module_repr_from_spec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_module_repr_from_spec", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_Exception = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Exception", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib__bootstrap_toplevel_consts_22_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(getattr), + & const_str__module_repr_from_spec._ascii.ob_base, + & const_str_hasattr._ascii.ob_base, + & const_str_module_repr._ascii.ob_base, + & const_str_Exception._ascii.ob_base, + &_Py_ID(__name__), + & const_str_AttributeError._ascii.ob_base, + &_Py_ID(__file__), + & const_str_format._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str__module_repr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_module_repr", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[309]; + } +importlib__bootstrap_toplevel_consts_22_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 308, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0d\x14\x90\x56\x98\x5c\xa8\x34\xd1\x0d\x30\xd4\x0d\x30\x80\x46\xdd\x0f\x16\x90\x76\x98\x7a\xa8\x34\xd1\x0f\x30\xd4\x0f\x30\xd0\x07\x30\x80\x74\xf0\x00\x06\x05\x11\xdd\x0f\x25\xa0\x64\xd1\x0f\x2b\xd4\x0f\x2b\xd0\x08\x2b\xdd\x09\x10\x90\x16\x98\x1d\xd1\x09\x27\xd4\x09\x27\xf0\x00\x04\x05\x11\xf0\x02\x03\x09\x11\xd8\x13\x19\xd7\x13\x25\xd2\x13\x25\xa0\x66\xd1\x13\x2d\xd4\x13\x2d\xd0\x0c\x2d\xf8\xdd\x0f\x18\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x03\x05\x13\xd8\x0f\x15\x8c\x7f\x88\x04\x88\x04\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x13\xf0\x00\x01\x05\x13\xf0\x00\x01\x05\x13\xd8\x0f\x12\x88\x04\x88\x04\x88\x04\xf0\x03\x01\x05\x13\xf8\xf8\xf8\xf0\x04\x08\x05\x40\x01\xd8\x13\x19\x94\x3f\x88\x08\xf0\x0e\x00\x10\x29\xd7\x0f\x2f\xd2\x0f\x2f\xb0\x04\xb0\x68\xd1\x0f\x3f\xd4\x0f\x3f\xd0\x08\x3f\xf8\xf5\x0d\x00\x0c\x1a\xf0\x00\x04\x05\x3f\xf0\x00\x04\x05\x3f\xf0\x00\x04\x05\x3f\xd8\x0b\x11\x88\x3e\xd8\x13\x22\xd7\x13\x29\xd2\x13\x29\xa8\x24\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xe0\x13\x29\xd7\x13\x30\xd2\x13\x30\xb0\x14\xb0\x76\xd1\x13\x3e\xd4\x13\x3e\xd0\x0c\x3e\xd0\x0c\x3e\xd0\x0c\x3e\xf0\x09\x04\x05\x3f\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[61]; + } +importlib__bootstrap_toplevel_consts_22_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 60, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x05\x14\x41\x1a\x00\xc1\x1a\x0a\x41\x27\x03\xc1\x26\x01\x41\x27\x03\xc1\x2b\x07\x41\x33\x00\xc1\x33\x0c\x42\x02\x03\xc2\x01\x01\x42\x02\x03\xc2\x06\x07\x42\x23\x00\xc2\x23\x21\x43\x1f\x03\xc3\x06\x16\x43\x1f\x03\xc3\x1e\x01\x43\x1f\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_loader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "loader", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_22_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_module._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_spec._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(filename), + }, + }, +}; +static + struct _PyCode_DEF(452) +importlib__bootstrap_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 226, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_22_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_22_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 294, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__module_repr._ascii.ob_base, + .co_qualname = & const_str__module_repr._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_22_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x03\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x7d\x02\x72\x0f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x26\x09\x00\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x12\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x05\x7d\x03\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x64\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x32\x01\x00\x7c\x01\x80\x17\x64\x07\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x64\x08\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_ModuleSpec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleSpec", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[1489]; + } +importlib__bootstrap_toplevel_consts_23_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1488, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x54\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x66\x6f\x72\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6c\x6f\x61\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x41\x20\x6d\x6f\x64\x75\x6c\x65\x27\x73\x20\x73\x70\x65\x63\x20\x69\x73\x20\x74\x68\x65\x20\x73\x6f\x75\x72\x63\x65\x20\x66\x6f\x72\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x20\x46\x6f\x72\x0a\x20\x20\x20\x20\x64\x61\x74\x61\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x6f\x75\x72\x63\x65\x2c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x73\x70\x65\x63\x27\x73\x0a\x20\x20\x20\x20\x6c\x6f\x61\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x60\x6e\x61\x6d\x65\x60\x20\x69\x73\x20\x74\x68\x65\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x6e\x61\x6d\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x20\x60\x6c\x6f\x61\x64\x65\x72\x60\x20\x69\x73\x20\x74\x68\x65\x20\x6c\x6f\x61\x64\x65\x72\x0a\x20\x20\x20\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x6c\x6f\x61\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x20\x60\x70\x61\x72\x65\x6e\x74\x60\x20\x69\x73\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x20\x6f\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x69\x6e\x2e\x20\x20\x54\x68\x65\x20\x70\x61\x72\x65\x6e\x74\x20\x69\x73\x20\x64\x65\x72\x69\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x60\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x60\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x61\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x6f\x72\x0a\x20\x20\x20\x20\x6e\x6f\x74\x2e\x20\x20\x4f\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x74\x68\x69\x73\x20\x69\x73\x20\x72\x65\x66\x6c\x65\x63\x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x60\x5f\x5f\x70\x61\x74\x68\x5f\x5f\x60\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x60\x6f\x72\x69\x67\x69\x6e\x60\x20\x69\x73\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x75\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x6c\x6f\x61\x64\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x68\x69\x63\x68\x20\x74\x6f\x0a\x20\x20\x20\x20\x6c\x6f\x61\x64\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x20\x69\x66\x20\x74\x68\x61\x74\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x69\x73\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e\x20\x20\x57\x68\x65\x6e\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x69\x73\x0a\x20\x20\x20\x20\x73\x65\x74\x2c\x20\x6f\x72\x69\x67\x69\x6e\x20\x77\x69\x6c\x6c\x20\x6d\x61\x74\x63\x68\x2e\x0a\x0a\x20\x20\x20\x20\x60\x68\x61\x73\x5f\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x60\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x68\x61\x74\x20\x61\x20\x73\x70\x65\x63\x27\x73\x20\x22\x6f\x72\x69\x67\x69\x6e\x22\x20\x72\x65\x66\x6c\x65\x63\x74\x73\x20\x61\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x69\x73\x20\x54\x72\x75\x65\x2c\x20\x60\x5f\x5f\x66\x69\x6c\x65\x5f\x5f\x60\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x73\x65\x74\x2e\x0a\x0a\x20\x20\x20\x20\x60\x63\x61\x63\x68\x65\x64\x60\x20\x69\x73\x20\x74\x68\x65\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x61\x63\x68\x65\x64\x20\x62\x79\x74\x65\x63\x6f\x64\x65\x20\x66\x69\x6c\x65\x2c\x20\x69\x66\x20\x61\x6e\x79\x2e\x20\x20\x49\x74\x0a\x20\x20\x20\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x60\x5f\x5f\x63\x61\x63\x68\x65\x64\x5f\x5f\x60\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x60\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x5f\x73\x65\x61\x72\x63\x68\x5f\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x73\x60\x20\x69\x73\x20\x74\x68\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x20\x6f\x66\x20\x70\x61\x74\x68\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x73\x65\x61\x72\x63\x68\x20\x77\x68\x65\x6e\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x20\x20\x49\x66\x20\x73\x65\x74\x2c\x20\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x0a\x20\x20\x20\x20\x54\x72\x75\x65\x2d\x2d\x61\x6e\x64\x20\x46\x61\x6c\x73\x65\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x2e\x0a\x0a\x20\x20\x20\x20\x50\x61\x63\x6b\x61\x67\x65\x73\x20\x61\x72\x65\x20\x73\x69\x6d\x70\x6c\x79\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x74\x68\x61\x74\x20\x28\x6d\x61\x79\x29\x20\x68\x61\x76\x65\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x20\x20\x49\x66\x20\x61\x20\x73\x70\x65\x63\x0a\x20\x20\x20\x20\x68\x61\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x4e\x6f\x6e\x65\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x20\x60\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x5f\x73\x65\x61\x72\x63\x68\x5f\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x73\x60\x2c\x20\x74\x68\x65\x20\x69\x6d\x70\x6f\x72\x74\x0a\x20\x20\x20\x20\x73\x79\x73\x74\x65\x6d\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x6c\x6f\x61\x64\x65\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x70\x65\x63\x20\x61\x73\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x4f\x6e\x6c\x79\x20\x66\x69\x6e\x64\x65\x72\x73\x20\x28\x73\x65\x65\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x2e\x61\x62\x63\x2e\x4d\x65\x74\x61\x50\x61\x74\x68\x46\x69\x6e\x64\x65\x72\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x2e\x61\x62\x63\x2e\x50\x61\x74\x68\x45\x6e\x74\x72\x79\x46\x69\x6e\x64\x65\x72\x29\x20\x73\x68\x6f\x75\x6c\x64\x20\x6d\x6f\x64\x69\x66\x79\x20\x4d\x6f\x64\x75\x6c\x65\x53\x70\x65\x63\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_origin = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "origin", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_loader_state = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "loader_state", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_is_package = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "is_package", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_origin._ascii.ob_base, + & const_str_loader_state._ascii.ob_base, + & const_str_is_package._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +const_str_submodule_search_locations = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "submodule_search_locations", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__set_fileattr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_set_fileattr", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__cached = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_cached", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(name), + & const_str_loader._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_loader_state._ascii.ob_base, + & const_str_submodule_search_locations._ascii.ob_base, + &_Py_ID(_uninitialized_submodules), + & const_str__set_fileattr._ascii.ob_base, + & const_str__cached._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +importlib__bootstrap_toplevel_consts_23_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleSpec.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[78]; + } +importlib__bootstrap_toplevel_consts_23_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 77, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x14\x18\x88\x04\x8c\x09\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x1c\x28\x88\x04\xd4\x08\x19\xd8\x30\x3a\xd0\x2a\x44\xa8\x22\xa8\x22\xc0\x04\x88\x04\xd4\x08\x27\xd8\x29\x2b\x88\x04\xd4\x08\x26\xf0\x06\x00\x1e\x23\x88\x04\xd4\x08\x1a\xd8\x17\x1b\x88\x04\x8c\x0c\x88\x0c\x88\x0c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(name), + & const_str_loader._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_loader_state._ascii.ob_base, + & const_str_is_package._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[7]; + } +importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 6, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(126) +importlib__bootstrap_toplevel_consts_23_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 63, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 3, + .co_stacksize = 2, + .co_firstlineno = 357, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_4_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x72\x02\x67\x00\x6e\x01\x64\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +importlib__bootstrap_toplevel_consts_23_consts_5_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "name={!r}", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +importlib__bootstrap_toplevel_consts_23_consts_5_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "loader={!r}", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +importlib__bootstrap_toplevel_consts_23_consts_5_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "origin={!r}", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +importlib__bootstrap_toplevel_consts_23_consts_5_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "submodule_search_locations={}", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +importlib__bootstrap_toplevel_consts_23_consts_5_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "{}({})", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_toplevel_consts_23_consts_5_consts_1._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_5_consts_2._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_5_consts_3._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_5_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_5_consts_5._ascii.ob_base, + &_Py_STR(comma_sep), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_format._ascii.ob_base, + &_Py_ID(name), + & const_str_loader._ascii.ob_base, + & const_str_origin._ascii.ob_base, + &_Py_ID(append), + & const_str_submodule_search_locations._ascii.ob_base, + &_Py_ID(__class__), + &_Py_ID(__name__), + &_Py_ID(join), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +importlib__bootstrap_toplevel_consts_23_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleSpec.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[178]; + } +importlib__bootstrap_toplevel_consts_23_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 177, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x10\x1b\xd7\x10\x22\xd2\x10\x22\xa0\x34\xa4\x39\xd1\x10\x2d\xd4\x10\x2d\xd8\x10\x1d\xd7\x10\x24\xd2\x10\x24\xa0\x54\xa4\x5b\xd1\x10\x31\xd4\x10\x31\xf0\x03\x01\x10\x33\x88\x04\xe0\x0b\x0f\x8c\x3b\xd0\x0b\x22\xd8\x0c\x10\x8f\x4b\x8a\x4b\x98\x0d\xd7\x18\x2c\xd2\x18\x2c\xa8\x54\xac\x5b\xd1\x18\x39\xd4\x18\x39\xd1\x0c\x3a\xd4\x0c\x3a\xd0\x0c\x3a\xd8\x0b\x0f\xd4\x0b\x2a\xd0\x0b\x36\xd8\x0c\x10\x8f\x4b\x8a\x4b\xd0\x18\x37\xdf\x19\x1f\x9a\x16\xa0\x04\xd4\x20\x3f\xd1\x19\x40\xd4\x19\x40\xf1\x03\x01\x0d\x42\x01\xf4\x00\x01\x0d\x42\x01\xf0\x00\x01\x0d\x42\x01\xe0\x0f\x17\x8f\x7f\x8a\x7f\x98\x74\x9c\x7e\xd4\x1f\x36\xb8\x04\xbf\x09\xba\x09\xc0\x24\xb9\x0f\xbc\x0f\xd1\x0f\x48\xd4\x0f\x48\xd0\x08\x48", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_args._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(416) +importlib__bootstrap_toplevel_consts_23_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 208, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_5_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 370, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_5_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x67\x02\x7d\x01\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x81\x2d\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x81\x2d\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x05\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_cached = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cached", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_has_location = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "has_location", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_NotImplemented = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "NotImplemented", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_submodule_search_locations._ascii.ob_base, + &_Py_ID(name), + & const_str_loader._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_cached._ascii.ob_base, + & const_str_has_location._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +importlib__bootstrap_toplevel_consts_23_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleSpec.__eq__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[166]; + } +importlib__bootstrap_toplevel_consts_23_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 165, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x13\xd4\x0f\x2e\x88\x04\xf0\x02\x08\x09\x22\xd8\x14\x18\x94\x49\xa0\x15\xa4\x1a\xd2\x14\x2b\xf0\x00\x05\x15\x3c\xd8\x14\x18\x94\x4b\xa0\x35\xa4\x3c\xd2\x14\x2f\xf0\x03\x05\x15\x3c\xe0\x14\x18\x94\x4b\xa0\x35\xa4\x3c\xd2\x14\x2f\xf0\x05\x05\x15\x3c\xf0\x06\x00\x15\x19\x98\x45\xd4\x1c\x3c\xd2\x14\x3c\xf0\x07\x05\x15\x3c\xf0\x08\x00\x15\x19\x94\x4b\xa0\x35\xa4\x3c\xd2\x14\x2f\xf0\x09\x05\x15\x3c\xf0\x0a\x00\x15\x19\xd4\x14\x25\xa8\x15\xd4\x29\x3b\xd2\x14\x3b\xf0\x0b\x05\x0d\x3d\xf8\xf5\x0c\x00\x10\x1e\xf0\x00\x01\x09\x22\xf0\x00\x01\x09\x22\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf0\x03\x01\x09\x22\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +importlib__bootstrap_toplevel_consts_23_consts_6_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\x89\x41\x1a\x41\x24\x00\xc1\x24\x11\x41\x38\x03\xc1\x37\x01\x41\x38\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_other = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "other", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_smsl = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "smsl", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_other._ascii.ob_base, + & const_str_smsl._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(246) +importlib__bootstrap_toplevel_consts_23_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 123, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_23_consts_6_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 380, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__eq__), + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_6_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x4a\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x3a\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x2a\x7c\x02\x7c\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x1f\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x0f\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0a\x01\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str__bootstrap_external = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_bootstrap_external", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str_NotImplementedError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "NotImplementedError", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str__get_cached = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_cached", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str__cached._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str__set_fileattr._ascii.ob_base, + & const_str__bootstrap_external._ascii.ob_base, + & const_str_NotImplementedError._ascii.ob_base, + & const_str__get_cached._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +importlib__bootstrap_toplevel_consts_23_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleSpec.cached", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[70]; + } +importlib__bootstrap_toplevel_consts_23_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 69, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0f\x8c\x3c\xd0\x0b\x1f\xd8\x0f\x13\x8c\x7b\xd0\x0f\x26\xa8\x34\xd4\x2b\x3d\xd0\x0f\x26\xdd\x13\x26\xd0\x13\x2e\xdd\x1a\x2d\xd0\x14\x2d\xdd\x1f\x32\xd7\x1f\x3e\xd2\x1f\x3e\xb8\x74\xbc\x7b\xd1\x1f\x4b\xd4\x1f\x4b\x90\x04\x94\x0c\xd8\x0f\x13\x8c\x7c\xd0\x08\x1b", +}; +static + struct _PyCode_DEF(158) +importlib__bootstrap_toplevel_consts_23_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 79, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 392, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_cached._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_7_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x40\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x81\x39\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x32\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__cached._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[14]; + } +importlib__bootstrap_toplevel_consts_23_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 13, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x17\x1d\x88\x04\x8c\x0c\x88\x0c\x88\x0c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_cached._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(20) +importlib__bootstrap_toplevel_consts_23_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 401, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_cached._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_7_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[33]; + } +importlib__bootstrap_toplevel_consts_23_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 32, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "The name of the module's parent.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_23_consts_9_consts_0._ascii.ob_base, + Py_None, + &_Py_STR(dot), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_rpartition = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "rpartition", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_submodule_search_locations._ascii.ob_base, + &_Py_ID(name), + & const_str_rpartition._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +importlib__bootstrap_toplevel_consts_23_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleSpec.parent", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[49]; + } +importlib__bootstrap_toplevel_consts_23_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 48, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x00\x0c\x10\xd4\x0b\x2a\xd0\x0b\x32\xd8\x13\x17\x94\x39\xd7\x13\x27\xd2\x13\x27\xa8\x03\xd1\x13\x2c\xd4\x13\x2c\xa8\x51\xd4\x13\x2f\xd0\x0c\x2f\xe0\x13\x17\x94\x39\xd0\x0c\x1c", +}; +static + struct _PyCode_DEF(94) +importlib__bootstrap_toplevel_consts_23_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 47, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_9_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 405, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(parent), + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_9_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x20\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__set_fileattr._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +importlib__bootstrap_toplevel_consts_23_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleSpec.has_location", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[12]; + } +importlib__bootstrap_toplevel_consts_23_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 11, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\xd4\x0f\x21\xd0\x08\x21", +}; +static + struct _PyCode_DEF(16) +importlib__bootstrap_toplevel_consts_23_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 413, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_has_location._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_10_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_bool = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bool", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_bool._ascii.ob_base, + & const_str__set_fileattr._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +importlib__bootstrap_toplevel_consts_23_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x1d\x21\xa0\x25\x99\x5b\x9c\x5b\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xd0\x08\x1a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_value = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "value", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(46) +importlib__bootstrap_toplevel_consts_23_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 23, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 417, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_has_location._ascii.ob_base, + .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_10_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str_ModuleSpec._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_1._ascii.ob_base, + Py_None, + & importlib__bootstrap_toplevel_consts_23_consts_3._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_5.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_6.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_7.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_8.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_9.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_10.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_23_consts_11.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_property = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "property", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_setter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "setter", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +importlib__bootstrap_toplevel_consts_23_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + &_Py_ID(__repr__), + &_Py_ID(__eq__), + & const_str_property._ascii.ob_base, + & const_str_cached._ascii.ob_base, + & const_str_setter._ascii.ob_base, + &_Py_ID(parent), + & const_str_has_location._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[241]; + } +importlib__bootstrap_toplevel_consts_23_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 240, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x22\x05\x08\xf0\x00\x22\x05\x08\xf0\x48\x01\x00\x30\x34\xc0\x24\xd8\x1c\x20\xf0\x03\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x1a\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x14\x0a\x05\x22\xf0\x00\x0a\x05\x22\xf0\x00\x0a\x05\x22\xf0\x18\x00\x06\x0e\xf0\x02\x06\x05\x1c\xf0\x00\x06\x05\x1c\xf1\x03\x00\x06\x0e\x84\x58\xf0\x02\x06\x05\x1c\xf0\x10\x00\x06\x0c\x84\x5d\xf0\x02\x01\x05\x1e\xf0\x00\x01\x05\x1e\xf1\x03\x00\x06\x13\x84\x5d\xf0\x02\x01\x05\x1e\xf0\x06\x00\x06\x0e\xf0\x02\x05\x05\x1d\xf0\x00\x05\x05\x1d\xf1\x03\x00\x06\x0e\x84\x58\xf0\x02\x05\x05\x1d\xf0\x0e\x00\x06\x0e\xf0\x02\x01\x05\x22\xf0\x00\x01\x05\x22\xf1\x03\x00\x06\x0e\x84\x58\xf0\x02\x01\x05\x22\xf0\x06\x00\x06\x12\xd4\x05\x18\xf0\x02\x01\x05\x29\xf0\x00\x01\x05\x29\xf1\x03\x00\x06\x19\xd4\x05\x18\xf0\x02\x01\x05\x29\xf0\x00\x01\x05\x29\xf0\x00\x01\x05\x29", +}; +static + struct _PyCode_DEF(176) +importlib__bootstrap_toplevel_consts_23 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 88, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_23_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 320, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_ModuleSpec._ascii.ob_base, + .co_qualname = & const_str_ModuleSpec._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_23_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x64\x02\x64\x02\x64\x03\x9c\x03\x64\x04\x84\x02\x5a\x04\x64\x05\x84\x00\x5a\x05\x64\x06\x84\x00\x5a\x06\x65\x07\x64\x07\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x65\x08\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x65\x07\x64\x09\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x65\x07\x64\x0a\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x65\x0b\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_25 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_origin._ascii.ob_base, + & const_str_is_package._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[54]; + } +importlib__bootstrap_toplevel_consts_26_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 53, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return a module spec based on various loader methods.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__ORIGIN = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ORIGIN", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_get_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "get_filename", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_26_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_loader._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_26_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_loader._ascii.ob_base, + & const_str_submodule_search_locations._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib__bootstrap_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_26_consts_0._ascii.ob_base, + Py_None, + & const_str__ORIGIN._ascii.ob_base, + & const_str_get_filename._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_26_consts_4._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_26_consts_5._object.ob_base.ob_base, + & const_str_is_package._ascii.ob_base, + Py_False, + & importlib__bootstrap_toplevel_consts_25._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +const_str_spec_from_file_location = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spec_from_file_location", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(getattr), + & const_str_hasattr._ascii.ob_base, + & const_str__bootstrap_external._ascii.ob_base, + & const_str_NotImplementedError._ascii.ob_base, + & const_str_spec_from_file_location._ascii.ob_base, + & const_str_is_package._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_ModuleSpec._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[270]; + } +importlib__bootstrap_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 269, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x07\x0d\x80\x7e\xdd\x11\x18\x98\x16\xa0\x19\xa8\x44\xd1\x11\x31\xd4\x11\x31\x88\x06\xe0\x0b\x11\xf0\x00\x09\x05\x4a\x01\x95\x67\x98\x66\xa0\x6e\xd1\x16\x35\xd4\x16\x35\xf0\x00\x09\x05\x4a\x01\xdd\x0b\x1e\xd0\x0b\x26\xdd\x12\x25\xd0\x0c\x25\xdd\x22\x35\xd4\x22\x4d\xd0\x08\x1f\xe0\x0b\x15\xd0\x0b\x1d\xd8\x13\x2a\xd0\x13\x2a\xa8\x34\xb8\x06\xd0\x13\x3f\xd1\x13\x3f\xd4\x13\x3f\xd0\x0c\x3f\xd8\x17\x21\xd0\x11\x2b\x90\x12\x90\x12\xa0\x74\x88\x06\xd8\x0f\x26\xd0\x0f\x26\xa0\x74\xb0\x46\xd8\x42\x48\xf0\x03\x01\x10\x4a\x01\xf1\x00\x01\x10\x4a\x01\xf4\x00\x01\x10\x4a\x01\xf0\x00\x01\x09\x4a\x01\xf0\x06\x00\x08\x12\xd0\x07\x19\xdd\x0b\x12\x90\x36\x98\x3c\xd1\x0b\x28\xd4\x0b\x28\xf0\x00\x07\x09\x1f\xf0\x02\x03\x0d\x22\xd8\x1d\x23\xd7\x1d\x2e\xd2\x1d\x2e\xa8\x74\xd1\x1d\x34\xd4\x1d\x34\x90\x0a\x90\x0a\xf8\xdd\x13\x1e\xf0\x00\x01\x0d\x22\xf0\x00\x01\x0d\x22\xf0\x00\x01\x0d\x22\xd8\x1d\x21\x90\x0a\x90\x0a\x90\x0a\xf0\x03\x01\x0d\x22\xf8\xf8\xf8\xf0\x08\x00\x1a\x1f\x88\x4a\xe5\x0b\x15\x90\x64\x98\x46\xa8\x36\xb8\x6a\xd0\x0b\x49\xd1\x0b\x49\xd4\x0b\x49\xd0\x04\x49", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +importlib__bootstrap_toplevel_consts_26_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x36\x15\x42\x0c\x00\xc2\x0c\x0c\x42\x1b\x03\xc2\x1a\x01\x42\x1b\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_search = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "search", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +importlib__bootstrap_toplevel_consts_26_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(name), + & const_str_loader._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_is_package._ascii.ob_base, + & const_str_spec_from_file_location._ascii.ob_base, + & const_str_search._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(358) +importlib__bootstrap_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 179, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_26_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 2, + .co_stacksize = 6, + .co_firstlineno = 422, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_spec_from_loader._ascii.ob_base, + .co_qualname = & const_str_spec_from_loader._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x80\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x64\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x73\x4d\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x3d\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x03\x80\x0d\x02\x00\x7c\x04\x7c\x00\x7c\x01\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x03\x72\x02\x67\x00\x6e\x01\x64\x01\x7d\x05\x02\x00\x7c\x04\x7c\x00\x7c\x01\x7c\x05\xac\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x03\x80\x3b\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x29\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x14\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x01\x7d\x03\x59\x00\x6e\x06\x77\x00\x78\x03\x59\x00\x77\x01\x64\x07\x7d\x03\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\xac\x08\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_27_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_origin._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_27_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + & const_str__ORIGIN._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_27_consts_2._object.ob_base.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str___cached__ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__cached__", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_list = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "list", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +importlib__bootstrap_toplevel_consts_27_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + &_Py_ID(__spec__), + & const_str_AttributeError._ascii.ob_base, + &_Py_ID(__name__), + &_Py_ID(__loader__), + &_Py_ID(__file__), + &_Py_ID(getattr), + & const_str___cached__._ascii.ob_base, + & const_str_list._ascii.ob_base, + &_Py_ID(__path__), + & const_str_ModuleSpec._ascii.ob_base, + & const_str__set_fileattr._ascii.ob_base, + & const_str_cached._ascii.ob_base, + & const_str_submodule_search_locations._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__spec_from_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_spec_from_module", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[402]; + } +importlib__bootstrap_toplevel_consts_27_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 401, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x06\x05\x18\xd8\x0f\x15\x8c\x7f\x88\x04\xf0\x08\x00\x0c\x10\xd0\x0b\x1b\xd8\x13\x17\x88\x4b\xf0\x03\x00\x0c\x1c\xf8\xf5\x07\x00\x0c\x1a\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x0c\x00\x0c\x12\x8c\x3f\x80\x44\xd8\x07\x0d\x80\x7e\xf0\x02\x04\x09\x11\xd8\x15\x1b\xd4\x15\x26\x88\x46\x88\x46\xf8\xdd\x0f\x1d\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xe0\x0c\x10\x88\x44\xf0\x05\x02\x09\x11\xf8\xf8\xf8\xf0\x06\x03\x05\x18\xd8\x13\x19\x94\x3f\x88\x08\x88\x08\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x18\xf0\x00\x01\x05\x18\xf0\x00\x01\x05\x18\xd8\x13\x17\x88\x08\x88\x08\x88\x08\xf0\x03\x01\x05\x18\xf8\xf8\xf8\xe0\x07\x0d\x80\x7e\xd8\x0b\x11\xd0\x0b\x1d\xdd\x15\x1c\x98\x56\xa0\x59\xb0\x04\xd1\x15\x35\xd4\x15\x35\x88\x46\xd8\x0f\x15\xf0\x00\x01\x09\x1e\x98\x28\xd0\x1a\x2e\xd8\x15\x1d\x88\x46\xf0\x02\x03\x05\x16\xd8\x11\x17\xd4\x11\x22\x88\x06\x88\x06\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x16\xf0\x00\x01\x05\x16\xf0\x00\x01\x05\x16\xd8\x11\x15\x88\x06\x88\x06\x88\x06\xf0\x03\x01\x05\x16\xf8\xf8\xf8\xf0\x04\x03\x05\x2a\xdd\x25\x29\xa8\x26\xac\x2f\xd1\x25\x3a\xd4\x25\x3a\xd0\x08\x22\xd0\x08\x22\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x2a\xf0\x00\x01\x05\x2a\xf0\x00\x01\x05\x2a\xd8\x25\x29\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22\xf0\x03\x01\x05\x2a\xf8\xf8\xf8\xf5\x06\x00\x0c\x16\x90\x64\x98\x46\xa8\x36\xd0\x0b\x32\xd1\x0b\x32\xd4\x0b\x32\x80\x44\xd8\x22\x2a\xd0\x22\x32\x98\x15\x98\x15\xb8\x16\xc0\x38\xd2\x39\x4b\x80\x44\xd4\x04\x16\xd8\x12\x18\x80\x44\x84\x4b\xd8\x26\x40\x80\x44\xd4\x04\x23\xd8\x0b\x0f\x80\x4b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[79]; + } +importlib__bootstrap_toplevel_consts_27_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 78, + }, + .ob_shash = -1, + .ob_sval = "\x82\x07\x0e\x00\x8e\x0a\x1b\x03\x9a\x01\x1b\x03\xa8\x07\x30\x00\xb0\x0a\x3d\x03\xbc\x01\x3d\x03\xc1\x01\x07\x41\x09\x00\xc1\x09\x0c\x41\x18\x03\xc1\x17\x01\x41\x18\x03\xc1\x37\x07\x41\x3f\x00\xc1\x3f\x0c\x42\x0e\x03\xc2\x0d\x01\x42\x0e\x03\xc2\x12\x14\x42\x27\x00\xc2\x27\x0c\x42\x36\x03\xc2\x35\x01\x42\x36\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_location = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "location", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_27_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_module._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_spec._ascii.ob_base, + &_Py_ID(name), + & const_str_location._ascii.ob_base, + & const_str_cached._ascii.ob_base, + & const_str_submodule_search_locations._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +importlib__bootstrap_toplevel_consts_27_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(468) +importlib__bootstrap_toplevel_consts_27 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 234, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_27_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_27_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_27_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 451, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__spec_from_module._ascii.ob_base, + .co_qualname = & const_str__spec_from_module._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_27_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x81\x02\x7c\x03\x53\x00\x6e\x10\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x01\x80\x19\x09\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x10\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x00\x7d\x05\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x80\x19\x7c\x01\x81\x11\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x73\x04\x7c\x05\x81\x02\x7c\x05\x7d\x02\x09\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x00\x7d\x06\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x00\x7d\x07\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x01\x7c\x02\xac\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x05\x80\x02\x64\x03\x6e\x05\x7c\x02\x7c\x05\x6b\x02\x00\x00\x00\x00\x7c\x03\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x03\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x03\x5f\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_override = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "override", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_29 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_override._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_30_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + Py_None, + &_Py_ID(__name__), + &_Py_ID(__loader__), + &_Py_ID(__package__), + &_Py_ID(__path__), + &_Py_ID(__file__), + & const_str___cached__._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_NamespaceLoader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "NamespaceLoader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_path", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[21]; + }_object; + } +importlib__bootstrap_toplevel_consts_30_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 21, + }, + .ob_item = { + &_Py_ID(getattr), + &_Py_ID(name), + &_Py_ID(__name__), + & const_str_AttributeError._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_submodule_search_locations._ascii.ob_base, + & const_str__bootstrap_external._ascii.ob_base, + & const_str_NotImplementedError._ascii.ob_base, + & const_str_NamespaceLoader._ascii.ob_base, + &_Py_ID(__new__), + & const_str__path._ascii.ob_base, + &_Py_ID(__file__), + &_Py_ID(__loader__), + &_Py_ID(parent), + &_Py_ID(__package__), + &_Py_ID(__spec__), + &_Py_ID(__path__), + & const_str_has_location._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_cached._ascii.ob_base, + & const_str___cached__._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str__init_module_attrs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_init_module_attrs", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[623]; + } +importlib__bootstrap_toplevel_consts_30_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 622, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x09\x11\xf0\x00\x04\x05\x11\x95\x47\x98\x46\xa0\x4a\xb0\x04\xd1\x14\x35\xd4\x14\x35\xd0\x14\x3d\xf0\x02\x03\x09\x11\xd8\x1e\x22\x9c\x69\x88\x46\x8c\x4f\x88\x4f\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x00\x08\x10\xf0\x00\x1a\x05\x11\x95\x37\x98\x36\xa0\x3c\xb0\x14\xd1\x13\x36\xd4\x13\x36\xd0\x13\x3e\xd8\x11\x15\x94\x1b\x88\x06\xd8\x0b\x11\x88\x3e\xe0\x0f\x13\xd4\x0f\x2e\xd0\x0f\x3a\xdd\x13\x26\xd0\x13\x2e\xdd\x1a\x2d\xd0\x14\x2d\xdd\x22\x35\xd4\x22\x45\x90\x0f\xe0\x19\x28\xd7\x19\x30\xd2\x19\x30\xb0\x1f\xd1\x19\x41\xd4\x19\x41\x90\x06\xd8\x1f\x23\xd4\x1f\x3e\x90\x06\x94\x0c\xd8\x1e\x24\x90\x04\x94\x0b\xf0\x16\x00\x23\x27\x90\x06\x94\x0f\xf0\x02\x03\x09\x11\xd8\x20\x26\x88\x46\xd4\x0c\x1d\xd0\x0c\x1d\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x00\x08\x10\xf0\x00\x04\x05\x11\x95\x37\x98\x36\xa0\x3d\xb0\x24\xd1\x13\x37\xd4\x13\x37\xd0\x13\x3f\xf0\x02\x03\x09\x11\xd8\x21\x25\xa4\x1b\x88\x46\xd4\x0c\x1e\xd0\x0c\x1e\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x03\x05\x0d\xd8\x1a\x1e\x88\x06\x8c\x0f\x88\x0f\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x06\x00\x08\x10\xf0\x00\x06\x05\x15\x95\x37\x98\x36\xa0\x3a\xa8\x74\xd1\x13\x34\xd4\x13\x34\xd0\x13\x3c\xd8\x0b\x0f\xd4\x0b\x2a\xd0\x0b\x36\xf0\x04\x03\x0d\x15\xd8\x22\x26\xd4\x22\x41\x90\x06\x94\x0f\x90\x0f\xf8\xdd\x13\x21\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x06\x00\x08\x0c\xd4\x07\x18\xf0\x00\x0c\x05\x19\xd8\x0b\x13\xf0\x00\x04\x09\x15\x95\x77\x98\x76\xa0\x7a\xb0\x34\xd1\x17\x38\xd4\x17\x38\xd0\x17\x40\xf0\x02\x03\x0d\x15\xd8\x22\x26\xa4\x2b\x90\x06\x94\x0f\x90\x0f\xf8\xdd\x13\x21\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x06\x00\x0c\x14\xf0\x00\x05\x09\x19\x95\x77\x98\x76\xa0\x7c\xb0\x54\xd1\x17\x3a\xd4\x17\x3a\xd0\x17\x42\xd8\x0f\x13\x8c\x7b\xd0\x0f\x26\xf0\x02\x03\x11\x19\xd8\x28\x2c\xac\x0b\x90\x46\xd4\x14\x25\xd0\x14\x25\xf8\xdd\x17\x25\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xd8\x14\x18\x90\x44\xf0\x03\x01\x11\x19\xf8\xf8\xf8\xe0\x0b\x11\x80\x4d", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[121]; + } +importlib__bootstrap_toplevel_consts_30_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 120, + }, + .ob_shash = -1, + .ob_sval = "\x95\x0c\x22\x00\xa2\x0a\x2f\x03\xae\x01\x2f\x03\xc2\x1f\x07\x42\x27\x00\xc2\x27\x0a\x42\x34\x03\xc2\x33\x01\x42\x34\x03\xc3\x0b\x0c\x43\x18\x00\xc3\x18\x0a\x43\x25\x03\xc3\x24\x01\x43\x25\x03\xc3\x29\x07\x43\x31\x00\xc3\x31\x0a\x43\x3e\x03\xc3\x3d\x01\x43\x3e\x03\xc4\x1c\x0c\x44\x29\x00\xc4\x29\x0a\x44\x36\x03\xc4\x35\x01\x44\x36\x03\xc5\x14\x0c\x45\x21\x00\xc5\x21\x0a\x45\x2e\x03\xc5\x2d\x01\x45\x2e\x03\xc6\x0c\x0c\x46\x19\x00\xc6\x19\x0a\x46\x26\x03\xc6\x25\x01\x46\x26\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_30_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_spec._ascii.ob_base, + & const_str_module._ascii.ob_base, + & const_str_override._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_NamespaceLoader._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(854) +importlib__bootstrap_toplevel_consts_30 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 427, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_30_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_30_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_30_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 1, + .co_stacksize = 5, + .co_firstlineno = 493, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_30_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__init_module_attrs._ascii.ob_base, + .co_qualname = & const_str__init_module_attrs._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_30_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x72\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x80\x50\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x81\x49\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x01\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x7c\x03\x7c\x01\x5f\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x7c\x01\x5f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x04\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x25\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x81\x1e\x09\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x10\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x6a\x11\x00\x00\x00\x00\x00\x00\x00\x00\x72\x69\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x05\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x12\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x06\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x25\x7c\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x81\x1e\x09\x00\x7c\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x14\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[44]; + } +importlib__bootstrap_toplevel_consts_31_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 43, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Create a module based on the provided spec.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_create_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "create_module", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_exec_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exec_module", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[67]; + } +importlib__bootstrap_toplevel_consts_31_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 66, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "loaders that define exec_module() must also define create_module()", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_31_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_31_consts_0._ascii.ob_base, + Py_None, + & const_str_create_module._ascii.ob_base, + & const_str_exec_module._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_31_consts_4._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_31_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_hasattr._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_create_module._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str__new_module._ascii.ob_base, + &_Py_ID(name), + & const_str__init_module_attrs._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_module_from_spec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module_from_spec", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[139]; + } +importlib__bootstrap_toplevel_consts_31_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 138, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x00\x0e\x12\x80\x46\xdd\x07\x0e\x88\x74\x8c\x7b\x98\x4f\xd1\x07\x2c\xd4\x07\x2c\xf0\x00\x06\x05\x3e\xf0\x06\x00\x12\x16\x94\x1b\xd7\x11\x2a\xd2\x11\x2a\xa8\x34\xd1\x11\x30\xd4\x11\x30\x88\x06\x88\x06\xdd\x09\x10\x90\x14\x94\x1b\x98\x6d\xd1\x09\x2c\xd4\x09\x2c\xf0\x00\x02\x05\x3e\xdd\x0e\x19\xf0\x00\x01\x1b\x3d\xf1\x00\x01\x0f\x3e\xf4\x00\x01\x0f\x3e\xf0\x00\x01\x09\x3e\xe0\x07\x0d\x80\x7e\xdd\x11\x1c\x98\x54\x9c\x59\xd1\x11\x27\xd4\x11\x27\x88\x06\xdd\x04\x16\x90\x74\x98\x56\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x0b\x11\x80\x4d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_31_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_spec._ascii.ob_base, + & const_str_module._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(254) +importlib__bootstrap_toplevel_consts_31 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 127, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_31_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_31_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 566, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_module_from_spec._ascii.ob_base, + .co_qualname = & const_str_module_from_spec._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_31_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x24\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x80\x14\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +importlib__bootstrap_toplevel_consts_32_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the repr to use for the module.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +importlib__bootstrap_toplevel_consts_32_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_32_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_32_consts_0._ascii.ob_base, + Py_None, + & importlib__bootstrap_toplevel_consts_22_consts_5._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_22_consts_7._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_22_consts_8._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_22_consts_6._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_32_consts_6._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib__bootstrap_toplevel_consts_32_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(name), + & const_str_origin._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_format._ascii.ob_base, + & const_str_has_location._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[145]; + } +importlib__bootstrap_toplevel_consts_32_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 144, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x00\x13\x17\x94\x29\xd0\x12\x23\x88\x33\x88\x33\xa8\x14\xac\x19\x80\x44\xd8\x07\x0b\x84\x7b\xd0\x07\x1a\xd8\x0b\x0f\x8c\x3b\xd0\x0b\x1e\xd8\x13\x22\xd7\x13\x29\xd2\x13\x29\xa8\x24\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f\xe0\x13\x29\xd7\x13\x30\xd2\x13\x30\xb0\x14\xb0\x74\xb4\x7b\xd1\x13\x43\xd4\x13\x43\xd0\x0c\x43\xe0\x0b\x0f\xd4\x0b\x1c\xf0\x00\x03\x09\x47\x01\xd8\x13\x2c\xd7\x13\x33\xd2\x13\x33\xb0\x44\xb8\x24\xbc\x2b\xd1\x13\x46\xd4\x13\x46\xd0\x0c\x46\xe0\x13\x27\xd7\x13\x2e\xd2\x13\x2e\xa8\x74\xac\x79\xb8\x24\xbc\x2b\xd1\x13\x46\xd4\x13\x46\xd0\x0c\x46", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_32_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_spec._ascii.ob_base, + &_Py_ID(name), + }, + }, +}; +static + struct _PyCode_DEF(290) +importlib__bootstrap_toplevel_consts_32 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 145, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_32_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_32_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 583, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__module_repr_from_spec._ascii.ob_base, + .co_qualname = & const_str__module_repr_from_spec._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_32_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x02\x64\x02\x6e\x06\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x37\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x80\x15\x64\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x04\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x64\x05\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x06\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[71]; + } +importlib__bootstrap_toplevel_consts_33_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 70, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Execute the spec's specified module in an existing module's namespace.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +importlib__bootstrap_toplevel_consts_33_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module {!r} not in sys.modules", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +importlib__bootstrap_toplevel_consts_33_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "missing loader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[56]; + } +importlib__bootstrap_toplevel_consts_33_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 55, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ".exec_module() not found; falling back to load_module()", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib__bootstrap_toplevel_consts_33_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_33_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_33_consts_1._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + Py_None, + & importlib__bootstrap_toplevel_consts_33_consts_4._ascii.ob_base, + Py_True, + & importlib__bootstrap_toplevel_consts_29._object.ob_base.ob_base, + & const_str_exec_module._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_33_consts_8._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_ImportWarning = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ImportWarning", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_load_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "load_module", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_pop = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pop", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[18]; + }_object; + } +importlib__bootstrap_toplevel_consts_33_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 18, + }, + .ob_item = { + &_Py_ID(name), + & const_str__ModuleLockManager._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + &_Py_ID(get), + & const_str_format._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_submodule_search_locations._ascii.ob_base, + & const_str__init_module_attrs._ascii.ob_base, + & const_str_hasattr._ascii.ob_base, + & const_str__object_name._ascii.ob_base, + & const_str__warnings._ascii.ob_base, + & const_str_warn._ascii.ob_base, + & const_str_ImportWarning._ascii.ob_base, + & const_str_load_module._ascii.ob_base, + & const_str_exec_module._ascii.ob_base, + & const_str_pop._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[478]; + } +importlib__bootstrap_toplevel_consts_33_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 477, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0f\x8c\x39\x80\x44\xdd\x09\x1b\x98\x44\xd1\x09\x21\xd4\x09\x21\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xdd\x0b\x0e\x8c\x3b\x8f\x3f\x8a\x3f\x98\x34\xd1\x0b\x20\xd4\x0b\x20\xa8\x06\xd0\x0b\x2e\xd0\x0b\x2e\xd8\x12\x32\xd7\x12\x39\xd2\x12\x39\xb8\x24\xd1\x12\x3f\xd4\x12\x3f\x88\x43\xdd\x12\x1d\x98\x63\xa8\x04\xd0\x12\x2d\xd1\x12\x2d\xd4\x12\x2d\xd0\x0c\x2d\xf0\x02\x13\x09\x2c\xd8\x0f\x13\x8c\x7b\xd0\x0f\x22\xd8\x13\x17\xd4\x13\x32\xd0\x13\x3a\xdd\x1a\x25\xd0\x26\x36\xb8\x54\xbc\x59\xd0\x1a\x47\xd1\x1a\x47\xd4\x1a\x47\xd0\x14\x47\xe5\x10\x22\xa0\x34\xa8\x16\xb8\x24\xd0\x10\x3f\xd1\x10\x3f\xd4\x10\x3f\xd0\x10\x3f\xd0\x10\x3f\xe5\x10\x22\xa0\x34\xa8\x16\xb8\x24\xd0\x10\x3f\xd1\x10\x3f\xd4\x10\x3f\xd0\x10\x3f\xdd\x17\x1e\x98\x74\x9c\x7b\xa8\x4d\xd1\x17\x3a\xd4\x17\x3a\xf0\x00\x06\x11\x34\xdd\x1e\x2a\xa8\x34\xac\x3b\xd1\x1e\x37\xd4\x1e\x37\xf0\x00\x01\x1c\x3b\xf0\x00\x01\x1c\x3b\xf0\x00\x01\x1c\x3b\x90\x43\xe5\x14\x1d\x97\x4e\x92\x4e\xa0\x33\xad\x0d\xd1\x14\x36\xd4\x14\x36\xd0\x14\x36\xd8\x14\x18\x94\x4b\xd7\x14\x2b\xd2\x14\x2b\xa8\x44\xd1\x14\x31\xd4\x14\x31\xd0\x14\x31\xd0\x14\x31\xe0\x14\x18\x94\x4b\xd7\x14\x2b\xd2\x14\x2b\xa8\x46\xd1\x14\x33\xd4\x14\x33\xd0\x14\x33\xf5\x08\x00\x16\x19\x94\x5b\x97\x5f\x92\x5f\xa0\x54\xa4\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x25\x2b\x8d\x43\x8c\x4b\x98\x04\x9c\x09\xd1\x0c\x22\xd0\x0c\x22\xf8\xf5\x03\x00\x16\x19\x94\x5b\x97\x5f\x92\x5f\xa0\x54\xa4\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x25\x2b\x8d\x43\x8c\x4b\x98\x04\x9c\x09\xd1\x0c\x22\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x22\xf0\x2f\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf1\x00\x17\x05\x2c\xf4\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf8\xf8\xf8\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x30\x00\x0c\x12\x80\x4d", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[44]; + } +importlib__bootstrap_toplevel_consts_33_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 43, + }, + .ob_shash = -1, + .ob_sval = "\x97\x41\x08\x46\x2d\x03\xc1\x20\x43\x0a\x45\x23\x02\xc4\x2a\x39\x46\x2d\x03\xc5\x23\x3a\x46\x1d\x05\xc6\x1d\x03\x46\x2d\x03\xc6\x2d\x04\x46\x31\x07\xc6\x34\x01\x46\x31\x07", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib__bootstrap_toplevel_consts_33_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_spec._ascii.ob_base, + & const_str_module._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(msg), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +importlib__bootstrap_toplevel_consts_33_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(884) +importlib__bootstrap_toplevel_consts_33 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 442, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_33_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_33_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_33_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 600, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_33_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__exec._ascii.ob_base, + .co_qualname = & const_str__exec._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_33_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x75\x01\x72\x26\x64\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x02\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x80\x30\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x80\x16\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x05\xac\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x93\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x05\xac\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x52\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x08\x9d\x02\x7d\x03\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x6e\x3d\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x03\x64\x03\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib__bootstrap_toplevel_consts_34_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + Py_None, + &_Py_ID(__loader__), + &_Py_ID(__package__), + &_Py_ID(__path__), + &_Py_STR(dot), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + &_Py_ID(__spec__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +importlib__bootstrap_toplevel_consts_34_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + & const_str_loader._ascii.ob_base, + & const_str_load_module._ascii.ob_base, + &_Py_ID(name), + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str_pop._ascii.ob_base, + &_Py_ID(getattr), + &_Py_ID(__loader__), + & const_str_AttributeError._ascii.ob_base, + &_Py_ID(__name__), + &_Py_ID(__package__), + & const_str_hasattr._ascii.ob_base, + & const_str_rpartition._ascii.ob_base, + &_Py_ID(__spec__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +const_str__load_backward_compatible = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_load_backward_compatible", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[387]; + } +importlib__bootstrap_toplevel_consts_34_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 386, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x06\x05\x0e\xd8\x08\x0c\x8c\x0b\xd7\x08\x1f\xd2\x08\x1f\xa0\x04\xa4\x09\xd1\x08\x2a\xd4\x08\x2a\xd0\x08\x2a\xd0\x08\x2a\xf8\xf0\x02\x04\x05\x0e\xd8\x0b\x0f\x8c\x39\x9d\x03\x9c\x0b\xd0\x0b\x23\xd0\x0b\x23\xdd\x15\x18\x94\x5b\x97\x5f\x92\x5f\xa0\x54\xa4\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x25\x2b\x8d\x43\x8c\x4b\x98\x04\x9c\x09\xd1\x0c\x22\xd8\x08\x0d\xf8\xf8\xf8\xf5\x06\x00\x0e\x11\x8c\x5b\x8f\x5f\x8a\x5f\x98\x54\x9c\x59\xd1\x0d\x27\xd4\x0d\x27\x80\x46\xd8\x1d\x23\x85\x43\x84\x4b\x90\x04\x94\x09\xd1\x04\x1a\xdd\x07\x0e\x88\x76\x90\x7c\xa0\x54\xd1\x07\x2a\xd4\x07\x2a\xd0\x07\x32\xf0\x02\x03\x09\x11\xd8\x20\x24\xa4\x0b\x88\x46\xd4\x0c\x1d\xd0\x0c\x1d\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe5\x07\x0e\x88\x76\x90\x7d\xa0\x64\xd1\x07\x2b\xd4\x07\x2b\xd0\x07\x33\xf0\x02\x08\x09\x11\xf0\x08\x00\x22\x28\xa4\x1f\x88\x46\xd4\x0c\x1e\xdd\x13\x1a\x98\x36\xa0\x3a\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x42\x01\xd8\x25\x29\xa4\x59\xd7\x25\x39\xd2\x25\x39\xb8\x23\xd1\x25\x3e\xd4\x25\x3e\xb8\x71\xd4\x25\x41\x90\x06\xd4\x10\x22\xf8\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe5\x07\x0e\x88\x76\x90\x7a\xa0\x34\xd1\x07\x28\xd4\x07\x28\xd0\x07\x30\xf0\x02\x03\x09\x11\xd8\x1e\x22\x88\x46\x8c\x4f\x88\x4f\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe0\x0b\x11\x80\x4d", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[66]; + } +importlib__bootstrap_toplevel_consts_34_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 65, + }, + .ob_shash = -1, + .ob_sval = "\x82\x1f\x22\x00\xa2\x41\x0e\x41\x30\x03\xc2\x3d\x0c\x43\x0a\x00\xc3\x0a\x0a\x43\x17\x03\xc3\x16\x01\x43\x17\x03\xc3\x2c\x41\x01\x44\x2e\x00\xc4\x2e\x0a\x44\x3b\x03\xc4\x3a\x01\x44\x3b\x03\xc5\x10\x07\x45\x18\x00\xc5\x18\x0a\x45\x25\x03\xc5\x24\x01\x45\x25\x03", +}; +static + struct _PyCode_DEF(724) +importlib__bootstrap_toplevel_consts_34 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 362, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_34_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_34_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_34_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 630, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__load_backward_compatible._ascii.ob_base, + .co_qualname = & const_str__load_backward_compatible._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_34_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x51\x23\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x38\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x82\x00\x78\x03\x59\x00\x77\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x53\x09\x00\x7c\x01\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x25\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x06\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x19\x09\x00\x7c\x00\x7c\x01\x5f\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +importlib__bootstrap_toplevel_consts_35_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "import {!r} # {!r}", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib__bootstrap_toplevel_consts_35_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + Py_None, + & const_str_exec_module._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_33_consts_8._ascii.ob_base, + Py_True, + & importlib__bootstrap_toplevel_consts_33_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_35_consts_6._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[18]; + }_object; + } +importlib__bootstrap_toplevel_consts_35_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 18, + }, + .ob_item = { + & const_str_loader._ascii.ob_base, + & const_str_hasattr._ascii.ob_base, + & const_str__object_name._ascii.ob_base, + & const_str__warnings._ascii.ob_base, + & const_str_warn._ascii.ob_base, + & const_str_ImportWarning._ascii.ob_base, + & const_str__load_backward_compatible._ascii.ob_base, + & const_str_module_from_spec._ascii.ob_base, + &_Py_ID(_initializing), + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + &_Py_ID(name), + & const_str_submodule_search_locations._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_exec_module._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + & const_str_pop._ascii.ob_base, + & const_str__verbose_message._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__load_unlocked = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_load_unlocked", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[371]; + } +importlib__bootstrap_toplevel_consts_35_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 370, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x07\x0b\x84\x7b\xd0\x07\x1e\xe5\x0f\x16\x90\x74\x94\x7b\xa0\x4d\xd1\x0f\x32\xd4\x0f\x32\xf0\x00\x04\x09\x33\xdd\x16\x22\xa0\x34\xa4\x3b\xd1\x16\x2f\xd4\x16\x2f\xf0\x00\x01\x14\x34\xf0\x00\x01\x14\x34\xf0\x00\x01\x14\x34\x88\x43\xe5\x0c\x15\x8f\x4e\x8a\x4e\x98\x33\xa5\x0d\xd1\x0c\x2e\xd4\x0c\x2e\xd0\x0c\x2e\xdd\x13\x2c\xa8\x54\xd1\x13\x32\xd4\x13\x32\xd0\x0c\x32\xe5\x0d\x1d\x98\x64\xd1\x0d\x23\xd4\x0d\x23\x80\x46\xf0\x0a\x00\x1a\x1e\x80\x44\xd4\x04\x16\xf0\x02\x17\x05\x23\xd8\x21\x27\x8d\x03\x8c\x0b\x90\x44\x94\x49\xd1\x08\x1e\xf0\x02\x0c\x09\x12\xd8\x0f\x13\x8c\x7b\xd0\x0f\x22\xd8\x13\x17\xd4\x13\x32\xd0\x13\x3a\xdd\x1a\x25\xd0\x26\x36\xb8\x54\xbc\x59\xd0\x1a\x47\xd1\x1a\x47\xd4\x1a\x47\xd0\x14\x47\xf0\x03\x00\x14\x3b\xf0\x08\x00\x11\x15\x94\x0b\xd7\x10\x27\xd2\x10\x27\xa8\x06\xd1\x10\x2f\xd4\x10\x2f\xd0\x10\x2f\xf8\xf8\xf0\x02\x05\x09\x12\xf0\x02\x03\x0d\x15\xdd\x14\x17\x94\x4b\xa0\x04\xa4\x09\xd0\x14\x2a\xd0\x14\x2a\xf8\xdd\x13\x1b\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xe0\x0c\x11\xf8\xf8\xf8\xf5\x0a\x00\x12\x15\x94\x1b\x97\x1f\x92\x1f\xa0\x14\xa4\x19\xd1\x11\x2b\xd4\x11\x2b\x88\x06\xd8\x21\x27\x8d\x03\x8c\x0b\x90\x44\x94\x49\xd1\x08\x1e\xdd\x08\x18\xd0\x19\x2d\xa8\x74\xac\x79\xb8\x24\xbc\x2b\xd1\x08\x46\xd4\x08\x46\xd0\x08\x46\xe0\x1d\x22\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xf8\x98\x55\x88\x04\xd4\x08\x1a\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22\xe0\x0b\x11\x80\x4d", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[74]; + } +importlib__bootstrap_toplevel_consts_35_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 73, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x3a\x14\x45\x14\x00\xc2\x0f\x3f\x43\x0f\x00\xc3\x0e\x01\x45\x14\x00\xc3\x0f\x02\x43\x36\x03\xc3\x12\x12\x43\x25\x02\xc3\x24\x01\x43\x36\x03\xc3\x25\x0a\x43\x32\x05\xc3\x2f\x02\x43\x36\x03\xc3\x31\x01\x43\x32\x05\xc3\x32\x04\x43\x36\x03\xc3\x36\x41\x16\x45\x14\x00\xc5\x14\x09\x45\x1d\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_35_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_spec._ascii.ob_base, + &_Py_ID(msg), + & const_str_module._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(708) +importlib__bootstrap_toplevel_consts_35 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 354, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_35_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_35_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_35_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 666, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_35_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__load_unlocked._ascii.ob_base, + .co_qualname = & const_str__load_unlocked._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_35_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x81\x5b\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x46\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x9d\x02\x7d\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x03\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x7c\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x80\x16\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x6e\x1a\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x2a\x23\x00\x01\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x6e\x10\x23\x00\x74\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x82\x00\x78\x03\x59\x00\x77\x01\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x07\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x0c\x23\x00\x64\x07\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[192]; + } +importlib__bootstrap_toplevel_consts_36_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 191, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x61\x20\x6e\x65\x77\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6c\x6f\x61\x64\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x73\x70\x65\x63\x27\x73\x20\x6c\x6f\x61\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x69\x74\x73\x20\x70\x61\x72\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x69\x6e\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2c\x20\x74\x68\x61\x74\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6d\x6f\x64\x75\x6c\x65\x20\x67\x65\x74\x73\x0a\x20\x20\x20\x20\x63\x6c\x6f\x62\x62\x65\x72\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib__bootstrap_toplevel_consts_36_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_36_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib__bootstrap_toplevel_consts_36_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str__ModuleLockManager._ascii.ob_base, + &_Py_ID(name), + & const_str__load_unlocked._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[132]; + } +importlib__bootstrap_toplevel_consts_36_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 131, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x12\x00\x0a\x1c\x98\x44\x9c\x49\xd1\x09\x26\xd4\x09\x26\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xdd\x0f\x1d\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xf0\x03\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf1\x00\x01\x05\x24\xf4\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf8\xf8\xf8\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +importlib__bootstrap_toplevel_consts_36_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x95\x0f\x31\x03\xb1\x04\x35\x07\xb8\x01\x35\x07", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib__bootstrap_toplevel_consts_36_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_spec._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(124) +importlib__bootstrap_toplevel_consts_36 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 62, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_36_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_36_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib__bootstrap_toplevel_consts_36_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 711, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_36_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__load._ascii.ob_base, + .co_qualname = & const_str__load._ascii.ob_base, + .co_linetable = & importlib__bootstrap_toplevel_consts_36_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_BuiltinImporter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BuiltinImporter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[145]; + } +importlib__bootstrap_toplevel_consts_37_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 144, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x4d\x65\x74\x61\x20\x70\x61\x74\x68\x20\x69\x6d\x70\x6f\x72\x74\x20\x66\x6f\x72\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x41\x6c\x6c\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x61\x72\x65\x20\x65\x69\x74\x68\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x73\x74\x61\x74\x69\x63\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x74\x68\x65\x20\x6e\x65\x65\x64\x20\x74\x6f\x0a\x20\x20\x20\x20\x69\x6e\x73\x74\x61\x6e\x74\x69\x61\x74\x65\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +importlib__bootstrap_toplevel_consts_37_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "built-in", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[116]; + } +importlib__bootstrap_toplevel_consts_37_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 115, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x72\x65\x70\x72\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x20\x20\x54\x68\x65\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x61\x63\x68\x69\x6e\x65\x72\x79\x20\x64\x6f\x65\x73\x20\x74\x68\x65\x20\x6a\x6f\x62\x20\x69\x74\x73\x65\x6c\x66\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[82]; + } +importlib__bootstrap_toplevel_consts_37_consts_3_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 81, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BuiltinImporter.module_repr() is deprecated and slated for removal in Python 3.12", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +importlib__bootstrap_toplevel_consts_37_consts_3_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_11_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & zipimport_toplevel_consts_11_consts_15_consts_1._ascii.ob_base, + & zipimport_toplevel_consts_11_consts_15_consts_2._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_11_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_archive._ascii.ob_base, + & const_str_path_sep._ascii.ob_base, + & const_str_prefix._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +zipimport_toplevel_consts_11_consts_15_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zipimporter.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +zipimport_toplevel_consts_11_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x4e\xa0\x74\xa4\x7c\xd0\x0f\x4e\xb5\x58\xd0\x0f\x4e\xb8\x74\xbc\x7b\xd0\x0f\x4e\xd0\x0f\x4e\xd0\x0f\x4e\xd0\x08\x4e", +}; +static + struct _PyCode_DEF(52) +zipimport_toplevel_consts_11_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & zipimport_toplevel_consts_11_consts_15_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_11_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 339, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & zipimport_toplevel_consts_11_consts_15_qualname._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_11_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x9d\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +zipimport_toplevel_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + &_Py_ID(zipimporter), + & zipimport_toplevel_consts_11_consts_1._ascii.ob_base, + & zipimport_toplevel_consts_11_consts_2.ob_base.ob_base, + Py_None, + & zipimport_toplevel_consts_11_consts_4.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_5.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_6.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_7.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_8.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_9.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_10.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_11.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_12.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_13.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_14.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_15.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +zipimport_toplevel_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + & const_str_find_loader._ascii.ob_base, + & const_str_find_module._ascii.ob_base, + & const_str_find_spec._ascii.ob_base, + & const_str_get_code._ascii.ob_base, + & const_str_get_data._ascii.ob_base, + & const_str_get_filename._ascii.ob_base, + &_Py_ID(get_source), + & const_str_is_package._ascii.ob_base, + & const_str_load_module._ascii.ob_base, + & const_str_get_resource_reader._ascii.ob_base, + & const_str_invalidate_caches._ascii.ob_base, + &_Py_ID(__repr__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[249]; + } +zipimport_toplevel_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 248, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0c\x05\x08\xf0\x00\x0c\x05\x08\xf0\x22\x25\x05\x24\xf0\x00\x25\x05\x24\xf0\x00\x25\x05\x24\xf0\x5a\x01\x20\x05\x18\xf0\x00\x20\x05\x18\xf0\x00\x20\x05\x18\xf0\x00\x20\x05\x18\xf0\x4a\x01\x0e\x05\x33\xf0\x00\x0e\x05\x33\xf0\x00\x0e\x05\x33\xf0\x00\x0e\x05\x33\xf0\x20\x19\x05\x1c\xf0\x00\x19\x05\x1c\xf0\x00\x19\x05\x1c\xf0\x00\x19\x05\x1c\xf0\x36\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x14\x11\x05\x32\xf0\x00\x11\x05\x32\xf0\x00\x11\x05\x32\xf0\x2a\x09\x05\x17\xf0\x00\x09\x05\x17\xf0\x00\x09\x05\x17\xf0\x18\x16\x05\x3b\xf0\x00\x16\x05\x3b\xf0\x00\x16\x05\x3b\xf0\x34\x09\x05\x12\xf0\x00\x09\x05\x12\xf0\x00\x09\x05\x12\xf0\x1a\x28\x05\x13\xf0\x00\x28\x05\x13\xf0\x00\x28\x05\x13\xf0\x56\x01\x0c\x05\x29\xf0\x00\x0c\x05\x29\xf0\x00\x0c\x05\x29\xf0\x1e\x07\x05\x1d\xf0\x00\x07\x05\x1d\xf0\x00\x07\x05\x1d\xf0\x14\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01", +}; +static + struct _PyCode_DEF(102) +zipimport_toplevel_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 51, + }, + .co_consts = & zipimport_toplevel_consts_11_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 46, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = &_Py_ID(zipimporter), + .co_qualname = &_Py_ID(zipimporter), + .co_linetable = & zipimport_toplevel_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x10\x64\x04\x84\x01\x5a\x05\x64\x10\x64\x05\x84\x01\x5a\x06\x64\x10\x64\x06\x84\x01\x5a\x07\x64\x07\x84\x00\x5a\x08\x64\x08\x84\x00\x5a\x09\x64\x09\x84\x00\x5a\x0a\x64\x0a\x84\x00\x5a\x0b\x64\x0b\x84\x00\x5a\x0c\x64\x0c\x84\x00\x5a\x0d\x64\x0d\x84\x00\x5a\x0e\x64\x0e\x84\x00\x5a\x0f\x64\x0f\x84\x00\x5a\x10\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +zipimport_toplevel_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__init__.pyc", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_16 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_34._ascii.ob_base, + Py_True, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_17 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_12._ascii.ob_base, + Py_False, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + &_Py_STR(dot), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_prefix._ascii.ob_base, + & const_str_rpartition._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[35]; + } +zipimport_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 34, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0f\x8c\x3b\x98\x18\xd7\x19\x2c\xd2\x19\x2c\xa8\x53\xd1\x19\x31\xd4\x19\x31\xb0\x21\xd4\x19\x34\xd1\x0b\x34\xd0\x04\x34", +}; +static + struct _PyCode_DEF(72) +zipimport_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & zipimport_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 357, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_55_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__get_module_path._ascii.ob_base, + .co_qualname = & const_str__get_module_path._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_19_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_path_sep._ascii.ob_base, + & const_str__files._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +zipimport_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x0f\x13\x95\x58\x89\x6f\x80\x47\xe0\x0b\x12\x90\x64\x94\x6b\xd0\x0b\x21\xd0\x04\x21", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_dirpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dirpath", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(path), + & const_str_dirpath._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(40) +zipimport_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 20, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 361, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__is_dir._ascii.ob_base, + .co_qualname = & const_str__is_dir._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x02\x7c\x02\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__zip_searchorder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_zip_searchorder", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str__get_module_path._ascii.ob_base, + & const_str__zip_searchorder._ascii.ob_base, + & const_str__files._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[84]; + } +zipimport_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 83, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0b\x1b\x98\x44\xa0\x28\xd1\x0b\x2b\xd4\x0b\x2b\x80\x44\xdd\x29\x39\xf0\x00\x03\x05\x1d\xf0\x00\x03\x05\x1d\xd1\x08\x25\x88\x06\x90\x0a\x98\x49\xd8\x13\x17\x98\x26\x91\x3d\x88\x08\xd8\x0b\x13\x90\x74\x94\x7b\xd0\x0b\x22\xd0\x0b\x22\xd8\x13\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xf0\x03\x00\x0c\x23\xe0\x0b\x0f\x88\x34", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_isbytecode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "isbytecode", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +zipimport_toplevel_consts_20_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + &_Py_ID(path), + & const_str_suffix._ascii.ob_base, + & const_str_isbytecode._ascii.ob_base, + & const_str_ispackage._ascii.ob_base, + & const_str_fullpath._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(102) +zipimport_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 51, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 370, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__get_module_info._ascii.ob_base, + .co_qualname = & const_str__get_module_info._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x18\x5c\x03\x00\x00\x7d\x03\x7d\x04\x7d\x05\x7c\x02\x7c\x03\x7a\x00\x00\x00\x7d\x06\x7c\x06\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x04\x7c\x05\x63\x02\x01\x00\x53\x00\x8c\x19\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +zipimport_toplevel_consts_21_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "can't open Zip file: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +zipimport_toplevel_consts_21_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "can't read Zip file: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +zipimport_toplevel_consts_21_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "not a Zip file: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +zipimport_toplevel_consts_21_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "corrupt Zip file: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +zipimport_toplevel_consts_21_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bad central directory size: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +zipimport_toplevel_consts_21_consts_13 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bad central directory offset: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +zipimport_toplevel_consts_21_consts_14 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bad central directory size or offset: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +zipimport_toplevel_consts_21_consts_17 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "EOF read where not expected", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +zipimport_toplevel_consts_21_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "\x50\x4b\x01\x02", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +zipimport_toplevel_consts_21_consts_28 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bad local header offset: ", +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_2048 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 2048 }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_ascii = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ascii", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +zipimport_toplevel_consts_21_consts_34 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zipimport: found {} names in {!r}", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[35]; + }_object; + } +zipimport_toplevel_consts_21_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 35, + }, + .ob_item = { + Py_None, + & zipimport_toplevel_consts_21_consts_1._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & zipimport_toplevel_consts_21_consts_4._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & zipimport_toplevel_consts_21_consts_7._ascii.ob_base, + & zipimport_toplevel_consts_21_consts_8._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 12], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 20], + & zipimport_toplevel_consts_21_consts_12._ascii.ob_base, + & zipimport_toplevel_consts_21_consts_13._ascii.ob_base, + & zipimport_toplevel_consts_21_consts_14._ascii.ob_base, + Py_True, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 46], + & zipimport_toplevel_consts_21_consts_17._ascii.ob_base, + & zipimport_toplevel_consts_21_consts_18.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 10], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 14], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 24], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 28], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 30], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 34], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 42], + & zipimport_toplevel_consts_21_consts_28._ascii.ob_base, + & const_int_2048.ob_base.ob_base, + & const_str_ascii._ascii.ob_base, + &_Py_ID(latin1), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & zipimport_toplevel_consts_21_consts_34._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str_END_CENTRAL_DIR_SIZE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "END_CENTRAL_DIR_SIZE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_STRING_END_ARCHIVE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "STRING_END_ARCHIVE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_MAX_COMMENT_LEN = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MAX_COMMENT_LEN", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_UnicodeDecodeError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UnicodeDecodeError", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_translate = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "translate", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_cp437_table = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cp437_table", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[26]; + }_object; + } +zipimport_toplevel_consts_21_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 26, + }, + .ob_item = { + & const_str__io._ascii.ob_base, + & const_str_open_code._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ZipImportError._ascii.ob_base, + &_Py_ID(tell), + &_Py_ID(seek), + & const_str_END_CENTRAL_DIR_SIZE._ascii.ob_base, + &_Py_ID(read), + &_Py_ID(len), + & const_str_STRING_END_ARCHIVE._ascii.ob_base, + & const_str_max._ascii.ob_base, + & const_str_MAX_COMMENT_LEN._ascii.ob_base, + & const_str_rfind._ascii.ob_base, + & const_str__unpack_uint32._ascii.ob_base, + & const_str_EOFError._ascii.ob_base, + & const_str__unpack_uint16._ascii.ob_base, + &_Py_ID(decode), + & const_str_UnicodeDecodeError._ascii.ob_base, + & const_str_translate._ascii.ob_base, + & const_str_cp437_table._ascii.ob_base, + &_Py_ID(replace), + & const_str_path_sep._ascii.ob_base, + & const_str__bootstrap_external._ascii.ob_base, + & const_str__path_join._ascii.ob_base, + &_Py_ID(_bootstrap), + & const_str__verbose_message._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[2052]; + } +zipimport_toplevel_consts_21_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2051, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x03\x05\x50\x01\xdd\x0d\x10\x8c\x5d\x98\x37\xd1\x0d\x23\xd4\x0d\x23\x88\x02\x88\x02\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x50\x01\xf0\x00\x01\x05\x50\x01\xf0\x00\x01\x05\x50\x01\xdd\x0e\x1c\xd0\x1d\x40\xb0\x57\xd0\x1d\x40\xd0\x1d\x40\xc0\x77\xd0\x0e\x4f\xd1\x0e\x4f\xd4\x0e\x4f\xd0\x08\x4f\xf0\x03\x01\x05\x50\x01\xf8\xf8\xf8\xf0\x06\x00\x0a\x0c\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x08\x00\x18\x1a\x97\x77\x92\x77\x91\x79\x94\x79\x88\x0c\xf0\x02\x6e\x01\x09\x22\xf0\x02\x05\x0d\x58\x01\xd8\x10\x12\x97\x07\x92\x07\xd5\x19\x2d\xd0\x18\x2d\xa8\x71\xd1\x10\x31\xd4\x10\x31\xd0\x10\x31\xd8\x22\x24\xa7\x27\xa2\x27\xa1\x29\xa4\x29\x90\x0f\xd8\x19\x1b\x9f\x17\x9a\x17\xd5\x21\x35\xd1\x19\x36\xd4\x19\x36\x90\x06\x90\x06\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xdd\x16\x24\xd0\x25\x48\xb8\x57\xd0\x25\x48\xd0\x25\x48\xc8\x77\xd0\x16\x57\xd1\x16\x57\xd4\x16\x57\xd0\x10\x57\xf0\x03\x01\x0d\x58\x01\xf8\xf8\xf8\xe5\x0f\x12\x90\x36\x89\x7b\x8c\x7b\xd5\x1e\x32\xd2\x0f\x32\xd0\x0f\x32\xdd\x16\x24\xd0\x25\x48\xb8\x57\xd0\x25\x48\xd0\x25\x48\xc8\x77\xd0\x16\x57\xd1\x16\x57\xd4\x16\x57\xd0\x10\x57\xd8\x0f\x15\x90\x62\x90\x71\x90\x62\x8c\x7a\xd5\x1d\x2f\xd2\x0f\x2f\xd1\x0f\x2f\xf0\x06\x05\x11\x37\xd8\x14\x16\x97\x47\x92\x47\x98\x41\x98\x71\x91\x4d\x94\x4d\x90\x4d\xd8\x20\x22\xa7\x07\xa2\x07\xa1\x09\xa4\x09\x90\x49\x90\x49\xf8\xdd\x17\x1e\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xf0\x03\x02\x11\x37\xf8\xf8\xf8\xf5\x06\x00\x25\x28\xa8\x09\xb5\x4f\xd1\x28\x43\xdd\x28\x3c\xf1\x03\x01\x29\x3d\xd8\x3e\x3f\xf1\x03\x01\x25\x41\x01\xf4\x00\x01\x25\x41\x01\xd0\x10\x21\xf0\x04\x05\x11\x37\xd8\x14\x16\x97\x47\x92\x47\xd0\x1c\x2d\xd1\x14\x2e\xd4\x14\x2e\xd0\x14\x2e\xd8\x1b\x1d\x9f\x37\x9a\x37\x99\x39\x9c\x39\x90\x44\x90\x44\xf8\xdd\x17\x1e\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xf0\x03\x02\x11\x37\xf8\xf8\xf8\xf0\x06\x00\x17\x1b\x97\x6a\x92\x6a\xd5\x21\x33\xd1\x16\x34\xd4\x16\x34\x90\x03\xd8\x13\x16\x98\x11\x92\x37\x90\x37\xdd\x1a\x28\xd0\x29\x47\xb8\x47\xd0\x29\x47\xd0\x29\x47\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xe0\x19\x1d\x98\x63\xa0\x23\xd5\x26\x3a\xd1\x22\x3a\xd0\x1e\x3a\xd4\x19\x3b\x90\x06\xdd\x13\x16\x90\x76\x91\x3b\x94\x3b\xd5\x22\x36\xd2\x13\x36\xd0\x13\x36\xdd\x1a\x28\xd0\x29\x49\xb8\x67\xd0\x29\x49\xd0\x29\x49\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xe0\x22\x2b\xad\x63\xb0\x24\xa9\x69\xac\x69\xd1\x22\x37\xb8\x23\xd1\x22\x3d\x90\x0f\xe5\x1a\x28\xa8\x16\xb0\x02\xb0\x32\xb0\x05\xac\x1d\xd1\x1a\x37\xd4\x1a\x37\x88\x4b\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x88\x4d\xd8\x0f\x1e\xa0\x1b\xd2\x0f\x2c\xd0\x0f\x2c\xdd\x16\x24\xd0\x25\x4f\xc0\x47\xd0\x25\x4f\xd0\x25\x4f\xd0\x56\x5d\xd0\x16\x5e\xd1\x16\x5e\xd4\x16\x5e\xd0\x10\x5e\xd8\x0f\x1e\xa0\x1d\xd2\x0f\x2e\xd0\x0f\x2e\xdd\x16\x24\xd0\x25\x51\xc0\x67\xd0\x25\x51\xd0\x25\x51\xd0\x58\x5f\xd0\x16\x60\xd1\x16\x60\xd4\x16\x60\xd0\x10\x60\xd8\x0c\x1b\x98\x7b\xd1\x0c\x2a\x88\x4f\xd8\x19\x28\xa8\x3d\xd1\x19\x38\x88\x4a\xd8\x0f\x19\x98\x41\x8a\x7e\x88\x7e\xdd\x16\x24\xd0\x25\x59\xc8\x67\xd0\x25\x59\xd0\x25\x59\xd0\x60\x67\xd0\x16\x68\xd1\x16\x68\xd4\x16\x68\xd0\x10\x68\xe0\x14\x16\x88\x45\xe0\x14\x15\x88\x45\xf0\x02\x03\x0d\x58\x01\xd8\x10\x12\x97\x07\x92\x07\x98\x0f\xd1\x10\x28\xd4\x10\x28\xd0\x10\x28\xd0\x10\x28\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xdd\x16\x24\xd0\x25\x48\xb8\x57\xd0\x25\x48\xd0\x25\x48\xc8\x77\xd0\x16\x57\xd1\x16\x57\xd4\x16\x57\xd0\x10\x57\xf0\x03\x01\x0d\x58\x01\xf8\xf8\xf8\xf0\x04\x36\x0d\x1b\xd8\x19\x1b\x9f\x17\x9a\x17\xa0\x12\x99\x1b\x9c\x1b\x90\x06\xdd\x13\x16\x90\x76\x91\x3b\x94\x3b\xa0\x11\x92\x3f\x90\x3f\xdd\x1a\x22\xd0\x23\x40\xd1\x1a\x41\xd4\x1a\x41\xd0\x14\x41\xe0\x13\x19\x98\x22\x98\x31\x98\x22\x94\x3a\xa0\x1d\xd2\x13\x2e\xd0\x13\x2e\xd9\x14\x19\xdd\x13\x16\x90\x76\x91\x3b\x94\x3b\xa0\x22\xd2\x13\x24\xd0\x13\x24\xdd\x1a\x22\xd0\x23\x40\xd1\x1a\x41\xd4\x1a\x41\xd0\x14\x41\xdd\x18\x26\xa0\x76\xa8\x61\xb0\x02\xa8\x64\xa4\x7c\xd1\x18\x34\xd4\x18\x34\x90\x05\xdd\x1b\x29\xa8\x26\xb0\x12\xb0\x42\xb0\x15\xac\x2d\xd1\x1b\x38\xd4\x1b\x38\x90\x08\xdd\x17\x25\xa0\x66\xa8\x52\xb0\x02\xa8\x55\xa4\x6d\xd1\x17\x34\xd4\x17\x34\x90\x04\xdd\x17\x25\xa0\x66\xa8\x52\xb0\x02\xa8\x55\xa4\x6d\xd1\x17\x34\xd4\x17\x34\x90\x04\xdd\x16\x24\xa0\x56\xa8\x42\xa8\x72\xa8\x45\xa4\x5d\xd1\x16\x33\xd4\x16\x33\x90\x03\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x90\x09\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x90\x09\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x90\x09\xdd\x1d\x2b\xa8\x46\xb0\x32\xb0\x62\xb0\x35\xac\x4d\xd1\x1d\x3a\xd4\x1d\x3a\x90\x0a\xdd\x1f\x2d\xa8\x66\xb0\x52\xb8\x02\xb0\x55\xac\x6d\xd1\x1f\x3c\xd4\x1f\x3c\x90\x0c\xdd\x1e\x2c\xa8\x56\xb0\x42\xb0\x72\xb0\x45\xac\x5d\xd1\x1e\x3b\xd4\x1e\x3b\x90\x0b\xd8\x1e\x27\xa8\x2a\xd1\x1e\x34\xb0\x7c\xd1\x1e\x43\x90\x0b\xd8\x13\x1e\xa0\x1d\xd2\x13\x2e\xd0\x13\x2e\xdd\x1a\x28\xd0\x29\x50\xc0\x57\xd0\x29\x50\xd0\x29\x50\xd0\x57\x5e\xd0\x1a\x5f\xd1\x1a\x5f\xd4\x1a\x5f\xd0\x14\x5f\xd8\x10\x1b\x98\x7a\xd1\x10\x29\x90\x0b\xf0\x04\x03\x11\x5c\x01\xd8\x1b\x1d\x9f\x37\x9a\x37\xa0\x39\xd1\x1b\x2d\xd4\x1b\x2d\x90\x44\x90\x44\xf8\xdd\x17\x1e\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd0\x53\x5a\xd0\x1a\x5b\xd1\x1a\x5b\xd4\x1a\x5b\xd0\x14\x5b\xf0\x03\x01\x11\x5c\x01\xf8\xf8\xf8\xe5\x13\x16\x90\x74\x91\x39\x94\x39\xa0\x09\xd2\x13\x29\xd0\x13\x29\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd0\x53\x5a\xd0\x1a\x5b\xd1\x1a\x5b\xd4\x1a\x5b\xd0\x14\x5b\xf0\x08\x04\x11\x5c\x01\xdd\x17\x1a\x98\x32\x9f\x37\x9a\x37\xa0\x3b\xb0\x19\xd1\x23\x3a\xd1\x1b\x3b\xd4\x1b\x3b\xd1\x17\x3c\xd4\x17\x3c\xc0\x0b\xc8\x69\xd1\x40\x57\xd2\x17\x57\xd0\x17\x57\xdd\x1e\x2c\xd0\x2d\x50\xc0\x57\xd0\x2d\x50\xd0\x2d\x50\xd0\x57\x5e\xd0\x1e\x5f\xd1\x1e\x5f\xd4\x1e\x5f\xd0\x18\x5f\xf0\x03\x00\x18\x58\x01\xf8\xe5\x17\x1e\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd0\x53\x5a\xd0\x1a\x5b\xd1\x1a\x5b\xd4\x1a\x5b\xd0\x14\x5b\xf0\x03\x01\x11\x5c\x01\xf8\xf8\xf8\xf0\x06\x00\x14\x19\x98\x35\x91\x3d\xf0\x00\x08\x11\x4c\x01\xe0\x1b\x1f\x9f\x3b\x9a\x3b\x99\x3d\x9c\x3d\x90\x44\x90\x44\xf0\x06\x03\x15\x4c\x01\xd8\x1f\x23\x9f\x7b\x9a\x7b\xa8\x37\xd1\x1f\x33\xd4\x1f\x33\x98\x04\x98\x04\xf8\xdd\x1b\x2d\xf0\x00\x01\x15\x4c\x01\xf0\x00\x01\x15\x4c\x01\xf0\x00\x01\x15\x4c\x01\xd8\x1f\x23\x9f\x7b\x9a\x7b\xa8\x38\xd1\x1f\x34\xd4\x1f\x34\xd7\x1f\x3e\xd2\x1f\x3e\xbd\x7b\xd1\x1f\x4b\xd4\x1f\x4b\x98\x04\x98\x04\x98\x04\xf0\x03\x01\x15\x4c\x01\xf8\xf8\xf8\xf0\x06\x00\x18\x1c\x97\x7c\x92\x7c\xa0\x43\xad\x18\xd1\x17\x32\xd4\x17\x32\x90\x04\xdd\x17\x2a\xd4\x17\x35\xb0\x67\xb8\x74\xd1\x17\x44\xd4\x17\x44\x90\x04\xd8\x15\x19\x98\x38\xa0\x59\xb0\x09\xb8\x3b\xc8\x04\xc8\x64\xd0\x54\x57\xd0\x14\x58\x90\x01\xd8\x1e\x1f\x90\x05\x90\x64\x91\x0b\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\xf1\x6d\x01\x36\x0d\x1b\xf0\x0c\x00\x15\x1a\xf0\x64\x01\x00\x0d\x0f\x8f\x47\x8a\x47\x90\x4c\xd1\x0c\x21\xd4\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf8\x88\x42\x8f\x47\x8a\x47\x90\x4c\xd1\x0c\x21\xd4\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf8\xf8\xf8\xd0\x0c\x21\xf0\x67\x03\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf1\x00\x73\x01\x05\x22\xf4\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf8\xf8\xf8\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf5\x68\x03\x00\x05\x0f\xd4\x04\x1f\xd0\x20\x43\xc0\x55\xc8\x47\xd1\x04\x54\xd4\x04\x54\xd0\x04\x54\xd8\x0b\x10\x80\x4c", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[230]; + } +zipimport_toplevel_consts_21_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 229, + }, + .ob_shash = -1, + .ob_sval = "\x82\x14\x17\x00\x97\x1f\x36\x03\xbb\x15\x59\x08\x03\xc1\x12\x41\x0a\x42\x1d\x02\xc2\x1c\x01\x58\x21\x02\xc2\x1d\x1f\x42\x3c\x05\xc2\x3c\x41\x03\x58\x21\x02\xc4\x00\x2a\x44\x2b\x02\xc4\x2a\x01\x58\x21\x02\xc4\x2b\x1f\x45\x0a\x05\xc5\x0a\x23\x58\x21\x02\xc5\x2e\x29\x46\x18\x02\xc6\x17\x01\x58\x21\x02\xc6\x18\x1f\x46\x37\x05\xc6\x37\x44\x14\x58\x21\x02\xcb\x0c\x15\x4b\x22\x02\xcb\x21\x01\x58\x21\x02\xcb\x22\x1f\x4c\x01\x05\xcc\x01\x46\x11\x58\x21\x02\xd2\x13\x15\x52\x29\x02\xd2\x28\x01\x58\x21\x02\xd2\x29\x1f\x53\x08\x05\xd3\x08\x2a\x58\x21\x02\xd3\x33\x41\x00\x54\x34\x02\xd4\x33\x01\x58\x21\x02\xd4\x34\x1f\x55\x13\x05\xd5\x13\x1d\x58\x21\x02\xd5\x31\x15\x56\x07\x02\xd6\x06\x01\x58\x21\x02\xd6\x07\x37\x57\x01\x05\xd6\x3e\x02\x58\x21\x02\xd7\x00\x01\x57\x01\x05\xd7\x01\x41\x09\x58\x21\x02\xd8\x0b\x16\x59\x08\x03\xd8\x21\x17\x58\x38\x05\xd8\x38\x03\x59\x08\x03\xd9\x08\x04\x59\x0c\x07\xd9\x0f\x01\x59\x0c\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_fp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fp", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_start_offset = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "start_offset", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_header_position = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "header_position", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_file_size = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "file_size", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_max_comment_start = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "max_comment_start", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_pos = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pos", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_header_size = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "header_size", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_header_offset = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "header_offset", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_arc_offset = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "arc_offset", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_compress = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "compress", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_time = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "time", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_date = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "date", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_crc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "crc", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_data_size = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "data_size", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_name_size = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "name_size", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_extra_size = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "extra_size", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_comment_size = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "comment_size", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_file_offset = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "file_offset", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_t = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "t", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[27]; + }_object; + } +zipimport_toplevel_consts_21_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 27, + }, + .ob_item = { + & const_str_archive._ascii.ob_base, + & const_str_fp._ascii.ob_base, + & const_str_start_offset._ascii.ob_base, + & const_str_header_position._ascii.ob_base, + &_Py_ID(buffer), + & const_str_file_size._ascii.ob_base, + & const_str_max_comment_start._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_pos._ascii.ob_base, + & const_str_header_size._ascii.ob_base, + & const_str_header_offset._ascii.ob_base, + & const_str_arc_offset._ascii.ob_base, + & const_str_files._ascii.ob_base, + & const_str_count._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_compress._ascii.ob_base, + & const_str_time._ascii.ob_base, + & const_str_date._ascii.ob_base, + & const_str_crc._ascii.ob_base, + & const_str_data_size._ascii.ob_base, + & const_str_name_size._ascii.ob_base, + & const_str_extra_size._ascii.ob_base, + & const_str_comment_size._ascii.ob_base, + & const_str_file_offset._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(path), + & const_str_t._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[28]; + } +zipimport_toplevel_consts_21_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 27, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(3286) +zipimport_toplevel_consts_21 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 1643, + }, + .co_consts = & zipimport_toplevel_consts_21_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = & zipimport_toplevel_consts_21_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 9, + .co_firstlineno = 401, + .co_nlocalsplus = 27, + .co_nlocals = 27, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & zipimport_toplevel_consts_21_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__read_directory._ascii.ob_base, + .co_qualname = & const_str__read_directory._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_21_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x35\x00\x01\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x04\x64\x00\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x90\x01\x72\x42\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0a\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0a\x00\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x07\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x64\x06\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x07\x7c\x08\x7c\x08\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x05\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0a\x00\x00\x7c\x08\x7a\x00\x00\x00\x7d\x03\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x09\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x0a\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x03\x7c\x09\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x7c\x0a\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x7c\x09\x7a\x17\x00\x00\x7d\x03\x7c\x03\x7c\x0a\x7a\x0a\x00\x00\x7d\x0b\x7c\x0b\x64\x06\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0e\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x69\x00\x7d\x0c\x64\x06\x7d\x0d\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x00\x00\x00\x00\x00\x72\x0f\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x04\x64\x00\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x12\x6b\x03\x00\x00\x00\x00\x72\x02\x90\x02\x6e\xbe\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x13\x64\x14\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x14\x64\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0f\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x09\x64\x15\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x10\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x15\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x11\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x0a\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x12\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x0b\x64\x16\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x13\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x16\x64\x17\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x17\x64\x18\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x14\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x18\x64\x19\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x15\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x19\x64\x1a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x16\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x1b\x64\x10\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x17\x7c\x14\x7c\x15\x7a\x00\x00\x00\x7c\x16\x7a\x00\x00\x00\x7d\x09\x7c\x17\x7c\x0a\x6b\x04\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x1c\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x17\x7c\x0b\x7a\x0d\x00\x00\x7d\x17\x09\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x14\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x18\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x14\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x14\x7a\x0a\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x14\x7a\x0a\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0e\x64\x1d\x7a\x01\x00\x00\x72\x15\x7c\x18\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x6e\x54\x09\x00\x7c\x18\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x1e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x6e\x3d\x23\x00\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x30\x01\x00\x7c\x18\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x1f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x18\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x20\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x74\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x17\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x18\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x19\x7c\x19\x7c\x0f\x7c\x13\x7c\x05\x7c\x17\x7c\x10\x7c\x11\x7c\x12\x66\x08\x7d\x1a\x7c\x1a\x7c\x0c\x7c\x18\x3c\x00\x00\x00\x7c\x0d\x64\x21\x7a\x0d\x00\x00\x7d\x0d\x90\x03\x8c\x05\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x23\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x74\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x64\x22\x7c\x0d\x7c\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x0c\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyCompactUnicodeObject _compact; + uint16_t _data[257]; + } +zipimport_toplevel_consts_22 = { + ._compact = { + ._base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 256, + .hash = -1, + .state = { + .kind = 2, + .compact = 1, + .ascii = 0, + .ready = 1, + }, + }, + }, + ._data = { + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, + 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, + 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, + 199, 252, 233, 226, 228, 224, 229, 231, 234, 235, 232, 239, 238, 236, 196, 197, + 201, 230, 198, 244, 246, 242, 251, 249, 255, 214, 220, 162, 163, 165, 8359, 402, + 225, 237, 243, 250, 241, 209, 170, 186, 191, 8976, 172, 189, 188, 161, 171, 187, + 9617, 9618, 9619, 9474, 9508, 9569, 9570, 9558, 9557, 9571, 9553, 9559, 9565, 9564, 9563, 9488, + 9492, 9524, 9516, 9500, 9472, 9532, 9566, 9567, 9562, 9556, 9577, 9574, 9568, 9552, 9580, 9575, + 9576, 9572, 9573, 9561, 9560, 9554, 9555, 9579, 9578, 9496, 9484, 9608, 9604, 9612, 9616, 9600, + 945, 223, 915, 960, 931, 963, 181, 964, 934, 920, 937, 948, 8734, 966, 949, 8745, + 8801, 177, 8805, 8804, 8992, 8993, 247, 8776, 176, 8729, 183, 8730, 8319, 178, 9632, 160, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +zipimport_toplevel_consts_23_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zipimport: zlib UNAVAILABLE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[42]; + } +zipimport_toplevel_consts_23_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 41, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "can't decompress data; zlib not available", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_decompress = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "decompress", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +zipimport_toplevel_consts_23_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_decompress._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +zipimport_toplevel_consts_23_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zipimport: zlib available", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +zipimport_toplevel_consts_23_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + Py_None, + & zipimport_toplevel_consts_23_consts_1._ascii.ob_base, + & zipimport_toplevel_consts_23_consts_2._ascii.ob_base, + Py_True, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & zipimport_toplevel_consts_23_consts_5._object.ob_base.ob_base, + Py_False, + & zipimport_toplevel_consts_23_consts_7._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__importing_zlib = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_importing_zlib", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_zlib = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zlib", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +zipimport_toplevel_consts_23_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__importing_zlib._ascii.ob_base, + &_Py_ID(_bootstrap), + & const_str__verbose_message._ascii.ob_base, + & const_str_ZipImportError._ascii.ob_base, + & const_str_zlib._ascii.ob_base, + & const_str_decompress._ascii.ob_base, + & const_str_Exception._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str__get_decompress_func = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_decompress_func", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[197]; + } +zipimport_toplevel_consts_23_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 196, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x07\x16\xf0\x00\x04\x05\x4a\x01\xf5\x06\x00\x09\x13\xd4\x08\x23\xd0\x24\x41\xd1\x08\x42\xd4\x08\x42\xd0\x08\x42\xdd\x0e\x1c\xd0\x1d\x48\xd1\x0e\x49\xd4\x0e\x49\xd0\x08\x49\xe0\x16\x1a\x80\x4f\xf0\x02\x06\x05\x20\xd8\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xf8\xdd\x0b\x14\xf0\x00\x02\x05\x4a\x01\xf0\x00\x02\x05\x4a\x01\xf0\x00\x02\x05\x4a\x01\xdd\x08\x12\xd4\x08\x23\xd0\x24\x41\xd1\x08\x42\xd4\x08\x42\xd0\x08\x42\xdd\x0e\x1c\xd0\x1d\x48\xd1\x0e\x49\xd4\x0e\x49\xd0\x08\x49\xf0\x05\x02\x05\x4a\x01\xf8\xf8\xf8\xf0\x03\x00\x09\x24\xf0\x0a\x00\x1b\x20\x88\x0f\x88\x0f\xf8\x98\x25\x88\x0f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xe5\x04\x0e\xd4\x04\x1f\xd0\x20\x3b\xd1\x04\x3c\xd4\x04\x3c\xd0\x04\x3c\xd8\x0b\x15\xd0\x04\x15", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +zipimport_toplevel_consts_23_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\xae\x06\x35\x00\xb4\x01\x41\x2a\x00\xb5\x2e\x41\x23\x03\xc1\x23\x03\x41\x2a\x00\xc1\x2a\x04\x41\x2e\x03", +}; +static + struct _PyCode_DEF(270) +zipimport_toplevel_consts_23 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 135, + }, + .co_consts = & zipimport_toplevel_consts_23_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = & zipimport_toplevel_consts_23_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 566, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_23_consts_5._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__get_decompress_func._ascii.ob_base, + .co_qualname = & const_str__get_decompress_func._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_23_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x23\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x03\x61\x00\x09\x00\x64\x04\x64\x05\x6c\x04\x6d\x05\x7d\x00\x01\x00\x6e\x31\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x06\x61\x00\x6e\x07\x23\x00\x64\x06\x61\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +zipimport_toplevel_consts_24_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "negative data size", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +zipimport_toplevel_consts_24_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "\x50\x4b\x03\x04", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +zipimport_toplevel_consts_24_consts_9 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bad local file header: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +zipimport_toplevel_consts_24_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zipimport: can't read data", +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_negative_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = -1, + }, + .ob_digit = { 15 }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +zipimport_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & zipimport_toplevel_consts_24_consts_2._ascii.ob_base, + & zipimport_toplevel_consts_21_consts_4._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 30], + & zipimport_toplevel_consts_21_consts_17._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], + & zipimport_toplevel_consts_24_consts_8.ob_base.ob_base, + & zipimport_toplevel_consts_24_consts_9._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 26], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 28], + & zipimport_toplevel_consts_24_consts_12._ascii.ob_base, + & zipimport_toplevel_consts_23_consts_2._ascii.ob_base, + & const_int_negative_15.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +zipimport_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_ZipImportError._ascii.ob_base, + & const_str__io._ascii.ob_base, + & const_str_open_code._ascii.ob_base, + &_Py_ID(seek), + & const_str_OSError._ascii.ob_base, + &_Py_ID(read), + &_Py_ID(len), + & const_str_EOFError._ascii.ob_base, + & const_str__unpack_uint16._ascii.ob_base, + & const_str__get_decompress_func._ascii.ob_base, + & const_str_Exception._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[632]; + } +zipimport_toplevel_consts_24_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 631, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x4d\x56\xd1\x04\x4a\x80\x48\x88\x68\x98\x09\xa0\x39\xa8\x6b\xb8\x34\xc0\x14\xc0\x73\xd8\x07\x10\x90\x31\x82\x7d\x80\x7d\xdd\x0e\x1c\xd0\x1d\x31\xd1\x0e\x32\xd4\x0e\x32\xd0\x08\x32\xe5\x09\x0c\x8c\x1d\x90\x77\xd1\x09\x1f\xd4\x09\x1f\xf0\x00\x18\x05\x38\xa0\x32\xf0\x04\x03\x09\x54\x01\xd8\x0c\x0e\x8f\x47\x8a\x47\x90\x4b\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xdd\x12\x20\xd0\x21\x44\xb8\x17\xd0\x21\x44\xd0\x21\x44\xc8\x37\xd0\x12\x53\xd1\x12\x53\xd4\x12\x53\xd0\x0c\x53\xf0\x03\x01\x09\x54\x01\xf8\xf8\xf8\xe0\x11\x13\x97\x17\x92\x17\x98\x12\x91\x1b\x94\x1b\x88\x06\xdd\x0b\x0e\x88\x76\x89\x3b\x8c\x3b\x98\x22\xd2\x0b\x1c\xd0\x0b\x1c\xdd\x12\x1a\xd0\x1b\x38\xd1\x12\x39\xd4\x12\x39\xd0\x0c\x39\xe0\x0b\x11\x90\x22\x90\x31\x90\x22\x8c\x3a\x98\x1d\xd2\x0b\x26\xd0\x0b\x26\xe5\x12\x20\xd0\x21\x46\xb8\x37\xd0\x21\x46\xd0\x21\x46\xc8\x57\xd0\x12\x55\xd1\x12\x55\xd4\x12\x55\xd0\x0c\x55\xe5\x14\x22\xa0\x36\xa8\x22\xa8\x52\xa8\x25\xa4\x3d\xd1\x14\x31\xd4\x14\x31\x88\x09\xdd\x15\x23\xa0\x46\xa8\x32\xa8\x62\xa8\x35\xa4\x4d\xd1\x15\x32\xd4\x15\x32\x88\x0a\xd8\x16\x18\x98\x39\x91\x6e\xa0\x7a\xd1\x16\x31\x88\x0b\xd8\x08\x13\x90\x7b\xd1\x08\x22\x88\x0b\xf0\x02\x03\x09\x54\x01\xd8\x0c\x0e\x8f\x47\x8a\x47\x90\x4b\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xdd\x12\x20\xd0\x21\x44\xb8\x17\xd0\x21\x44\xd0\x21\x44\xc8\x37\xd0\x12\x53\xd1\x12\x53\xd4\x12\x53\xd0\x0c\x53\xf0\x03\x01\x09\x54\x01\xf8\xf8\xf8\xe0\x13\x15\x97\x37\x92\x37\x98\x39\xd1\x13\x25\xd4\x13\x25\x88\x08\xdd\x0b\x0e\x88\x78\x89\x3d\x8c\x3d\x98\x49\xd2\x0b\x25\xd0\x0b\x25\xdd\x12\x19\xd0\x1a\x36\xd1\x12\x37\xd4\x12\x37\xd0\x0c\x37\xf0\x03\x00\x0c\x26\xf0\x2f\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf1\x00\x18\x05\x38\xf4\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf8\xf8\xf8\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x34\x00\x08\x10\x90\x31\x82\x7d\x80\x7d\xe0\x0f\x17\x88\x0f\xf0\x06\x03\x05\x4a\x01\xdd\x15\x29\xd1\x15\x2b\xd4\x15\x2b\x88\x0a\x88\x0a\xf8\xdd\x0b\x14\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xdd\x0e\x1c\xd0\x1d\x48\xd1\x0e\x49\xd4\x0e\x49\xd0\x08\x49\xf0\x03\x01\x05\x4a\x01\xf8\xf8\xf8\xe0\x0b\x15\x88\x3a\x90\x68\xa0\x03\xd1\x0b\x24\xd4\x0b\x24\xd0\x04\x24", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[78]; + } +zipimport_toplevel_consts_24_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 77, + }, + .ob_shash = -1, + .ob_sval = "\xb5\x01\x46\x00\x03\xb7\x15\x41\x0d\x02\xc1\x0c\x01\x46\x00\x03\xc1\x0d\x1f\x41\x2c\x05\xc1\x2c\x42\x17\x46\x00\x03\xc4\x04\x15\x44\x1a\x02\xc4\x19\x01\x46\x00\x03\xc4\x1a\x1f\x44\x39\x05\xc4\x39\x3a\x46\x00\x03\xc6\x00\x04\x46\x04\x07\xc6\x07\x01\x46\x04\x07\xc6\x14\x0e\x46\x23\x00\xc6\x23\x1a\x46\x3d\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_datapath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "datapath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_raw_data = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "raw_data", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +zipimport_toplevel_consts_24_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + & const_str_archive._ascii.ob_base, + & const_str_toc_entry._ascii.ob_base, + & const_str_datapath._ascii.ob_base, + & const_str_compress._ascii.ob_base, + & const_str_data_size._ascii.ob_base, + & const_str_file_size._ascii.ob_base, + & const_str_file_offset._ascii.ob_base, + & const_str_time._ascii.ob_base, + & const_str_date._ascii.ob_base, + & const_str_crc._ascii.ob_base, + & const_str_fp._ascii.ob_base, + &_Py_ID(buffer), + & const_str_name_size._ascii.ob_base, + & const_str_extra_size._ascii.ob_base, + & const_str_header_size._ascii.ob_base, + & const_str_raw_data._ascii.ob_base, + & const_str_decompress._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +zipimport_toplevel_consts_24_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(920) +zipimport_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 460, + }, + .co_consts = & zipimport_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = & zipimport_toplevel_consts_24_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 587, + .co_nlocalsplus = 17, + .co_nlocals = 17, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_24_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & zipimport_toplevel_consts_24_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__get_data._ascii.ob_base, + .co_qualname = & const_str__get_data._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_24_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x5c\x08\x00\x00\x7d\x02\x7d\x03\x7d\x04\x7d\x05\x7d\x06\x7d\x07\x7d\x08\x7d\x09\x7c\x04\x64\x01\x6b\x00\x00\x00\x00\x00\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x0a\x09\x00\x7c\x0a\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x22\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0a\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x0b\x64\x00\x64\x07\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x64\x0a\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x64\x0b\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x64\x05\x7c\x0c\x7a\x00\x00\x00\x7c\x0d\x7a\x00\x00\x00\x7d\x0e\x7c\x06\x7c\x0e\x7a\x0d\x00\x00\x7d\x06\x09\x00\x7c\x0a\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x22\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0a\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x03\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x0f\x53\x00\x09\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x10\x6e\x1d\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x10\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x7c\x10\x7c\x0f\x64\x0e\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_25_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_abs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abs", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +zipimport_toplevel_consts_25_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_abs._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__eq_mtime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_eq_mtime", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[24]; + } +zipimport_toplevel_consts_25_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 23, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x0e\x88\x72\x90\x42\x89\x77\x89\x3c\x8c\x3c\x98\x31\xd2\x0b\x1c\xd0\x04\x1c", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_t1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "t1", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_t2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "t2", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_25_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_t1._ascii.ob_base, + & const_str_t2._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(46) +zipimport_toplevel_consts_25 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 23, + }, + .co_consts = & zipimport_toplevel_consts_25_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_25_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 633, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_25_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__eq_mtime._ascii.ob_base, + .co_qualname = & const_str__eq_mtime._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_25_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7a\x0a\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x01\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +zipimport_toplevel_consts_26_consts_11 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "compiled module ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +zipimport_toplevel_consts_26_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " is not a code object", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +zipimport_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_external_toplevel_consts_46_consts_4._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & const_str_never._ascii.ob_base, + & const_str_always._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 12], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], + & importlib__bootstrap_external_toplevel_consts_44_consts_4._ascii.ob_base, + & zipimport_toplevel_consts_26_consts_11._ascii.ob_base, + & zipimport_toplevel_consts_26_consts_12._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__get_pyc_source = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_pyc_source", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +const_str__get_mtime_and_size_of_source = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_mtime_and_size_of_source", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[18]; + }_object; + } +zipimport_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 18, + }, + .ob_item = { + & const_str__bootstrap_external._ascii.ob_base, + & const_str__classify_pyc._ascii.ob_base, + & const_str__imp._ascii.ob_base, + & const_str_check_hash_based_pycs._ascii.ob_base, + & const_str__get_pyc_source._ascii.ob_base, + & const_str_source_hash._ascii.ob_base, + & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, + & const_str__validate_hash_pyc._ascii.ob_base, + & const_str__get_mtime_and_size_of_source._ascii.ob_base, + & const_str__eq_mtime._ascii.ob_base, + & const_str__unpack_uint32._ascii.ob_base, + &_Py_ID(_bootstrap), + & const_str__verbose_message._ascii.ob_base, + & const_str_marshal._ascii.ob_base, + & const_str_loads._ascii.ob_base, + &_Py_ID(isinstance), + & const_str__code_type._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__unmarshal_code = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_unmarshal_code", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[403]; + } +zipimport_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 402, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x10\x18\xd8\x10\x18\xf0\x05\x03\x13\x06\xf0\x00\x03\x13\x06\x80\x4b\xf5\x0a\x00\x0d\x20\xd4\x0c\x2d\xa8\x64\xb0\x48\xb8\x6b\xd1\x0c\x4a\xd4\x0c\x4a\x80\x45\xe0\x11\x16\x98\x13\x91\x1b\xa0\x01\xd2\x11\x21\x80\x4a\xd8\x07\x11\xf0\x00\x18\x05\x1c\xd8\x17\x1c\x98\x74\x91\x7c\xa0\x71\xd2\x17\x28\x88\x0c\xdd\x0c\x10\xd4\x0c\x26\xa8\x27\xd2\x0c\x31\xd0\x0c\x31\xd8\x11\x1d\xf0\x03\x00\x0d\x32\xdd\x21\x25\xd4\x21\x3b\xb8\x78\xd2\x21\x47\xd0\x21\x47\xdd\x1b\x2a\xa8\x34\xb0\x18\xd1\x1b\x3a\xd4\x1b\x3a\x88\x4c\xd8\x0f\x1b\xd0\x0f\x27\xdd\x1e\x22\xd4\x1e\x2e\xdd\x14\x27\xd4\x14\x39\xd8\x14\x20\xf1\x05\x03\x1f\x12\xf4\x00\x03\x1f\x12\x90\x0b\xf5\x0a\x00\x11\x24\xd4\x10\x36\xd8\x14\x18\x98\x2b\xa0\x78\xb0\x1b\xf1\x03\x01\x11\x3e\xf4\x00\x01\x11\x3e\xf0\x00\x01\x11\x3e\xf8\xf5\x08\x00\x0d\x2a\xa8\x24\xb0\x08\xd1\x0c\x39\xd4\x0c\x39\xf1\x03\x00\x09\x22\x88\x0c\x90\x6b\xf0\x06\x00\x0c\x18\xf0\x00\x07\x09\x1c\xf5\x06\x00\x15\x1e\x9d\x6e\xa8\x54\xb0\x21\xb0\x42\xb0\x24\xac\x5a\xd1\x1e\x38\xd4\x1e\x38\xb8\x2c\xd1\x14\x47\xd4\x14\x47\xf0\x00\x04\x0d\x1c\xdd\x14\x22\xa0\x34\xa8\x02\xa8\x32\xa8\x05\xa4\x3b\xd1\x14\x2f\xd4\x14\x2f\xb0\x3b\xd2\x14\x3e\xd0\x14\x3e\xdd\x10\x1a\xd4\x10\x2b\xd8\x14\x39\xa8\x58\xd0\x14\x39\xd0\x14\x39\xf1\x03\x01\x11\x3b\xf4\x00\x01\x11\x3b\xf0\x00\x01\x11\x3b\xe0\x17\x1b\x90\x74\xe5\x0b\x12\x8c\x3d\x98\x14\x98\x62\x98\x63\x98\x63\x9c\x19\xd1\x0b\x23\xd4\x0b\x23\x80\x44\xdd\x0b\x15\x90\x64\x9d\x4a\xd1\x0b\x27\xd4\x0b\x27\xf0\x00\x01\x05\x4e\x01\xdd\x0e\x17\xd0\x18\x4c\xa8\x38\xd0\x18\x4c\xd0\x18\x4c\xd0\x18\x4c\xd1\x0e\x4d\xd4\x0e\x4d\xd0\x08\x4d\xd8\x0b\x0f\x80\x4b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +zipimport_toplevel_consts_26_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_pathname._ascii.ob_base, + & const_str_fullpath._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_exc_details._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_hash_based._ascii.ob_base, + & const_str_check_source._ascii.ob_base, + & const_str_source_bytes._ascii.ob_base, + & const_str_source_hash._ascii.ob_base, + & const_str_source_mtime._ascii.ob_base, + & const_str_source_size._ascii.ob_base, + &_Py_ID(code), + }, + }, +}; +static + struct _PyCode_DEF(670) +zipimport_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 335, + }, + .co_consts = & zipimport_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 5, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 641, + .co_nlocalsplus = 14, + .co_nlocals = 14, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_7_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__unmarshal_code._ascii.ob_base, + .co_qualname = & const_str__unmarshal_code._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x03\x7c\x02\x64\x01\x9c\x02\x7d\x05\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x03\x7c\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x64\x02\x7a\x01\x00\x00\x64\x03\x6b\x03\x00\x00\x00\x00\x7d\x07\x7c\x07\x72\x74\x7c\x06\x64\x04\x7a\x01\x00\x00\x64\x03\x6b\x03\x00\x00\x00\x00\x7d\x08\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x03\x00\x00\x00\x00\x72\x5a\x7c\x08\x73\x10\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x48\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x09\x81\x36\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x0a\x7c\x03\x7c\x05\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x6e\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x0b\x7d\x0c\x7c\x0b\x72\x59\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x07\x64\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x08\x64\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0c\x6b\x03\x00\x00\x00\x00\x72\x19\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x7c\x03\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x09\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x13\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x7c\x01\x9b\x02\x64\x0c\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x0d\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +zipimport_toplevel_consts_27_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_external_toplevel_consts_29.ob_base.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[10]), + (PyObject *)&_Py_SINGLETON(bytes_characters[13]), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +zipimport_toplevel_consts_27_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(replace), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +const_str__normalize_line_endings = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_normalize_line_endings", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[46]; + } +zipimport_toplevel_consts_27_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 45, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0d\x13\x8f\x5e\x8a\x5e\x98\x47\xa0\x55\xd1\x0d\x2b\xd4\x0d\x2b\x80\x46\xd8\x0d\x13\x8f\x5e\x8a\x5e\x98\x45\xa0\x35\xd1\x0d\x29\xd4\x0d\x29\x80\x46\xd8\x0b\x11\x80\x4d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +zipimport_toplevel_consts_27_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_source._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(94) +zipimport_toplevel_consts_27 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 47, + }, + .co_consts = & zipimport_toplevel_consts_27_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_27_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 686, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__normalize_line_endings._ascii.ob_base, + .co_qualname = & const_str__normalize_line_endings._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_27_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +zipimport_toplevel_consts_28_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + & const_str_exec._ascii.ob_base, + Py_True, + & importlib__bootstrap_external_toplevel_consts_69_consts_5_consts_5._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_28_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__normalize_line_endings._ascii.ob_base, + & const_str_compile._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__compile_source = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_compile_source", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[39]; + } +zipimport_toplevel_consts_28_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 38, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0d\x24\xa0\x56\xd1\x0d\x2c\xd4\x0d\x2c\x80\x46\xdd\x0b\x12\x90\x36\x98\x38\xa0\x56\xb8\x24\xd0\x0b\x3f\xd1\x0b\x3f\xd4\x0b\x3f\xd0\x04\x3f", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_28_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_pathname._ascii.ob_base, + & const_str_source._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(70) +zipimport_toplevel_consts_28 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 35, + }, + .co_consts = & zipimport_toplevel_consts_28_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_28_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 693, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_28_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__compile_source._ascii.ob_base, + .co_qualname = & const_str__compile_source._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_28_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x64\x01\x64\x02\xac\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_1980 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 1980 }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +zipimport_toplevel_consts_29_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 9], + & const_int_1980.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 15], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 31], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 11], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 63], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_mktime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mktime", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_29_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_time._ascii.ob_base, + & const_str_mktime._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__parse_dostime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_parse_dostime", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[93]; + } +zipimport_toplevel_consts_29_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 92, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0b\x0f\x8c\x3b\xd8\x09\x0a\x88\x61\x89\x16\x90\x34\x89\x0f\xd8\x09\x0a\x88\x61\x89\x16\x90\x33\x89\x0e\xd8\x08\x09\x88\x44\x89\x08\xd8\x08\x09\x88\x52\x89\x07\xd8\x09\x0a\x88\x61\x89\x16\x90\x34\x89\x0f\xd8\x09\x0a\x88\x54\x89\x18\x90\x51\x89\x0e\xd8\x08\x0a\x88\x42\x90\x02\xf0\x0f\x07\x18\x14\xf1\x00\x07\x0c\x15\xf4\x00\x07\x0c\x15\xf0\x00\x07\x05\x15", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_d = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_29_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_d._ascii.ob_base, + & const_str_t._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(120) +zipimport_toplevel_consts_29 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 60, + }, + .co_consts = & zipimport_toplevel_consts_29_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_29_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 11, + .co_firstlineno = 699, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_29_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__parse_dostime._ascii.ob_base, + .co_qualname = & const_str__parse_dostime._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_29_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x7a\x09\x00\x00\x64\x02\x7a\x00\x00\x00\x7c\x00\x64\x03\x7a\x09\x00\x00\x64\x04\x7a\x01\x00\x00\x7c\x00\x64\x05\x7a\x01\x00\x00\x7c\x01\x64\x06\x7a\x09\x00\x00\x7c\x01\x64\x03\x7a\x09\x00\x00\x64\x07\x7a\x01\x00\x00\x7c\x01\x64\x05\x7a\x01\x00\x00\x64\x08\x7a\x05\x00\x00\x64\x09\x64\x09\x64\x09\x66\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_c = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "c", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_o = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "o", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +zipimport_toplevel_consts_30_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_c._ascii.ob_base, + & const_str_o._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +zipimport_toplevel_consts_30_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & zipimport_toplevel_consts_30_consts_2._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 6], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + & importlib__bootstrap_external_toplevel_consts_82._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_IndexError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IndexError", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +zipimport_toplevel_consts_30_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__files._ascii.ob_base, + & const_str__parse_dostime._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + & const_str_IndexError._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[151]; + } +zipimport_toplevel_consts_30_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 150, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x0c\x05\x14\xe0\x0f\x13\x90\x42\x90\x43\x90\x43\x8c\x79\x98\x4a\xd0\x0f\x26\xd0\x0f\x26\xd0\x0f\x26\xd0\x0f\x26\xd8\x0f\x13\x90\x43\x90\x52\x90\x43\x8c\x79\x88\x04\xd8\x14\x18\x94\x4b\xa0\x04\xd4\x14\x25\x88\x09\xf0\x06\x00\x10\x19\x98\x11\x8c\x7c\x88\x04\xd8\x0f\x18\x98\x11\x8c\x7c\x88\x04\xd8\x1c\x25\xa0\x61\x9c\x4c\xd0\x08\x19\xdd\x0f\x1d\x98\x64\xa0\x44\xd1\x0f\x29\xd4\x0f\x29\xd0\x2b\x3c\xd0\x0f\x3c\xd0\x08\x3c\xf8\xdd\x0c\x14\x95\x6a\xa5\x29\xd0\x0b\x2c\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\x88\x74\xf0\x03\x01\x05\x14\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +zipimport_toplevel_consts_30_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\x82\x41\x0e\x41\x11\x00\xc1\x11\x17\x41\x2c\x03\xc1\x2b\x01\x41\x2c\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_uncompressed_size = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "uncompressed_size", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +zipimport_toplevel_consts_30_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(path), + & const_str_toc_entry._ascii.ob_base, + & const_str_time._ascii.ob_base, + & const_str_date._ascii.ob_base, + & const_str_uncompressed_size._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(222) +zipimport_toplevel_consts_30 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 111, + }, + .co_consts = & zipimport_toplevel_consts_30_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_30_names._object.ob_base.ob_base, + .co_exceptiontable = & zipimport_toplevel_consts_30_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 712, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_30_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__get_mtime_and_size_of_source._ascii.ob_base, + .co_qualname = & const_str__get_mtime_and_size_of_source._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_30_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x01\x64\x01\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x76\x00\x73\x02\x4a\x00\x82\x01\x7c\x01\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x02\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x66\x02\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x04\x01\x00\x59\x00\x64\x06\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_31_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & zipimport_toplevel_consts_30_consts_2._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +zipimport_toplevel_consts_31_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__files._ascii.ob_base, + & const_str__get_data._ascii.ob_base, + & const_str_archive._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[114]; + } +zipimport_toplevel_consts_31_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 113, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0f\x90\x02\x90\x03\x90\x03\x8c\x39\x98\x0a\xd0\x0b\x22\xd0\x0b\x22\xd0\x0b\x22\xd0\x0b\x22\xd8\x0b\x0f\x90\x03\x90\x12\x90\x03\x8c\x39\x80\x44\xf0\x04\x05\x05\x32\xd8\x14\x18\x94\x4b\xa0\x04\xd4\x14\x25\x88\x09\xf5\x08\x00\x10\x19\x98\x14\x9c\x1c\xa0\x79\xd1\x0f\x31\xd4\x0f\x31\xd0\x08\x31\xf8\xf5\x07\x00\x0c\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\x88\x74\xf0\x03\x01\x05\x14\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +zipimport_toplevel_consts_31_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x9a\x0d\x3c\x00\xbc\x0a\x41\x0a\x03\xc1\x09\x01\x41\x0a\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +zipimport_toplevel_consts_31_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(path), + & const_str_toc_entry._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(154) +zipimport_toplevel_consts_31 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 77, + }, + .co_consts = & zipimport_toplevel_consts_31_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_31_names._object.ob_base.ob_base, + .co_exceptiontable = & zipimport_toplevel_consts_31_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 731, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__get_pyc_source._ascii.ob_base, + .co_qualname = & const_str__get_pyc_source._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_31_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x76\x00\x73\x02\x4a\x00\x82\x01\x7c\x01\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +zipimport_toplevel_consts_32_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "trying {}{}{}", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +zipimport_toplevel_consts_32_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module load failed: ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +zipimport_toplevel_consts_32_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + Py_None, + & zipimport_toplevel_consts_32_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & importlib__bootstrap_toplevel_consts_17._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & zipimport_toplevel_consts_32_consts_5._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + & zipimport_toplevel_consts_11_consts_10_consts_2._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +zipimport_toplevel_consts_32_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str__get_module_path._ascii.ob_base, + & const_str__zip_searchorder._ascii.ob_base, + &_Py_ID(_bootstrap), + & const_str__verbose_message._ascii.ob_base, + & const_str_archive._ascii.ob_base, + & const_str_path_sep._ascii.ob_base, + & const_str__files._ascii.ob_base, + & const_str__get_data._ascii.ob_base, + & const_str__unmarshal_code._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str__compile_source._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + & const_str_ZipImportError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[381]; + } +zipimport_toplevel_consts_32_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 380, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0b\x1b\x98\x44\xa0\x28\xd1\x0b\x2b\xd4\x0b\x2b\x80\x44\xd8\x13\x17\x80\x4c\xdd\x29\x39\xf0\x00\x1d\x05\x53\x01\xf0\x00\x1d\x05\x53\x01\xd1\x08\x25\x88\x06\x90\x0a\x98\x49\xd8\x13\x17\x98\x26\x91\x3d\x88\x08\xdd\x08\x12\xd4\x08\x23\xa0\x4f\xb0\x54\xb4\x5c\xc5\x38\xc8\x58\xd0\x61\x62\xd0\x08\x63\xd1\x08\x63\xd4\x08\x63\xd0\x08\x63\xf0\x02\x14\x09\x2c\xd8\x18\x1c\x9c\x0b\xa0\x48\xd4\x18\x2d\x88\x49\xf0\x08\x00\x17\x20\xa0\x01\x94\x6c\x88\x47\xdd\x13\x1c\x98\x54\x9c\x5c\xa8\x39\xd1\x13\x35\xd4\x13\x35\x88\x44\xd8\x13\x17\x88\x44\xd8\x0f\x19\xf0\x00\x06\x0d\x36\xf0\x02\x03\x11\x27\xdd\x1b\x2a\xa8\x34\xb0\x17\xb8\x28\xc0\x48\xc8\x64\xd1\x1b\x53\xd4\x1b\x53\x90\x44\x90\x44\xf8\xdd\x17\x22\xf0\x00\x01\x11\x27\xf0\x00\x01\x11\x27\xf0\x00\x01\x11\x27\xd8\x23\x26\x90\x4c\x90\x4c\x90\x4c\x90\x4c\x90\x4c\x90\x4c\xf8\xf8\xf8\xf8\xf0\x03\x01\x11\x27\xf8\xf8\xf8\xf5\x06\x00\x18\x27\xa0\x77\xb0\x04\xd1\x17\x35\xd4\x17\x35\x90\x04\xd8\x0f\x13\x88\x7c\xf0\x06\x00\x11\x19\xd8\x16\x1f\xa0\x01\x94\x6c\x88\x47\xd8\x13\x17\x98\x19\xa0\x47\xd0\x13\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xf8\xf5\x25\x00\x10\x18\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x28\x00\x0c\x18\xf0\x00\x04\x09\x53\x01\xd8\x12\x37\xa8\x1c\xd0\x12\x37\xd0\x12\x37\x88\x43\xdd\x12\x20\xa0\x13\xa8\x38\xd0\x12\x34\xd1\x12\x34\xd4\x12\x34\xb8\x2c\xd0\x0c\x46\xe5\x12\x20\xd0\x21\x42\xb0\x68\xd0\x21\x42\xd0\x21\x42\xc8\x18\xd0\x12\x52\xd1\x12\x52\xd4\x12\x52\xd0\x0c\x52", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[43]; + } +zipimport_toplevel_consts_32_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 42, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x09\x0d\x43\x07\x02\xc1\x38\x13\x42\x0c\x02\xc2\x0c\x0a\x42\x22\x05\xc2\x16\x02\x42\x1d\x05\xc2\x1d\x05\x42\x22\x05\xc3\x07\x0a\x43\x14\x05\xc3\x13\x01\x43\x14\x05", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_import_error = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "import_error", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +zipimport_toplevel_consts_32_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + &_Py_ID(path), + & const_str_import_error._ascii.ob_base, + & const_str_suffix._ascii.ob_base, + & const_str_isbytecode._ascii.ob_base, + & const_str_ispackage._ascii.ob_base, + & const_str_fullpath._ascii.ob_base, + & const_str_toc_entry._ascii.ob_base, + & const_str_modpath._ascii.ob_base, + & const_str_data._ascii.ob_base, + &_Py_ID(code), + & const_str_exc._ascii.ob_base, + &_Py_ID(msg), + }, + }, +}; +static + struct _PyCode_DEF(520) +zipimport_toplevel_consts_32 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 260, + }, + .co_consts = & zipimport_toplevel_consts_32_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_consts_32_names._object.ob_base.ob_base, + .co_exceptiontable = & zipimport_toplevel_consts_32_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 746, + .co_nlocalsplus = 14, + .co_nlocals = 14, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & zipimport_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_7_localspluskinds.ob_base.ob_base, + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = & const_str__get_module_code._ascii.ob_base, + .co_qualname = & const_str__get_module_code._ascii.ob_base, + .co_linetable = & zipimport_toplevel_consts_32_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x00\x7d\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\xbc\x5c\x03\x00\x00\x7d\x04\x7d\x05\x7d\x06\x7c\x02\x7c\x04\x7a\x00\x00\x00\x7d\x07\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x64\x02\xac\x03\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x64\x00\x7d\x0b\x7c\x05\x72\x2e\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x09\x7c\x07\x7c\x01\x7c\x0a\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x6e\x29\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0c\x7d\x0c\x7c\x0c\x7d\x03\x59\x00\x64\x00\x7d\x0c\x7e\x0c\x6e\x18\x64\x00\x7d\x0c\x7e\x0c\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x0a\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x0b\x80\x01\x8c\x9e\x7c\x08\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x0b\x7c\x06\x7c\x09\x66\x03\x63\x02\x01\x00\x53\x00\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x8c\xb9\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x72\x17\x64\x05\x7c\x03\x9b\x00\x9d\x02\x7d\x0d\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x7c\x01\xac\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x82\x02\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x01\x9b\x02\x9d\x02\x7c\x01\xac\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[33]; + }_object; + } +zipimport_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 33, + }, + .ob_item = { + & zipimport_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & zipimport_toplevel_consts_3._object.ob_base.ob_base, + & const_str_ZipImportError._ascii.ob_base, + &_Py_ID(zipimporter), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & zipimport_toplevel_consts_7.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 22], + & zipimport_toplevel_consts_9.ob_base.ob_base, + & const_int_65535.ob_base.ob_base, + & zipimport_toplevel_consts_11.ob_base.ob_base, + & zipimport_toplevel_consts_12._ascii.ob_base, + Py_True, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_11._ascii.ob_base, + Py_False, + & zipimport_toplevel_consts_16._object.ob_base.ob_base, + & zipimport_toplevel_consts_17._object.ob_base.ob_base, + & zipimport_toplevel_consts_18.ob_base.ob_base, + & zipimport_toplevel_consts_19.ob_base.ob_base, + & zipimport_toplevel_consts_20.ob_base.ob_base, + & zipimport_toplevel_consts_21.ob_base.ob_base, + & zipimport_toplevel_consts_22._compact._base.ob_base, + & zipimport_toplevel_consts_23.ob_base.ob_base, + & zipimport_toplevel_consts_24.ob_base.ob_base, + & zipimport_toplevel_consts_25.ob_base.ob_base, + & zipimport_toplevel_consts_26.ob_base.ob_base, + & zipimport_toplevel_consts_27.ob_base.ob_base, + & zipimport_toplevel_consts_28.ob_base.ob_base, + & zipimport_toplevel_consts_29.ob_base.ob_base, + & zipimport_toplevel_consts_30.ob_base.ob_base, + & zipimport_toplevel_consts_31.ob_base.ob_base, + & zipimport_toplevel_consts_32.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__frozen_importlib = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_frozen_importlib", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[46]; + }_object; + } +zipimport_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 46, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str__frozen_importlib_external._ascii.ob_base, + & const_str__bootstrap_external._ascii.ob_base, + & const_str__unpack_uint16._ascii.ob_base, + & const_str__unpack_uint32._ascii.ob_base, + & const_str__frozen_importlib._ascii.ob_base, + &_Py_ID(_bootstrap), + & const_str__imp._ascii.ob_base, + & const_str__io._ascii.ob_base, + & const_str_marshal._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_time._ascii.ob_base, + & const_str__warnings._ascii.ob_base, + &_Py_ID(__all__), + & const_str_path_sep._ascii.ob_base, + & const_str_path_separators._ascii.ob_base, + & const_str_alt_path_sep._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_ZipImportError._ascii.ob_base, + & const_str__zip_directory_cache._ascii.ob_base, + & const_str_type._ascii.ob_base, + & const_str__module_type._ascii.ob_base, + & const_str_END_CENTRAL_DIR_SIZE._ascii.ob_base, + & const_str_STRING_END_ARCHIVE._ascii.ob_base, + & const_str_MAX_COMMENT_LEN._ascii.ob_base, + & const_str__LoaderBasics._ascii.ob_base, + &_Py_ID(zipimporter), + & const_str__zip_searchorder._ascii.ob_base, + & const_str__get_module_path._ascii.ob_base, + & const_str__is_dir._ascii.ob_base, + & const_str__get_module_info._ascii.ob_base, + & const_str__read_directory._ascii.ob_base, + & const_str_cp437_table._ascii.ob_base, + & const_str__importing_zlib._ascii.ob_base, + & const_str__get_decompress_func._ascii.ob_base, + & const_str__get_data._ascii.ob_base, + & const_str__eq_mtime._ascii.ob_base, + & const_str__unmarshal_code._ascii.ob_base, + & const_str___code__._ascii.ob_base, + & const_str__code_type._ascii.ob_base, + & const_str__normalize_line_endings._ascii.ob_base, + & const_str__compile_source._ascii.ob_base, + & const_str__parse_dostime._ascii.ob_base, + & const_str__get_mtime_and_size_of_source._ascii.ob_base, + & const_str__get_pyc_source._ascii.ob_base, + & const_str__get_module_code._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[620]; + } +zipimport_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 619, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x0c\x01\x04\xf0\x00\x0c\x01\x04\xf0\x20\x00\x01\x39\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xd8\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd8\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0e\x80\x0e\x80\x0e\x80\x0e\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x10\xd0\x00\x10\xd0\x00\x10\xd0\x00\x10\xe0\x0b\x1b\x98\x5d\xd0\x0a\x2b\x80\x07\xf0\x06\x00\x0c\x1f\xd4\x0b\x27\x80\x08\xd8\x0f\x22\xd4\x0f\x32\xb0\x31\xb0\x32\xb0\x32\xd4\x0f\x36\x80\x0c\xf0\x06\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\x90\x5b\xf1\x00\x01\x01\x09\xf4\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x08\x00\x18\x1a\xd0\x00\x14\xe0\x0f\x13\x88\x74\x90\x43\x89\x79\x8c\x79\x80\x0c\xe0\x17\x19\xd0\x00\x14\xd8\x15\x22\xd0\x00\x12\xd8\x12\x1f\x80\x0f\xf0\x04\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xd0\x12\x25\xd4\x12\x33\xf1\x00\x66\x04\x01\x4f\x01\xf4\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x5e\x09\x00\x06\x0e\x90\x0e\xd1\x05\x1e\xa0\x04\xa0\x64\xd0\x04\x2b\xd8\x05\x0d\x90\x0d\xd1\x05\x1d\x98\x75\xa0\x64\xd0\x04\x2b\xd8\x04\x19\xd8\x04\x19\xf0\x09\x05\x14\x02\xd0\x00\x10\xf0\x12\x01\x01\x35\xf0\x00\x01\x01\x35\xf0\x00\x01\x01\x35\xf0\x08\x06\x01\x22\xf0\x00\x06\x01\x22\xf0\x00\x06\x01\x22\xf0\x12\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x3e\x7b\x01\x01\x11\xf0\x00\x7b\x01\x01\x11\xf0\x00\x7b\x01\x01\x11\xf0\x4a\x04\x18\x05\x2f\xf0\x05\x00\x01\x0c\xf0\x3a\x00\x13\x18\x80\x0f\xf0\x0a\x12\x01\x16\xf0\x00\x12\x01\x16\xf0\x00\x12\x01\x16\xf0\x2a\x28\x01\x25\xf0\x00\x28\x01\x25\xf0\x00\x28\x01\x25\xf0\x5c\x01\x02\x01\x1d\xf0\x00\x02\x01\x1d\xf0\x00\x02\x01\x1d\xf0\x10\x26\x01\x10\xf0\x00\x26\x01\x10\xf0\x00\x26\x01\x10\xf0\x50\x01\x00\x0e\x12\x88\x54\x90\x2f\xd4\x12\x2a\xd1\x0d\x2b\xd4\x0d\x2b\x80\x0a\xf0\x0a\x03\x01\x12\xf0\x00\x03\x01\x12\xf0\x00\x03\x01\x12\xf0\x0e\x02\x01\x40\x01\xf0\x00\x02\x01\x40\x01\xf0\x00\x02\x01\x40\x01\xf0\x0c\x08\x01\x15\xf0\x00\x08\x01\x15\xf0\x00\x08\x01\x15\xf0\x1a\x0d\x01\x14\xf0\x00\x0d\x01\x14\xf0\x00\x0d\x01\x14\xf0\x26\x0a\x01\x32\xf0\x00\x0a\x01\x32\xf0\x00\x0a\x01\x32\xf0\x1e\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01", +}; +static + struct _PyCode_DEF(406) +zipimport_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 203, + }, + .co_consts = & zipimport_toplevel_consts._object.ob_base.ob_base, + .co_names = & zipimport_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & zipimport_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x02\x64\x01\x64\x03\x6c\x01\x6d\x03\x5a\x03\x6d\x04\x5a\x04\x01\x00\x64\x01\x64\x02\x6c\x05\x5a\x06\x64\x01\x64\x02\x6c\x07\x5a\x07\x64\x01\x64\x02\x6c\x08\x5a\x08\x64\x01\x64\x02\x6c\x09\x5a\x09\x64\x01\x64\x02\x6c\x0a\x5a\x0a\x64\x01\x64\x02\x6c\x0b\x5a\x0b\x64\x01\x64\x02\x6c\x0c\x5a\x0c\x64\x04\x64\x05\x67\x02\x5a\x0d\x65\x02\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0e\x65\x02\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x10\x02\x00\x47\x00\x64\x07\x84\x00\x64\x04\x65\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x12\x69\x00\x5a\x13\x02\x00\x65\x14\x65\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x15\x64\x08\x5a\x16\x64\x09\x5a\x17\x64\x0a\x5a\x18\x02\x00\x47\x00\x64\x0b\x84\x00\x64\x05\x65\x02\x6a\x19\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1a\x65\x0e\x64\x0c\x7a\x00\x00\x00\x64\x0d\x64\x0d\x66\x03\x65\x0e\x64\x0e\x7a\x00\x00\x00\x64\x0f\x64\x0d\x66\x03\x64\x10\x64\x11\x66\x04\x5a\x1b\x64\x12\x84\x00\x5a\x1c\x64\x13\x84\x00\x5a\x1d\x64\x14\x84\x00\x5a\x1e\x64\x15\x84\x00\x5a\x1f\x64\x16\x5a\x20\x64\x0f\x61\x21\x64\x17\x84\x00\x5a\x22\x64\x18\x84\x00\x5a\x23\x64\x19\x84\x00\x5a\x24\x64\x1a\x84\x00\x5a\x25\x02\x00\x65\x14\x65\x25\x6a\x26\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x27\x64\x1b\x84\x00\x5a\x28\x64\x1c\x84\x00\x5a\x29\x64\x1d\x84\x00\x5a\x2a\x64\x1e\x84\x00\x5a\x2b\x64\x1f\x84\x00\x5a\x2c\x64\x20\x84\x00\x5a\x2d\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void zipimport_do_patchups(void) { + if (sizeof(wchar_t) == 2) { + zipimport_toplevel_consts_22._compact._base.wstr = (wchar_t *) zipimport_toplevel_consts_22._data; + zipimport_toplevel_consts_22._compact.wstr_length = 256; + } +} + +PyObject * +_Py_get_zipimport_toplevel(void) +{ + zipimport_do_patchups(); + return Py_NewRef((PyObject *) &zipimport_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[52]; + } +abc_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 51, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Abstract Base Classes (ABCs) according to PEP 3119.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[586]; + } +abc_toplevel_consts_1_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 585, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x0a\x20\x20\x20\x20\x52\x65\x71\x75\x69\x72\x65\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x69\x73\x20\x41\x42\x43\x4d\x65\x74\x61\x20\x6f\x72\x20\x64\x65\x72\x69\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x69\x74\x2e\x20\x20\x41\x0a\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x74\x68\x61\x74\x20\x68\x61\x73\x20\x61\x20\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x64\x65\x72\x69\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x41\x42\x43\x4d\x65\x74\x61\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x0a\x20\x20\x20\x20\x69\x6e\x73\x74\x61\x6e\x74\x69\x61\x74\x65\x64\x20\x75\x6e\x6c\x65\x73\x73\x20\x61\x6c\x6c\x20\x6f\x66\x20\x69\x74\x73\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x61\x72\x65\x20\x6f\x76\x65\x72\x72\x69\x64\x64\x65\x6e\x2e\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x63\x61\x6c\x6c\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x79\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x0a\x20\x20\x20\x20\x27\x73\x75\x70\x65\x72\x27\x20\x63\x61\x6c\x6c\x20\x6d\x65\x63\x68\x61\x6e\x69\x73\x6d\x73\x2e\x20\x20\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x28\x29\x20\x6d\x61\x79\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x64\x65\x63\x6c\x61\x72\x65\x0a\x20\x20\x20\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73\x20\x61\x6e\x64\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x55\x73\x61\x67\x65\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x3d\x41\x42\x43\x4d\x65\x74\x61\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x6d\x65\x74\x68\x6f\x64\x28\x73\x65\x6c\x66\x2c\x20\x61\x72\x67\x31\x2c\x20\x61\x72\x67\x32\x2c\x20\x61\x72\x67\x4e\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +abc_toplevel_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & abc_toplevel_consts_1_consts_0._ascii.ob_base, + Py_True, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(__isabstractmethod__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +abc_toplevel_consts_1_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_abstractmethod = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abstractmethod", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +abc_toplevel_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x22\x00\x24\x28\x80\x47\xd4\x04\x20\xd8\x0b\x12\x80\x4e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_funcobj = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "funcobj", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_funcobj._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(20) +abc_toplevel_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & abc_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 7, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_abstractmethod._ascii.ob_base, + .co_qualname = & const_str_abstractmethod._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str_abstractclassmethod = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abstractclassmethod", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[265]; + } +abc_toplevel_consts_2_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 264, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2c\x20\x75\x73\x65\x20\x27\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x27\x20\x77\x69\x74\x68\x20\x27\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x27\x20\x69\x6e\x73\x74\x65\x61\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x41\x42\x43\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x28\x63\x6c\x73\x2c\x20\x2e\x2e\x2e\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +abc_toplevel_consts_2_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(__isabstractmethod__), + & const_str_super._ascii.ob_base, + &_Py_ID(__init__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +abc_toplevel_consts_2_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abstractclassmethod.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[42]; + } +abc_toplevel_consts_2_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 41, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd8\x28\x2c\x88\x08\xd4\x08\x25\xdd\x08\x0d\x89\x07\x8c\x07\xd7\x08\x18\xd2\x08\x18\x98\x18\xd1\x08\x22\xd4\x08\x22\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_callable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "callable", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +abc_toplevel_consts_2_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_callable._ascii.ob_base, + &_Py_ID(__class__), + }, + }, +}; +static + struct _PyCode_DEF(88) +abc_toplevel_consts_2_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 44, + }, + .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_2_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 43, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & abc_toplevel_consts_2_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & abc_toplevel_consts_2_consts_3_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_2_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x64\x01\x7c\x01\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +abc_toplevel_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_abstractclassmethod._ascii.ob_base, + & abc_toplevel_consts_2_consts_1._ascii.ob_base, + Py_True, + & abc_toplevel_consts_2_consts_3.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +abc_toplevel_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__isabstractmethod__), + &_Py_ID(__init__), + &_Py_ID(__classcell__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[75]; + } +abc_toplevel_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 74, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0a\x05\x08\xf0\x00\x0a\x05\x08\xf0\x18\x00\x1c\x20\xd0\x04\x18\xf0\x04\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23", +}; +static + struct _PyCode_DEF(38) +abc_toplevel_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & abc_toplevel_consts_2_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 28, + .co_nlocalsplus = 1, + .co_nlocals = 0, + .co_nplaincellvars = 1, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_abstractclassmethod._ascii.ob_base, + .co_qualname = & const_str_abstractclassmethod._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x88\x00\x66\x01\x64\x03\x84\x08\x5a\x05\x88\x00\x78\x01\x5a\x06\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str_abstractstaticmethod = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abstractstaticmethod", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[264]; + } +abc_toplevel_consts_4_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 263, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2c\x20\x75\x73\x65\x20\x27\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x27\x20\x77\x69\x74\x68\x20\x27\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x27\x20\x69\x6e\x73\x74\x65\x61\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x41\x42\x43\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x28\x2e\x2e\x2e\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +abc_toplevel_consts_4_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abstractstaticmethod.__init__", +}; +static + struct _PyCode_DEF(88) +abc_toplevel_consts_4_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 44, + }, + .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_2_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 63, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & abc_toplevel_consts_2_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & abc_toplevel_consts_4_consts_3_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_2_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x64\x01\x7c\x01\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +abc_toplevel_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_abstractstaticmethod._ascii.ob_base, + & abc_toplevel_consts_4_consts_1._ascii.ob_base, + Py_True, + & abc_toplevel_consts_4_consts_3.ob_base.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(38) +abc_toplevel_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & abc_toplevel_consts_4_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 48, + .co_nlocalsplus = 1, + .co_nlocals = 0, + .co_nplaincellvars = 1, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_abstractstaticmethod._ascii.ob_base, + .co_qualname = & const_str_abstractstaticmethod._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x88\x00\x66\x01\x64\x03\x84\x08\x5a\x05\x88\x00\x78\x01\x5a\x06\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_abstractproperty = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abstractproperty", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[250]; + } +abc_toplevel_consts_6_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 249, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2c\x20\x75\x73\x65\x20\x27\x70\x72\x6f\x70\x65\x72\x74\x79\x27\x20\x77\x69\x74\x68\x20\x27\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x27\x20\x69\x6e\x73\x74\x65\x61\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x41\x42\x43\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x70\x72\x6f\x70\x65\x72\x74\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x70\x72\x6f\x70\x65\x72\x74\x79\x28\x73\x65\x6c\x66\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +abc_toplevel_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_abstractproperty._ascii.ob_base, + & abc_toplevel_consts_6_consts_1._ascii.ob_base, + Py_True, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +abc_toplevel_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__isabstractmethod__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[35]; + } +abc_toplevel_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 34, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0a\x05\x08\xf0\x00\x0a\x05\x08\xf0\x18\x00\x1c\x20\xd0\x04\x18\xd0\x04\x18\xd0\x04\x18", +}; +static + struct _PyCode_DEF(22) +abc_toplevel_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 11, + }, + .co_consts = & abc_toplevel_consts_6_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 68, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_abstractproperty._ascii.ob_base, + .co_qualname = & const_str_abstractproperty._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_get_cache_token = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "get_cache_token", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__abc_init = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_init", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__abc_register = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_register", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str__abc_instancecheck = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_instancecheck", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str__abc_subclasscheck = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_subclasscheck", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__get_dump = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_dump", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__reset_registry = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_reset_registry", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__reset_caches = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_reset_caches", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +abc_toplevel_consts_9 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_get_cache_token._ascii.ob_base, + & const_str__abc_init._ascii.ob_base, + & const_str__abc_register._ascii.ob_base, + & const_str__abc_instancecheck._ascii.ob_base, + & const_str__abc_subclasscheck._ascii.ob_base, + & const_str__get_dump._ascii.ob_base, + & const_str__reset_registry._ascii.ob_base, + & const_str__reset_caches._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_ABCMeta = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[657]; + } +abc_toplevel_consts_10_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 656, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x4d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x66\x6f\x72\x20\x64\x65\x66\x69\x6e\x69\x6e\x67\x20\x41\x62\x73\x74\x72\x61\x63\x74\x20\x42\x61\x73\x65\x20\x43\x6c\x61\x73\x73\x65\x73\x20\x28\x41\x42\x43\x73\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x55\x73\x65\x20\x74\x68\x69\x73\x20\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x41\x42\x43\x2e\x20\x20\x41\x6e\x20\x41\x42\x43\x20\x63\x61\x6e\x20\x62\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x61\x63\x74\x73\x20\x61\x73\x20\x61\x20\x6d\x69\x78\x2d\x69\x6e\x20\x63\x6c\x61\x73\x73\x2e\x20\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x61\x6c\x73\x6f\x20\x72\x65\x67\x69\x73\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x75\x6e\x72\x65\x6c\x61\x74\x65\x64\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x63\x6c\x61\x73\x73\x65\x73\x20\x28\x65\x76\x65\x6e\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x20\x63\x6c\x61\x73\x73\x65\x73\x29\x20\x61\x6e\x64\x20\x75\x6e\x72\x65\x6c\x61\x74\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x41\x42\x43\x73\x20\x61\x73\x20\x27\x76\x69\x72\x74\x75\x61\x6c\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x27\x20\x2d\x2d\x20\x74\x68\x65\x73\x65\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x64\x65\x73\x63\x65\x6e\x64\x61\x6e\x74\x73\x20\x77\x69\x6c\x6c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x41\x42\x43\x20\x62\x79\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x73\x73\x75\x62\x63\x6c\x61\x73\x73\x28\x29\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2c\x20\x62\x75\x74\x20\x74\x68\x65\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x41\x42\x43\x20\x77\x6f\x6e\x27\x74\x20\x73\x68\x6f\x77\x20\x75\x70\x20\x69\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x68\x65\x69\x72\x20\x4d\x52\x4f\x20\x28\x4d\x65\x74\x68\x6f\x64\x20\x52\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x20\x4f\x72\x64\x65\x72\x29\x20\x6e\x6f\x72\x20\x77\x69\x6c\x6c\x20\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x41\x42\x43\x20\x62\x65\x20\x63\x61\x6c\x6c\x61\x62\x6c\x65\x20\x28\x6e\x6f\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x76\x65\x6e\x20\x76\x69\x61\x20\x73\x75\x70\x65\x72\x28\x29\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +abc_toplevel_consts_10_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_super._ascii.ob_base, + &_Py_ID(__new__), + & const_str__abc_init._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +abc_toplevel_consts_10_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta.__new__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[55]; + } +abc_toplevel_consts_10_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 54, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd8\x12\x21\x95\x25\x91\x27\x94\x27\x94\x2f\xa0\x24\xa8\x04\xa8\x65\xb0\x59\xd0\x12\x49\xd0\x12\x49\xc0\x26\xd0\x12\x49\xd0\x12\x49\x88\x43\xdd\x0c\x15\x90\x63\x89\x4e\x8c\x4e\x88\x4e\xd8\x13\x16\x88\x4a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_mcls = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mcls", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_bases = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bases", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_namespace = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "namespace", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +abc_toplevel_consts_10_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_mcls._ascii.ob_base, + &_Py_ID(name), + & const_str_bases._ascii.ob_base, + & const_str_namespace._ascii.ob_base, + & const_str_kwargs._ascii.ob_base, + & const_str_cls._ascii.ob_base, + &_Py_ID(__class__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +abc_toplevel_consts_10_consts_2_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\x20\x20\x20\x20\x20\x20\x80", +}; +static + struct _PyCode_DEF(96) +abc_toplevel_consts_10_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 48, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 11, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 4, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 105, + .co_nlocalsplus = 7, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & abc_toplevel_consts_10_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & abc_toplevel_consts_10_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__new__), + .co_qualname = & abc_toplevel_consts_10_consts_2_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x66\x04\x69\x00\x7c\x04\xa4\x01\x8e\x01\x7d\x05\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x05\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[124]; + } +abc_toplevel_consts_10_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 123, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x67\x69\x73\x74\x65\x72\x20\x61\x20\x76\x69\x72\x74\x75\x61\x6c\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x20\x6f\x66\x20\x61\x6e\x20\x41\x42\x43\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x2c\x20\x74\x6f\x20\x61\x6c\x6c\x6f\x77\x20\x75\x73\x61\x67\x65\x20\x61\x73\x20\x61\x20\x63\x6c\x61\x73\x73\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & abc_toplevel_consts_10_consts_3_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__abc_register._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_register = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "register", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +abc_toplevel_consts_10_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta.register", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +abc_toplevel_consts_10_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x14\x21\xa0\x13\xa0\x68\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_subclass = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "subclass", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +abc_toplevel_consts_10_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_subclass._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(34) +abc_toplevel_consts_10_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & abc_toplevel_consts_10_consts_3_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 110, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_10_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_register._ascii.ob_base, + .co_qualname = & abc_toplevel_consts_10_consts_3_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[40]; + } +abc_toplevel_consts_10_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 39, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Override for isinstance(instance, cls).", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & abc_toplevel_consts_10_consts_4_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__abc_instancecheck._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +abc_toplevel_consts_10_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta.__instancecheck__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +abc_toplevel_consts_10_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x13\x25\xa0\x63\xa8\x38\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_instance = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "instance", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +abc_toplevel_consts_10_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_instance._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(34) +abc_toplevel_consts_10_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & abc_toplevel_consts_10_consts_4_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 117, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_10_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__instancecheck__), + .co_qualname = & abc_toplevel_consts_10_consts_4_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[40]; + } +abc_toplevel_consts_10_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 39, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Override for issubclass(subclass, cls).", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & abc_toplevel_consts_10_consts_5_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__abc_subclasscheck._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +abc_toplevel_consts_10_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta.__subclasscheck__", +}; +static + struct _PyCode_DEF(34) +abc_toplevel_consts_10_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & abc_toplevel_consts_10_consts_5_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 121, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_10_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasscheck__), + .co_qualname = & abc_toplevel_consts_10_consts_5_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[40]; + } +abc_toplevel_consts_10_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 39, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Debug helper to print the ABC registry.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +abc_toplevel_consts_10_consts_7_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Class: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +abc_toplevel_consts_10_consts_7_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Inv. counter: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +abc_toplevel_consts_10_consts_7_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_registry: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +abc_toplevel_consts_10_consts_7_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_cache: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +abc_toplevel_consts_10_consts_7_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_negative_cache: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +abc_toplevel_consts_10_consts_7_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_negative_cache_version: ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +abc_toplevel_consts_10_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & abc_toplevel_consts_10_consts_7_consts_0._ascii.ob_base, + & abc_toplevel_consts_10_consts_7_consts_1._ascii.ob_base, + &_Py_STR(dot), + & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, + & abc_toplevel_consts_10_consts_7_consts_4._ascii.ob_base, + & abc_toplevel_consts_10_consts_7_consts_5._ascii.ob_base, + & abc_toplevel_consts_10_consts_7_consts_6._ascii.ob_base, + & abc_toplevel_consts_10_consts_7_consts_7._ascii.ob_base, + & abc_toplevel_consts_10_consts_7_consts_8._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +abc_toplevel_consts_10_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_print._ascii.ob_base, + &_Py_ID(__module__), + &_Py_ID(__qualname__), + & const_str_get_cache_token._ascii.ob_base, + & const_str__get_dump._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__dump_registry = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_dump_registry", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +abc_toplevel_consts_10_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta._dump_registry", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[235]; + } +abc_toplevel_consts_10_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 234, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0c\x11\xd0\x12\x3f\x98\x43\x9c\x4e\xd0\x12\x3f\xd0\x12\x3f\xa8\x53\xd4\x2d\x3d\xd0\x12\x3f\xd0\x12\x3f\xc0\x64\xd0\x0c\x4b\xd1\x0c\x4b\xd4\x0c\x4b\xd0\x0c\x4b\xdd\x0c\x11\xd0\x12\x36\xa5\x3f\xd1\x23\x34\xd4\x23\x34\xd0\x12\x36\xd0\x12\x36\xb8\x54\xd0\x0c\x42\xd1\x0c\x42\xd4\x0c\x42\xd0\x0c\x42\xe5\x2c\x35\xb0\x63\xa9\x4e\xac\x4e\xf1\x03\x01\x0d\x2a\x88\x5d\x98\x4a\xd0\x28\x3b\xd8\x0d\x28\xdd\x0c\x11\xd0\x12\x35\xa0\x4d\xd0\x12\x35\xd0\x12\x35\xb8\x44\xd0\x0c\x41\xd1\x0c\x41\xd4\x0c\x41\xd0\x0c\x41\xdd\x0c\x11\xd0\x12\x2f\xa0\x1a\xd0\x12\x2f\xd0\x12\x2f\xb0\x64\xd0\x0c\x3b\xd1\x0c\x3b\xd4\x0c\x3b\xd0\x0c\x3b\xdd\x0c\x11\xd0\x12\x41\xd0\x2a\x3d\xd0\x12\x41\xd0\x12\x41\xc8\x04\xd0\x0c\x4d\xd1\x0c\x4d\xd4\x0c\x4d\xd0\x0c\x4d\xdd\x0c\x11\xd0\x12\x51\xd0\x32\x4d\xd0\x12\x51\xd0\x12\x51\xd8\x17\x1b\xf0\x03\x01\x0d\x1d\xf1\x00\x01\x0d\x1d\xf4\x00\x01\x0d\x1d\xf0\x00\x01\x0d\x1d\xf0\x00\x01\x0d\x1d\xf0\x00\x01\x0d\x1d", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__abc_registry = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_registry", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str__abc_cache = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_cache", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str__abc_negative_cache = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_negative_cache", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +const_str__abc_negative_cache_version = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_negative_cache_version", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +abc_toplevel_consts_10_consts_7_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_file._ascii.ob_base, + & const_str__abc_registry._ascii.ob_base, + & const_str__abc_cache._ascii.ob_base, + & const_str__abc_negative_cache._ascii.ob_base, + & const_str__abc_negative_cache_version._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(336) +abc_toplevel_consts_10_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 168, + }, + .co_consts = & abc_toplevel_consts_10_consts_7_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 125, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_10_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__dump_registry._ascii.ob_base, + .co_qualname = & abc_toplevel_consts_10_consts_7_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x9d\x04\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x04\x00\x00\x7d\x02\x7d\x03\x7d\x04\x7d\x05\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x02\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x7c\x03\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x04\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x05\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[47]; + } +abc_toplevel_consts_10_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 46, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Clear the registry (for debugging or testing).", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +abc_toplevel_consts_10_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & abc_toplevel_consts_10_consts_8_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__reset_registry._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str__abc_registry_clear = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_registry_clear", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +abc_toplevel_consts_10_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta._abc_registry_clear", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +abc_toplevel_consts_10_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0c\x1b\x98\x43\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(36) +abc_toplevel_consts_10_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & abc_toplevel_consts_10_consts_8_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 137, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_10_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__abc_registry_clear._ascii.ob_base, + .co_qualname = & abc_toplevel_consts_10_consts_8_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +abc_toplevel_consts_10_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Clear the caches (for debugging or testing).", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +abc_toplevel_consts_10_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & abc_toplevel_consts_10_consts_9_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_10_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__reset_caches._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__abc_caches_clear = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc_caches_clear", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +abc_toplevel_consts_10_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABCMeta._abc_caches_clear", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +abc_toplevel_consts_10_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0c\x19\x98\x23\xd1\x0c\x1e\xd4\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e", +}; +static + struct _PyCode_DEF(36) +abc_toplevel_consts_10_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & abc_toplevel_consts_10_consts_9_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 141, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_10_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str__abc_caches_clear._ascii.ob_base, + .co_qualname = & abc_toplevel_consts_10_consts_9_qualname._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +abc_toplevel_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_ABCMeta._ascii.ob_base, + & abc_toplevel_consts_10_consts_1._ascii.ob_base, + & abc_toplevel_consts_10_consts_2.ob_base.ob_base, + & abc_toplevel_consts_10_consts_3.ob_base.ob_base, + & abc_toplevel_consts_10_consts_4.ob_base.ob_base, + & abc_toplevel_consts_10_consts_5.ob_base.ob_base, + Py_None, + & abc_toplevel_consts_10_consts_7.ob_base.ob_base, + & abc_toplevel_consts_10_consts_8.ob_base.ob_base, + & abc_toplevel_consts_10_consts_9.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +abc_toplevel_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__new__), + & const_str_register._ascii.ob_base, + &_Py_ID(__instancecheck__), + &_Py_ID(__subclasscheck__), + & const_str__dump_registry._ascii.ob_base, + & const_str__abc_registry_clear._ascii.ob_base, + & const_str__abc_caches_clear._ascii.ob_base, + &_Py_ID(__classcell__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[162]; + } +abc_toplevel_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 161, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0b\x09\x0c\xf0\x00\x0b\x09\x0c\xf0\x18\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x0a\x05\x09\x30\xf0\x00\x05\x09\x30\xf0\x00\x05\x09\x30\xf0\x0e\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x08\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x08\x0a\x09\x1d\xf0\x00\x0a\x09\x1d\xf0\x00\x0a\x09\x1d\xf0\x00\x0a\x09\x1d\xf0\x18\x02\x09\x21\xf0\x00\x02\x09\x21\xf0\x00\x02\x09\x21\xf0\x08\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f", +}; +static + struct _PyCode_DEF(72) +abc_toplevel_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & abc_toplevel_consts_10_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 92, + .co_nlocalsplus = 1, + .co_nlocals = 0, + .co_nplaincellvars = 1, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_ABCMeta._ascii.ob_base, + .co_qualname = & const_str_ABCMeta._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x88\x00\x66\x01\x64\x02\x84\x08\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x0a\x64\x07\x84\x01\x5a\x08\x64\x08\x84\x00\x5a\x09\x64\x09\x84\x00\x5a\x0a\x88\x00\x78\x01\x5a\x0b\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +abc_toplevel_consts_12 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_ABCMeta._ascii.ob_base, + & const_str_get_cache_token._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_abc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abc", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[668]; + } +abc_toplevel_consts_14_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 667, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x63\x61\x6c\x63\x75\x6c\x61\x74\x65\x20\x74\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x6f\x66\x20\x61\x6e\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x20\x63\x6c\x61\x73\x73\x20\x68\x61\x73\x20\x68\x61\x64\x20\x6f\x6e\x65\x20\x6f\x66\x20\x69\x74\x73\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x77\x61\x73\x20\x63\x72\x65\x61\x74\x65\x64\x2c\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x20\x75\x6e\x74\x69\x6c\x0a\x20\x20\x20\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x61\x6c\x6c\x65\x64\x2e\x20\x41\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x6c\x79\x2c\x20\x69\x66\x20\x61\x20\x6e\x65\x77\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x0a\x20\x20\x20\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x6f\x6e\x6c\x79\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x61\x6e\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x20\x6f\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x61\x66\x74\x65\x72\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x61\x6c\x6c\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x63\x61\x6c\x6c\x65\x64\x20\x62\x65\x66\x6f\x72\x65\x20\x61\x6e\x79\x20\x75\x73\x65\x20\x69\x73\x20\x6d\x61\x64\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x2c\x0a\x20\x20\x20\x20\x75\x73\x75\x61\x6c\x6c\x79\x20\x69\x6e\x20\x63\x6c\x61\x73\x73\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x73\x20\x74\x68\x61\x74\x20\x61\x64\x64\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x62\x6a\x65\x63\x74\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x63\x6c\x73\x2c\x20\x74\x6f\x20\x61\x6c\x6c\x6f\x77\x20\x75\x73\x61\x67\x65\x20\x61\x73\x20\x61\x20\x63\x6c\x61\x73\x73\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x63\x6c\x73\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x6e\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x6f\x66\x20\x41\x42\x43\x4d\x65\x74\x61\x2c\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x68\x69\x6e\x67\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +abc_toplevel_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & abc_toplevel_consts_14_consts_0._ascii.ob_base, + &_Py_ID(__abstractmethods__), + (PyObject *)& _Py_SINGLETON(tuple_empty), + Py_None, + &_Py_ID(__isabstractmethod__), + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_frozenset = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "frozenset", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +abc_toplevel_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_hasattr._ascii.ob_base, + & const_str_set._ascii.ob_base, + &_Py_ID(__bases__), + &_Py_ID(getattr), + &_Py_ID(add), + &_Py_ID(__dict__), + &_Py_ID(items), + & const_str_frozenset._ascii.ob_base, + &_Py_ID(__abstractmethods__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str_update_abstractmethods = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "update_abstractmethods", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[245]; + } +abc_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 244, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x20\x00\x0c\x13\x90\x33\xd0\x18\x2d\xd1\x0b\x2e\xd4\x0b\x2e\xf0\x00\x04\x05\x13\xf0\x08\x00\x10\x13\x88\x0a\xe5\x10\x13\x91\x05\x94\x05\x80\x49\xf0\x06\x00\x11\x14\x94\x0d\xf0\x00\x04\x05\x24\xf0\x00\x04\x05\x24\x88\x04\xdd\x14\x1b\x98\x44\xd0\x22\x37\xb8\x12\xd1\x14\x3c\xd4\x14\x3c\xf0\x00\x03\x09\x24\xf0\x00\x03\x09\x24\x88\x44\xdd\x14\x1b\x98\x43\xa0\x14\xa0\x74\xd1\x14\x2c\xd4\x14\x2c\x88\x45\xdd\x0f\x16\x90\x75\xd0\x1e\x34\xb0\x65\xd1\x0f\x3c\xd4\x0f\x3c\xf0\x00\x01\x0d\x24\xd8\x10\x19\x97\x0d\x92\x0d\x98\x64\xd1\x10\x23\xd4\x10\x23\xd0\x10\x23\xf8\xf0\x07\x03\x09\x24\xf0\x0a\x00\x18\x1b\x94\x7c\xd7\x17\x29\xd2\x17\x29\xd1\x17\x2b\xd4\x17\x2b\xf0\x00\x02\x05\x20\xf0\x00\x02\x05\x20\x89\x0b\x88\x04\x88\x65\xdd\x0b\x12\x90\x35\xd0\x1a\x30\xb0\x25\xd1\x0b\x38\xd4\x0b\x38\xf0\x00\x01\x09\x20\xd8\x0c\x15\x8f\x4d\x8a\x4d\x98\x24\xd1\x0c\x1f\xd4\x0c\x1f\xd0\x0c\x1f\xf8\xdd\x1e\x27\xa8\x09\xd1\x1e\x32\xd4\x1e\x32\x80\x43\xd4\x04\x1b\xd8\x0b\x0e\x80\x4a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_abstracts = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abstracts", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_scls = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "scls", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +abc_toplevel_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_abstracts._ascii.ob_base, + & const_str_scls._ascii.ob_base, + &_Py_ID(name), + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(418) +abc_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 209, + }, + .co_consts = & abc_toplevel_consts_14_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 146, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_update_abstractmethods._ascii.ob_base, + .co_qualname = & const_str_update_abstractmethods._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x4d\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x39\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x04\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x3a\x8c\x4e\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x2b\x5c\x02\x00\x00\x7d\x03\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x04\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x2c\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_ABC = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ABC", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[87]; + } +abc_toplevel_consts_15_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 86, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x48\x65\x6c\x70\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x74\x68\x61\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x77\x61\x79\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x41\x42\x43\x20\x75\x73\x69\x6e\x67\x0a\x20\x20\x20\x20\x69\x6e\x68\x65\x72\x69\x74\x61\x6e\x63\x65\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +abc_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_ABC._ascii.ob_base, + & abc_toplevel_consts_15_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +abc_toplevel_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[32]; + } +abc_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 31, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x05\x08\xf0\x00\x02\x05\x08\xf0\x06\x00\x11\x13\x80\x49\x80\x49\x80\x49", +}; +static + struct _PyCode_DEF(22) +abc_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 11, + }, + .co_consts = & abc_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 184, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_ABC._ascii.ob_base, + .co_qualname = & const_str_ABC._ascii.ob_base, + .co_linetable = & abc_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +abc_toplevel_consts_17 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(metaclass), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[19]; + }_object; + } +abc_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 19, + }, + .ob_item = { + & abc_toplevel_consts_0._ascii.ob_base, + & abc_toplevel_consts_1.ob_base.ob_base, + & abc_toplevel_consts_2.ob_base.ob_base, + & const_str_abstractclassmethod._ascii.ob_base, + & abc_toplevel_consts_4.ob_base.ob_base, + & const_str_abstractstaticmethod._ascii.ob_base, + & abc_toplevel_consts_6.ob_base.ob_base, + & const_str_abstractproperty._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & abc_toplevel_consts_9._object.ob_base.ob_base, + & abc_toplevel_consts_10.ob_base.ob_base, + & const_str_ABCMeta._ascii.ob_base, + & abc_toplevel_consts_12._object.ob_base.ob_base, + & const_str_abc._ascii.ob_base, + & abc_toplevel_consts_14.ob_base.ob_base, + & abc_toplevel_consts_15.ob_base.ob_base, + & const_str_ABC._ascii.ob_base, + & abc_toplevel_consts_17._object.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str__abc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abc", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__py_abc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_py_abc", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[24]; + }_object; + } +abc_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 24, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_abstractmethod._ascii.ob_base, + & const_str_classmethod._ascii.ob_base, + & const_str_abstractclassmethod._ascii.ob_base, + & const_str_staticmethod._ascii.ob_base, + & const_str_abstractstaticmethod._ascii.ob_base, + & const_str_property._ascii.ob_base, + & const_str_abstractproperty._ascii.ob_base, + & const_str__abc._ascii.ob_base, + & const_str_get_cache_token._ascii.ob_base, + & const_str__abc_init._ascii.ob_base, + & const_str__abc_register._ascii.ob_base, + & const_str__abc_instancecheck._ascii.ob_base, + & const_str__abc_subclasscheck._ascii.ob_base, + & const_str__get_dump._ascii.ob_base, + & const_str__reset_registry._ascii.ob_base, + & const_str__reset_caches._ascii.ob_base, + & const_str_type._ascii.ob_base, + & const_str_ABCMeta._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str__py_abc._ascii.ob_base, + &_Py_ID(__module__), + & const_str_update_abstractmethods._ascii.ob_base, + & const_str_ABC._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[448]; + } +abc_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 447, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x08\x00\x01\x3a\xd0\x00\x39\xf0\x06\x12\x01\x13\xf0\x00\x12\x01\x13\xf0\x00\x12\x01\x13\xf0\x2a\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\x98\x2b\xf1\x00\x11\x01\x23\xf4\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x28\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\x98\x3c\xf1\x00\x11\x01\x23\xf4\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x28\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\x90\x78\xf1\x00\x0d\x01\x20\xf4\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x20\x3b\x01\x1f\xf0\x02\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x0e\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\x90\x24\xf1\x00\x33\x05\x1f\xf4\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf8\xf0\x09\x00\x08\x13\xf0\x00\x02\x01\x1f\xf0\x00\x02\x01\x1f\xf0\x00\x02\x01\x1f\xd8\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd8\x19\x1e\x80\x47\xd4\x04\x16\xd0\x04\x16\xd0\x04\x16\xf0\x05\x02\x01\x1f\xf8\xf8\xf8\xf0\x74\x01\x23\x01\x0f\xf0\x00\x23\x01\x0f\xf0\x00\x23\x01\x0f\xf0\x4c\x01\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\x90\x47\xf0\x00\x04\x01\x13\xf1\x00\x04\x01\x13\xf4\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +abc_toplevel_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\xb1\x14\x41\x14\x00\xc1\x14\x14\x41\x2b\x03\xc1\x2a\x01\x41\x2b\x03", +}; +static + struct _PyCode_DEF(260) +abc_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 130, + }, + .co_consts = & abc_toplevel_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = & abc_toplevel_exceptiontable.ob_base.ob_base, + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & abc_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x84\x00\x5a\x01\x02\x00\x47\x00\x64\x02\x84\x00\x64\x03\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x03\x02\x00\x47\x00\x64\x04\x84\x00\x64\x05\x65\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x02\x00\x47\x00\x64\x06\x84\x00\x64\x07\x65\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x09\x00\x64\x08\x64\x09\x6c\x08\x6d\x09\x5a\x09\x6d\x0a\x5a\x0a\x6d\x0b\x5a\x0b\x6d\x0c\x5a\x0c\x6d\x0d\x5a\x0d\x6d\x0e\x5a\x0e\x6d\x0f\x5a\x0f\x6d\x10\x5a\x10\x01\x00\x02\x00\x47\x00\x64\x0a\x84\x00\x64\x0b\x65\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x12\x6e\x1a\x23\x00\x65\x13\x24\x00\x72\x12\x01\x00\x64\x08\x64\x0c\x6c\x14\x6d\x12\x5a\x12\x6d\x09\x5a\x09\x01\x00\x64\x0d\x65\x12\x5f\x15\x00\x00\x00\x00\x00\x00\x00\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x0e\x84\x00\x5a\x16\x02\x00\x47\x00\x64\x0f\x84\x00\x64\x10\x65\x12\xac\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x17\x64\x12\x53\x00", + ._co_firsttraceable = 0, +}; +static void abc_do_patchups(void) { +} + +PyObject * +_Py_get_abc_toplevel(void) +{ + abc_do_patchups(); + return Py_NewRef((PyObject *) &abc_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[159]; + } +codecs_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 158, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x63\x6f\x64\x65\x63\x73\x20\x2d\x2d\x20\x50\x79\x74\x68\x6f\x6e\x20\x43\x6f\x64\x65\x63\x20\x52\x65\x67\x69\x73\x74\x72\x79\x2c\x20\x41\x50\x49\x20\x61\x6e\x64\x20\x68\x65\x6c\x70\x65\x72\x73\x2e\x0a\x0a\x0a\x57\x72\x69\x74\x74\x65\x6e\x20\x62\x79\x20\x4d\x61\x72\x63\x2d\x41\x6e\x64\x72\x65\x20\x4c\x65\x6d\x62\x75\x72\x67\x20\x28\x6d\x61\x6c\x40\x6c\x65\x6d\x62\x75\x72\x67\x2e\x63\x6f\x6d\x29\x2e\x0a\x0a\x28\x63\x29\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x43\x4e\x52\x49\x2c\x20\x41\x6c\x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\x65\x72\x76\x65\x64\x2e\x20\x4e\x4f\x20\x57\x41\x52\x52\x41\x4e\x54\x59\x2e\x0a\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_54_consts_5._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +codecs_toplevel_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Failed to load the builtin codecs: %s", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_lookup = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lookup", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_EncodedFile = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "EncodedFile", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_BOM = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_BOM_BE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_BE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_BOM_LE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_LE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_BOM32_BE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM32_BE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_BOM32_LE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM32_LE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_BOM64_BE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM64_BE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_BOM64_LE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM64_LE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_BOM_UTF8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_UTF8", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_BOM_UTF16 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_UTF16", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_BOM_UTF16_LE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_UTF16_LE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_BOM_UTF16_BE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_UTF16_BE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_BOM_UTF32 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_UTF32", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_BOM_UTF32_LE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_UTF32_LE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_BOM_UTF32_BE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BOM_UTF32_BE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_CodecInfo = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "CodecInfo", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_Codec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Codec", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_IncrementalEncoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalEncoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_IncrementalDecoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalDecoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_StreamReader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_StreamWriter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_StreamReaderWriter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_StreamRecoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_getencoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getencoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_getdecoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getdecoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_getincrementalencoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getincrementalencoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_getincrementaldecoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getincrementaldecoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_getreader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getreader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_getwriter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getwriter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_iterencode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "iterencode", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_iterdecode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "iterdecode", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_strict_errors = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "strict_errors", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_ignore_errors = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ignore_errors", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_replace_errors = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "replace_errors", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str_xmlcharrefreplace_errors = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "xmlcharrefreplace_errors", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +const_str_backslashreplace_errors = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "backslashreplace_errors", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_namereplace_errors = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "namereplace_errors", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_register_error = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "register_error", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_lookup_error = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lookup_error", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[44]; + }_object; + } +codecs_toplevel_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 44, + }, + .ob_item = { + & const_str_register._ascii.ob_base, + & const_str_lookup._ascii.ob_base, + &_Py_ID(open), + & const_str_EncodedFile._ascii.ob_base, + & const_str_BOM._ascii.ob_base, + & const_str_BOM_BE._ascii.ob_base, + & const_str_BOM_LE._ascii.ob_base, + & const_str_BOM32_BE._ascii.ob_base, + & const_str_BOM32_LE._ascii.ob_base, + & const_str_BOM64_BE._ascii.ob_base, + & const_str_BOM64_LE._ascii.ob_base, + & const_str_BOM_UTF8._ascii.ob_base, + & const_str_BOM_UTF16._ascii.ob_base, + & const_str_BOM_UTF16_LE._ascii.ob_base, + & const_str_BOM_UTF16_BE._ascii.ob_base, + & const_str_BOM_UTF32._ascii.ob_base, + & const_str_BOM_UTF32_LE._ascii.ob_base, + & const_str_BOM_UTF32_BE._ascii.ob_base, + & const_str_CodecInfo._ascii.ob_base, + & const_str_Codec._ascii.ob_base, + & const_str_IncrementalEncoder._ascii.ob_base, + & const_str_IncrementalDecoder._ascii.ob_base, + & const_str_StreamReader._ascii.ob_base, + & const_str_StreamWriter._ascii.ob_base, + & const_str_StreamReaderWriter._ascii.ob_base, + & const_str_StreamRecoder._ascii.ob_base, + & const_str_getencoder._ascii.ob_base, + & const_str_getdecoder._ascii.ob_base, + & const_str_getincrementalencoder._ascii.ob_base, + & const_str_getincrementaldecoder._ascii.ob_base, + & const_str_getreader._ascii.ob_base, + & const_str_getwriter._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(decode), + & const_str_iterencode._ascii.ob_base, + & const_str_iterdecode._ascii.ob_base, + & const_str_strict_errors._ascii.ob_base, + & const_str_ignore_errors._ascii.ob_base, + & const_str_replace_errors._ascii.ob_base, + & const_str_xmlcharrefreplace_errors._ascii.ob_base, + & const_str_backslashreplace_errors._ascii.ob_base, + & const_str_namereplace_errors._ascii.ob_base, + & const_str_register_error._ascii.ob_base, + & const_str_lookup_error._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[4]; + } +codecs_toplevel_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 3, + }, + .ob_shash = -1, + .ob_sval = "\xef\xbb\xbf", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +codecs_toplevel_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "\xff\xfe", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +codecs_toplevel_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "\xfe\xff", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +codecs_toplevel_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "\xff\xfe\x00\x00", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +codecs_toplevel_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "\x00\x00\xfe\xff", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[49]; + } +codecs_toplevel_consts_12_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 48, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Codec details when looking up the codec registry", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_12_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(_is_text_encoding), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_incrementalencoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "incrementalencoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_incrementaldecoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "incrementaldecoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_streamwriter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "streamwriter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_streamreader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "streamreader", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +codecs_toplevel_consts_12_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & const_str_tuple._ascii.ob_base, + &_Py_ID(__new__), + &_Py_ID(name), + &_Py_ID(encode), + &_Py_ID(decode), + & const_str_incrementalencoder._ascii.ob_base, + & const_str_incrementaldecoder._ascii.ob_base, + & const_str_streamwriter._ascii.ob_base, + & const_str_streamreader._ascii.ob_base, + &_Py_ID(_is_text_encoding), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +codecs_toplevel_consts_12_consts_5_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +codecs_toplevel_consts_12_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "CodecInfo.__new__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[105]; + } +codecs_toplevel_consts_12_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 104, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x10\x15\x8f\x7d\x8a\x7d\x98\x53\xa0\x36\xa8\x36\xb0\x3c\xc0\x1c\xd0\x22\x4e\xd1\x0f\x4f\xd4\x0f\x4f\x88\x04\xd8\x14\x18\x88\x04\x8c\x09\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x22\x34\x88\x04\xd4\x08\x1f\xd8\x22\x34\x88\x04\xd4\x08\x1f\xd8\x1c\x28\x88\x04\xd4\x08\x19\xd8\x1c\x28\x88\x04\xd4\x08\x19\xd8\x0b\x1c\xd0\x0b\x28\xd8\x25\x36\x88\x44\xd4\x0c\x22\xd8\x0f\x13\x88\x0b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +codecs_toplevel_consts_12_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(decode), + & const_str_streamreader._ascii.ob_base, + & const_str_streamwriter._ascii.ob_base, + & const_str_incrementalencoder._ascii.ob_base, + & const_str_incrementaldecoder._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(_is_text_encoding), + & const_str_self._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(184) +codecs_toplevel_consts_12_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 92, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_12_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 8, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 1, + .co_stacksize = 7, + .co_firstlineno = 94, + .co_nlocalsplus = 10, + .co_nlocals = 10, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_12_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__new__), + .co_qualname = & codecs_toplevel_consts_12_consts_5_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_12_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x7c\x04\x66\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x07\x7c\x09\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x09\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x09\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x09\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x09\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x09\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x09\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\x81\x07\x7c\x08\x7c\x09\x5f\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +codecs_toplevel_consts_12_consts_6_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "<%s.%s object for encoding %s at %#x>", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_12_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & codecs_toplevel_consts_12_consts_6_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +codecs_toplevel_consts_12_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(__class__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(name), + & const_str_id._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +codecs_toplevel_consts_12_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "CodecInfo.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[49]; + } +codecs_toplevel_consts_12_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 48, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x36\xd8\x11\x15\x94\x1e\xd4\x11\x2a\xa8\x44\xac\x4e\xd4\x2c\x47\xd8\x11\x15\x94\x19\x9d\x42\x98\x74\x99\x48\x9c\x48\xf0\x03\x01\x11\x26\xf1\x03\x02\x10\x26\xf0\x00\x02\x09\x26", +}; +static + struct _PyCode_DEF(96) +codecs_toplevel_consts_12_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 48, + }, + .co_consts = & codecs_toplevel_consts_12_consts_6_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_12_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 109, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & codecs_toplevel_consts_12_consts_6_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_12_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x66\x04\x7a\x06\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +codecs_toplevel_consts_12_consts_7 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + Py_None, + Py_None, + Py_None, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +codecs_toplevel_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_CodecInfo._ascii.ob_base, + & codecs_toplevel_consts_12_consts_1._ascii.ob_base, + Py_True, + Py_None, + & codecs_toplevel_consts_12_consts_4._object.ob_base.ob_base, + & codecs_toplevel_consts_12_consts_5.ob_base.ob_base, + & codecs_toplevel_consts_12_consts_6.ob_base.ob_base, + & codecs_toplevel_consts_12_consts_7._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +codecs_toplevel_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(_is_text_encoding), + &_Py_ID(__new__), + &_Py_ID(__repr__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[89]; + } +codecs_toplevel_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 88, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x3a\xd0\x04\x3a\xf0\x10\x00\x19\x1d\xd0\x04\x15\xe0\x45\x49\xd8\x3f\x43\xf0\x03\x0d\x05\x14\xe0\x1d\x21\xf0\x05\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x1e\x03\x05\x26\xf0\x00\x03\x05\x26\xf0\x00\x03\x05\x26\xf0\x00\x03\x05\x26\xf0\x00\x03\x05\x26", +}; +static + struct _PyCode_DEF(46) +codecs_toplevel_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 23, + }, + .co_consts = & codecs_toplevel_consts_12_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 83, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_CodecInfo._ascii.ob_base, + .co_qualname = & const_str_CodecInfo._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x09\x00\x09\x00\x64\x07\x64\x03\x64\x04\x9c\x01\x64\x05\x84\x03\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[1082]; + } +codecs_toplevel_consts_14_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1081, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x44\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x66\x6f\x72\x20\x73\x74\x61\x74\x65\x6c\x65\x73\x73\x20\x65\x6e\x63\x6f\x64\x65\x72\x73\x2f\x64\x65\x63\x6f\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x2e\x65\x6e\x63\x6f\x64\x65\x28\x29\x2f\x2e\x64\x65\x63\x6f\x64\x65\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x69\x6e\x67\x20\x76\x61\x6c\x75\x65\x73\x20\x61\x72\x65\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x2d\x20\x72\x61\x69\x73\x65\x20\x61\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x65\x72\x72\x6f\x72\x20\x28\x6f\x72\x20\x61\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x69\x67\x6e\x6f\x72\x65\x27\x20\x2d\x20\x69\x67\x6e\x6f\x72\x65\x20\x74\x68\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x3b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x50\x79\x74\x68\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x6f\x66\x66\x69\x63\x69\x61\x6c\x20\x55\x2b\x46\x46\x46\x44\x20\x52\x45\x50\x4c\x41\x43\x45\x4d\x45\x4e\x54\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x43\x48\x41\x52\x41\x43\x54\x45\x52\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x69\x6e\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x63\x6f\x64\x65\x63\x73\x20\x6f\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x27\x3f\x27\x20\x6f\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x75\x72\x72\x6f\x67\x61\x74\x65\x65\x73\x63\x61\x70\x65\x27\x20\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x70\x72\x69\x76\x61\x74\x65\x20\x63\x6f\x64\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x55\x2b\x44\x43\x6e\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x78\x6d\x6c\x63\x68\x61\x72\x72\x65\x66\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x20\x58\x4d\x4c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x28\x6f\x6e\x6c\x79\x20\x66\x6f\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x64\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6e\x61\x6d\x65\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x20\x20\x20\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x5c\x4e\x7b\x2e\x2e\x2e\x7d\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x28\x6f\x6e\x6c\x79\x20\x66\x6f\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x76\x61\x6c\x75\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\x78\x74\x65\x6e\x64\x65\x64\x20\x76\x69\x61\x20\x72\x65\x67\x69\x73\x74\x65\x72\x5f\x65\x72\x72\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[548]; + } +codecs_toplevel_consts_14_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 547, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x45\x6e\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x74\x75\x70\x6c\x65\x20\x28\x6f\x75\x74\x70\x75\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6c\x65\x6e\x67\x74\x68\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x64\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x74\x6f\x20\x61\x70\x70\x6c\x79\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x6d\x61\x79\x20\x6e\x6f\x74\x20\x73\x74\x6f\x72\x65\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x43\x6f\x64\x65\x63\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x20\x55\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x66\x6f\x72\x20\x63\x6f\x64\x65\x63\x73\x20\x77\x68\x69\x63\x68\x20\x68\x61\x76\x65\x20\x74\x6f\x20\x6b\x65\x65\x70\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x6b\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x66\x66\x69\x63\x69\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x7a\x65\x72\x6f\x20\x6c\x65\x6e\x67\x74\x68\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x61\x6e\x20\x65\x6d\x70\x74\x79\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x75\x74\x70\x75\x74\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x6e\x20\x74\x68\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x74\x75\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_14_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_14_consts_3_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_14_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_NotImplementedError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +codecs_toplevel_consts_14_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Codec.encode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +codecs_toplevel_consts_14_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x22\x00\x0f\x22\xd0\x08\x21", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_input = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "input", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_14_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_input._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct _PyCode_DEF(16) +codecs_toplevel_consts_14_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & codecs_toplevel_consts_14_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 138, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_14_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(encode), + .co_qualname = & codecs_toplevel_consts_14_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_14_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[755]; + } +codecs_toplevel_consts_14_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 754, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x44\x65\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x74\x75\x70\x6c\x65\x20\x28\x6f\x75\x74\x70\x75\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6c\x65\x6e\x67\x74\x68\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x70\x75\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x77\x68\x69\x63\x68\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x68\x65\x20\x62\x66\x5f\x67\x65\x74\x72\x65\x61\x64\x62\x75\x66\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x20\x73\x6c\x6f\x74\x2e\x20\x50\x79\x74\x68\x6f\x6e\x20\x73\x74\x72\x69\x6e\x67\x73\x2c\x20\x62\x75\x66\x66\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x6d\x65\x6d\x6f\x72\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x73\x20\x61\x72\x65\x20\x65\x78\x61\x6d\x70\x6c\x65\x73\x20\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x73\x6c\x6f\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x64\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x74\x6f\x20\x61\x70\x70\x6c\x79\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x6d\x61\x79\x20\x6e\x6f\x74\x20\x73\x74\x6f\x72\x65\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x43\x6f\x64\x65\x63\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x20\x55\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x66\x6f\x72\x20\x63\x6f\x64\x65\x63\x73\x20\x77\x68\x69\x63\x68\x20\x68\x61\x76\x65\x20\x74\x6f\x20\x6b\x65\x65\x70\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x6b\x65\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x65\x66\x66\x69\x63\x69\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x7a\x65\x72\x6f\x20\x6c\x65\x6e\x67\x74\x68\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x61\x6e\x20\x65\x6d\x70\x74\x79\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x75\x74\x70\x75\x74\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x6e\x20\x74\x68\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x74\x75\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_14_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_14_consts_4_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +codecs_toplevel_consts_14_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Codec.decode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +codecs_toplevel_consts_14_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x2a\x00\x0f\x22\xd0\x08\x21", +}; +static + struct _PyCode_DEF(16) +codecs_toplevel_consts_14_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & codecs_toplevel_consts_14_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 157, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_14_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(decode), + .co_qualname = & codecs_toplevel_consts_14_consts_4_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_14_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_14_consts_6 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(strict), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +codecs_toplevel_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_Codec._ascii.ob_base, + & codecs_toplevel_consts_14_consts_1._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_14_consts_3.ob_base.ob_base, + & codecs_toplevel_consts_14_consts_4.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +codecs_toplevel_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(encode), + &_Py_ID(decode), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[71]; + } +codecs_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 70, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x15\x05\x08\xf0\x00\x15\x05\x08\xf0\x2c\x11\x05\x22\xf0\x00\x11\x05\x22\xf0\x00\x11\x05\x22\xf0\x00\x11\x05\x22\xf0\x26\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22", +}; +static + struct _PyCode_DEF(34) +codecs_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & codecs_toplevel_consts_14_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 114, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Codec._ascii.ob_base, + .co_qualname = & const_str_Codec._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x06\x64\x03\x84\x01\x5a\x04\x64\x06\x64\x04\x84\x01\x5a\x05\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[233]; + } +codecs_toplevel_consts_16_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 232, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x41\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x65\x6e\x63\x6f\x64\x65\x73\x20\x61\x6e\x20\x69\x6e\x70\x75\x74\x20\x69\x6e\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x74\x65\x70\x73\x2e\x20\x54\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x63\x61\x6e\x0a\x20\x20\x20\x20\x62\x65\x20\x70\x61\x73\x73\x65\x64\x20\x70\x69\x65\x63\x65\x20\x62\x79\x20\x70\x69\x65\x63\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2e\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x72\x65\x6d\x65\x6d\x62\x65\x72\x73\x20\x74\x68\x65\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x70\x72\x6f\x63\x65\x73\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x63\x61\x6c\x6c\x73\x20\x74\x6f\x20\x65\x6e\x63\x6f\x64\x65\x28\x29\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[245]; + } +codecs_toplevel_consts_16_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 244, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x53\x65\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x6f\x63\x73\x74\x72\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x20\x76\x61\x6c\x75\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_16_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & codecs_toplevel_consts_16_consts_3_consts_0._ascii.ob_base, + &_Py_STR(empty), + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_16_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(errors), + &_Py_ID(buffer), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_16_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalEncoder.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +codecs_toplevel_consts_16_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x10\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x18\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_16_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct _PyCode_DEF(34) +codecs_toplevel_consts_16_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & codecs_toplevel_consts_16_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_16_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 186, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_16_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_16_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[66]; + } +codecs_toplevel_consts_16_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 65, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x45\x6e\x63\x6f\x64\x65\x73\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_16_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_16_consts_5_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +codecs_toplevel_consts_16_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalEncoder.encode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +codecs_toplevel_consts_16_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x08\x00\x0f\x22\xd0\x08\x21", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_final = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "final", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_16_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_input._ascii.ob_base, + & const_str_final._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(16) +codecs_toplevel_consts_16_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & codecs_toplevel_consts_16_consts_5_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 197, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(encode), + .co_qualname = & codecs_toplevel_consts_16_consts_5_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_16_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[59]; + } +codecs_toplevel_consts_16_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 58, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x69\x6e\x69\x74\x69\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_16_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_16_consts_6_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +codecs_toplevel_consts_16_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalEncoder.reset", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_16_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & codecs_toplevel_consts_16_consts_6_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 203, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_16_consts_6_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[59]; + } +codecs_toplevel_consts_16_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 58, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_16_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_16_consts_7_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_16_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalEncoder.getstate", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[10]; + } +codecs_toplevel_consts_16_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 9, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x10\x11\x88\x71", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_16_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & codecs_toplevel_consts_16_consts_7_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 208, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(getstate), + .co_qualname = & codecs_toplevel_consts_16_consts_7_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_16_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[109]; + } +codecs_toplevel_consts_16_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 108, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x53\x65\x74\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x2e\x20\x73\x74\x61\x74\x65\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x62\x65\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x67\x65\x74\x73\x74\x61\x74\x65\x28\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_16_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_16_consts_8_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_16_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalEncoder.setstate", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_16_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_state._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_16_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & codecs_toplevel_consts_16_consts_8_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 214, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(setstate), + .co_qualname = & codecs_toplevel_consts_16_consts_8_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_16_consts_11 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +codecs_toplevel_consts_16_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str_IncrementalEncoder._ascii.ob_base, + & codecs_toplevel_consts_16_consts_1._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_16_consts_3.ob_base.ob_base, + Py_False, + & codecs_toplevel_consts_16_consts_5.ob_base.ob_base, + & codecs_toplevel_consts_16_consts_6.ob_base.ob_base, + & codecs_toplevel_consts_16_consts_7.ob_base.ob_base, + & codecs_toplevel_consts_16_consts_8.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +codecs_toplevel_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + &_Py_ID(encode), + &_Py_ID(reset), + &_Py_ID(getstate), + &_Py_ID(setstate), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[116]; + } +codecs_toplevel_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 115, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x09\x05\x19\xf0\x00\x09\x05\x19\xf0\x00\x09\x05\x19\xf0\x00\x09\x05\x19\xf0\x16\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x0c\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x0a\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x0c\x04\x05\x0c\xf0\x00\x04\x05\x0c\xf0\x00\x04\x05\x0c\xf0\x00\x04\x05\x0c\xf0\x00\x04\x05\x0c", +}; +static + struct _PyCode_DEF(52) +codecs_toplevel_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & codecs_toplevel_consts_16_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 180, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_IncrementalEncoder._ascii.ob_base, + .co_qualname = & const_str_IncrementalEncoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0a\x64\x03\x84\x01\x5a\x04\x64\x0b\x64\x05\x84\x01\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +const_str_BufferedIncrementalEncoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalEncoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[193]; + } +codecs_toplevel_consts_18_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 192, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x20\x6f\x66\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x61\x73\x20\x74\x68\x65\x20\x62\x61\x73\x65\x63\x6c\x61\x73\x73\x20\x66\x6f\x72\x20\x61\x6e\x0a\x20\x20\x20\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x6b\x65\x65\x70\x20\x73\x6f\x6d\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x75\x74\x70\x75\x74\x20\x69\x6e\x20\x61\x0a\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x63\x61\x6c\x6c\x73\x20\x74\x6f\x20\x65\x6e\x63\x6f\x64\x65\x28\x29\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_18_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_IncrementalEncoder._ascii.ob_base, + &_Py_ID(__init__), + &_Py_ID(buffer), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +codecs_toplevel_consts_18_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalEncoder.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +codecs_toplevel_consts_18_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x23\xd2\x08\x23\xa0\x44\xa8\x26\xd1\x08\x31\xd4\x08\x31\xd0\x08\x31\xe0\x16\x18\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(74) +codecs_toplevel_consts_18_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 37, + }, + .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 226, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_18_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__buffer_encode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_buffer_encode", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[42]; + } +codecs_toplevel_consts_18_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 41, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalEncoder._buffer_encode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +codecs_toplevel_consts_18_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x0f\x22\xd0\x08\x21", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_18_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_input._ascii.ob_base, + &_Py_ID(errors), + & const_str_final._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(16) +codecs_toplevel_consts_18_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 231, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_18_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str__buffer_encode._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_18_consts_4_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_18_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(buffer), + & const_str__buffer_encode._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +codecs_toplevel_consts_18_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalEncoder.encode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +codecs_toplevel_consts_18_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\x98\x55\xd1\x0f\x22\x88\x04\xd8\x1d\x21\xd7\x1d\x30\xd2\x1d\x30\xb0\x14\xb0\x74\xb4\x7b\xc0\x45\xd1\x1d\x4a\xd4\x1d\x4a\xd1\x08\x1a\x88\x16\x90\x18\xe0\x16\x1a\x98\x38\x98\x39\x98\x39\x94\x6f\x88\x04\x8c\x0b\xd8\x0f\x15\x88\x0d", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_result = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "result", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_consumed = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "consumed", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +codecs_toplevel_consts_18_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_input._ascii.ob_base, + & const_str_final._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_result._ascii.ob_base, + & const_str_consumed._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(118) +codecs_toplevel_consts_18_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 59, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 236, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_18_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(encode), + .co_qualname = & codecs_toplevel_consts_18_consts_6_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7a\x00\x00\x00\x7d\x03\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x03\x7c\x05\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_18_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_IncrementalEncoder._ascii.ob_base, + &_Py_ID(reset), + &_Py_ID(buffer), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[33]; + } +codecs_toplevel_consts_18_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 32, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalEncoder.reset", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +codecs_toplevel_consts_18_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x20\xd2\x08\x20\xa0\x14\xd1\x08\x26\xd4\x08\x26\xd0\x08\x26\xd8\x16\x18\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(72) +codecs_toplevel_consts_18_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 244, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_18_consts_7_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_18_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(buffer), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +codecs_toplevel_consts_18_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalEncoder.getstate", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +codecs_toplevel_consts_18_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x7b\xd0\x0f\x1f\x98\x61\xd0\x08\x1f", +}; +static + struct _PyCode_DEF(20) +codecs_toplevel_consts_18_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 248, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(getstate), + .co_qualname = & codecs_toplevel_consts_18_consts_8_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +codecs_toplevel_consts_18_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalEncoder.setstate", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +codecs_toplevel_consts_18_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x16\x1b\x90\x6b\x98\x72\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(24) +codecs_toplevel_consts_18_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 12, + }, + .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 251, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(setstate), + .co_qualname = & codecs_toplevel_consts_18_consts_9_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x70\x01\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +codecs_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_BufferedIncrementalEncoder._ascii.ob_base, + & codecs_toplevel_consts_18_consts_1._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_18_consts_3.ob_base.ob_base, + & codecs_toplevel_consts_18_consts_4.ob_base.ob_base, + Py_False, + & codecs_toplevel_consts_18_consts_6.ob_base.ob_base, + & codecs_toplevel_consts_18_consts_7.ob_base.ob_base, + & codecs_toplevel_consts_18_consts_8.ob_base.ob_base, + & codecs_toplevel_consts_18_consts_9.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +codecs_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + & const_str__buffer_encode._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(reset), + &_Py_ID(getstate), + &_Py_ID(setstate), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[131]; + } +codecs_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 130, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x0a\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x0a\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x10\x02\x05\x19\xf0\x00\x02\x05\x19\xf0\x00\x02\x05\x19\xf0\x08\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x06\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22", +}; +static + struct _PyCode_DEF(58) +codecs_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & codecs_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 220, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_BufferedIncrementalEncoder._ascii.ob_base, + .co_qualname = & const_str_BufferedIncrementalEncoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0b\x64\x03\x84\x01\x5a\x04\x64\x04\x84\x00\x5a\x05\x64\x0c\x64\x06\x84\x01\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x84\x00\x5a\x09\x64\x0a\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[233]; + } +codecs_toplevel_consts_20_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 232, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x41\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x64\x65\x63\x6f\x64\x65\x73\x20\x61\x6e\x20\x69\x6e\x70\x75\x74\x20\x69\x6e\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x74\x65\x70\x73\x2e\x20\x54\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x63\x61\x6e\x0a\x20\x20\x20\x20\x62\x65\x20\x70\x61\x73\x73\x65\x64\x20\x70\x69\x65\x63\x65\x20\x62\x79\x20\x70\x69\x65\x63\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2e\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x72\x65\x6d\x65\x6d\x62\x65\x72\x73\x20\x74\x68\x65\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x70\x72\x6f\x63\x65\x73\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x63\x61\x6c\x6c\x73\x20\x74\x6f\x20\x64\x65\x63\x6f\x64\x65\x28\x29\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[244]; + } +codecs_toplevel_consts_20_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 243, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x43\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x53\x65\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x6f\x63\x73\x74\x72\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x20\x76\x61\x6c\x75\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_20_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_20_consts_3_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_20_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_20_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalDecoder.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +codecs_toplevel_consts_20_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x10\x00\x17\x1d\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(20) +codecs_toplevel_consts_20_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & codecs_toplevel_consts_20_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_20_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 260, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_20_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_20_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[65]; + } +codecs_toplevel_consts_20_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 64, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x44\x65\x63\x6f\x64\x65\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_20_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_20_consts_5_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +codecs_toplevel_consts_20_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalDecoder.decode", +}; +static + struct _PyCode_DEF(16) +codecs_toplevel_consts_20_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & codecs_toplevel_consts_20_consts_5_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 270, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(decode), + .co_qualname = & codecs_toplevel_consts_20_consts_5_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_16_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[58]; + } +codecs_toplevel_consts_20_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 57, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x73\x65\x74\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x69\x6e\x69\x74\x69\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_20_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_20_consts_6_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +codecs_toplevel_consts_20_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalDecoder.reset", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_20_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & codecs_toplevel_consts_20_consts_6_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 276, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_20_consts_6_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[522]; + } +codecs_toplevel_consts_20_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 521, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x28\x62\x75\x66\x66\x65\x72\x65\x64\x5f\x69\x6e\x70\x75\x74\x2c\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x5f\x73\x74\x61\x74\x65\x5f\x69\x6e\x66\x6f\x29\x20\x74\x75\x70\x6c\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x65\x64\x5f\x69\x6e\x70\x75\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x62\x79\x74\x65\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x62\x79\x74\x65\x73\x20\x74\x68\x61\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x65\x72\x65\x20\x70\x61\x73\x73\x65\x64\x20\x74\x6f\x20\x64\x65\x63\x6f\x64\x65\x28\x29\x20\x74\x68\x61\x74\x20\x68\x61\x76\x65\x20\x6e\x6f\x74\x20\x79\x65\x74\x20\x62\x65\x65\x6e\x20\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x5f\x73\x74\x61\x74\x65\x5f\x69\x6e\x66\x6f\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x6e\x6f\x6e\x2d\x6e\x65\x67\x61\x74\x69\x76\x65\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x57\x49\x54\x48\x4f\x55\x54\x20\x79\x65\x74\x20\x68\x61\x76\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x63\x65\x73\x73\x65\x64\x20\x74\x68\x65\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x20\x6f\x66\x20\x62\x75\x66\x66\x65\x72\x65\x64\x5f\x69\x6e\x70\x75\x74\x2e\x20\x20\x49\x6e\x20\x74\x68\x65\x20\x69\x6e\x69\x74\x69\x61\x6c\x20\x73\x74\x61\x74\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x61\x66\x74\x65\x72\x20\x72\x65\x73\x65\x74\x28\x29\x2c\x20\x67\x65\x74\x73\x74\x61\x74\x65\x28\x29\x20\x6d\x75\x73\x74\x20\x72\x65\x74\x75\x72\x6e\x20\x28\x62\x22\x22\x2c\x20\x30\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_20_consts_7_consts_1 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + (PyObject *)&_Py_SINGLETON(bytes_empty), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_20_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_20_consts_7_consts_0._ascii.ob_base, + & codecs_toplevel_consts_20_consts_7_consts_1._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_20_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalDecoder.getstate", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[10]; + } +codecs_toplevel_consts_20_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 9, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x18\x00\x10\x18\x88\x78", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_20_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & codecs_toplevel_consts_20_consts_7_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 281, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(getstate), + .co_qualname = & codecs_toplevel_consts_20_consts_7_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_20_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[183]; + } +codecs_toplevel_consts_20_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 182, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x53\x65\x74\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x61\x74\x65\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x62\x65\x65\x6e\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x67\x65\x74\x73\x74\x61\x74\x65\x28\x29\x2e\x20\x20\x54\x68\x65\x20\x65\x66\x66\x65\x63\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x73\x65\x74\x73\x74\x61\x74\x65\x28\x28\x62\x22\x22\x2c\x20\x30\x29\x29\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x74\x20\x74\x6f\x20\x72\x65\x73\x65\x74\x28\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_20_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_20_consts_8_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_20_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IncrementalDecoder.setstate", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_20_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & codecs_toplevel_consts_20_consts_8_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 295, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(setstate), + .co_qualname = & codecs_toplevel_consts_20_consts_8_qualname._ascii.ob_base, + .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +codecs_toplevel_consts_20_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str_IncrementalDecoder._ascii.ob_base, + & codecs_toplevel_consts_20_consts_1._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_20_consts_3.ob_base.ob_base, + Py_False, + & codecs_toplevel_consts_20_consts_5.ob_base.ob_base, + & codecs_toplevel_consts_20_consts_6.ob_base.ob_base, + & codecs_toplevel_consts_20_consts_7.ob_base.ob_base, + & codecs_toplevel_consts_20_consts_8.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +codecs_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + &_Py_ID(decode), + &_Py_ID(reset), + &_Py_ID(getstate), + &_Py_ID(setstate), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[116]; + } +codecs_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 115, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x08\x05\x1d\xf0\x00\x08\x05\x1d\xf0\x00\x08\x05\x1d\xf0\x00\x08\x05\x1d\xf0\x14\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x0c\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x0a\x0c\x05\x18\xf0\x00\x0c\x05\x18\xf0\x00\x0c\x05\x18\xf0\x1c\x06\x05\x0c\xf0\x00\x06\x05\x0c\xf0\x00\x06\x05\x0c\xf0\x00\x06\x05\x0c\xf0\x00\x06\x05\x0c", +}; +static + struct _PyCode_DEF(52) +codecs_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & codecs_toplevel_consts_20_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 254, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_IncrementalDecoder._ascii.ob_base, + .co_qualname = & const_str_IncrementalDecoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0a\x64\x03\x84\x01\x5a\x04\x64\x0b\x64\x05\x84\x01\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +const_str_BufferedIncrementalDecoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalDecoder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[175]; + } +codecs_toplevel_consts_22_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 174, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x20\x6f\x66\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x61\x73\x20\x74\x68\x65\x20\x62\x61\x73\x65\x63\x6c\x61\x73\x73\x20\x66\x6f\x72\x20\x61\x6e\x0a\x20\x20\x20\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x69\x6e\x63\x6f\x6d\x70\x6c\x65\x74\x65\x0a\x20\x20\x20\x20\x62\x79\x74\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_22_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + (PyObject *)&_Py_SINGLETON(bytes_empty), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_22_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_IncrementalDecoder._ascii.ob_base, + &_Py_ID(__init__), + &_Py_ID(buffer), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +codecs_toplevel_consts_22_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalDecoder.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +codecs_toplevel_consts_22_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x23\xd2\x08\x23\xa0\x44\xa8\x26\xd1\x08\x31\xd4\x08\x31\xd0\x08\x31\xe0\x16\x19\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(74) +codecs_toplevel_consts_22_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 37, + }, + .co_consts = & codecs_toplevel_consts_22_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_22_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 309, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_22_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_22_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__buffer_decode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_buffer_decode", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[42]; + } +codecs_toplevel_consts_22_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 41, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalDecoder._buffer_decode", +}; +static + struct _PyCode_DEF(16) +codecs_toplevel_consts_22_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 314, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_18_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str__buffer_decode._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_22_consts_4_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_22_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(buffer), + & const_str__buffer_decode._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +codecs_toplevel_consts_22_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalDecoder.decode", +}; +static + struct _PyCode_DEF(118) +codecs_toplevel_consts_22_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 59, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_22_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 319, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_18_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(decode), + .co_qualname = & codecs_toplevel_consts_22_consts_6_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7a\x00\x00\x00\x7d\x03\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x03\x7c\x05\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_22_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_IncrementalDecoder._ascii.ob_base, + &_Py_ID(reset), + &_Py_ID(buffer), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[33]; + } +codecs_toplevel_consts_22_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 32, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalDecoder.reset", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +codecs_toplevel_consts_22_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x20\xd2\x08\x20\xa0\x14\xd1\x08\x26\xd4\x08\x26\xd0\x08\x26\xd8\x16\x19\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(72) +codecs_toplevel_consts_22_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & codecs_toplevel_consts_22_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_22_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 327, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_22_consts_7_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_22_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +codecs_toplevel_consts_22_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalDecoder.getstate", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +codecs_toplevel_consts_22_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x10\x14\x94\x0b\x98\x51\xd0\x0f\x1f\xd0\x08\x1f", +}; +static + struct _PyCode_DEF(20) +codecs_toplevel_consts_22_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 331, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(getstate), + .co_qualname = & codecs_toplevel_consts_22_consts_8_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_22_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +codecs_toplevel_consts_22_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIncrementalDecoder.setstate", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +codecs_toplevel_consts_22_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x16\x1b\x98\x41\x94\x68\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(32) +codecs_toplevel_consts_22_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 335, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(setstate), + .co_qualname = & codecs_toplevel_consts_22_consts_9_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_22_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +codecs_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_BufferedIncrementalDecoder._ascii.ob_base, + & codecs_toplevel_consts_22_consts_1._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_22_consts_3.ob_base.ob_base, + & codecs_toplevel_consts_22_consts_4.ob_base.ob_base, + Py_False, + & codecs_toplevel_consts_22_consts_6.ob_base.ob_base, + & codecs_toplevel_consts_22_consts_7.ob_base.ob_base, + & codecs_toplevel_consts_22_consts_8.ob_base.ob_base, + & codecs_toplevel_consts_22_consts_9.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +codecs_toplevel_consts_22_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + & const_str__buffer_decode._ascii.ob_base, + &_Py_ID(decode), + &_Py_ID(reset), + &_Py_ID(getstate), + &_Py_ID(setstate), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[131]; + } +codecs_toplevel_consts_22_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 130, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x03\x05\x1a\xf0\x00\x03\x05\x1a\xf0\x00\x03\x05\x1a\xf0\x00\x03\x05\x1a\xf0\x0a\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x0a\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x10\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x08\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x08\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f", +}; +static + struct _PyCode_DEF(58) +codecs_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & codecs_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_22_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 303, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_BufferedIncrementalDecoder._ascii.ob_base, + .co_qualname = & const_str_BufferedIncrementalDecoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_22_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0b\x64\x03\x84\x01\x5a\x04\x64\x04\x84\x00\x5a\x05\x64\x0c\x64\x06\x84\x01\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x84\x00\x5a\x09\x64\x0a\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[888]; + } +codecs_toplevel_consts_24_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 887, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x70\x65\x6e\x20\x66\x6f\x72\x20\x77\x72\x69\x74\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x20\x61\x72\x65\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x2d\x20\x72\x61\x69\x73\x65\x20\x61\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x28\x6f\x72\x20\x61\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x69\x67\x6e\x6f\x72\x65\x27\x20\x2d\x20\x69\x67\x6e\x6f\x72\x65\x20\x74\x68\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x72\x65\x70\x6c\x61\x63\x65\x27\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x78\x6d\x6c\x63\x68\x61\x72\x72\x65\x66\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x20\x58\x4d\x4c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x64\x20\x65\x73\x63\x61\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6e\x61\x6d\x65\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x20\x20\x20\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x5c\x4e\x7b\x2e\x2e\x2e\x7d\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x20\x76\x61\x6c\x75\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\x78\x74\x65\x6e\x64\x65\x64\x20\x76\x69\x61\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x67\x69\x73\x74\x65\x72\x5f\x65\x72\x72\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_24_consts_2_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_stream = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "stream", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +codecs_toplevel_consts_24_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +codecs_toplevel_consts_24_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x2c\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_24_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_stream._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct _PyCode_DEF(34) +codecs_toplevel_consts_24_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & codecs_toplevel_consts_24_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 348, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_24_consts_2_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[63]; + } +codecs_toplevel_consts_24_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 62, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x57\x72\x69\x74\x65\x73\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x27\x73\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x74\x6f\x20\x73\x65\x6c\x66\x2e\x73\x74\x72\x65\x61\x6d\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_24_consts_3_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_24_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(encode), + &_Py_ID(errors), + & const_str_stream._ascii.ob_base, + &_Py_ID(write), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +codecs_toplevel_consts_24_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.write", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[58]; + } +codecs_toplevel_consts_24_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 57, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x1a\x1e\x9f\x1b\x9a\x1b\xa0\x56\xa8\x54\xac\x5b\xd1\x19\x39\xd4\x19\x39\x89\x0e\x88\x04\x88\x68\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\x98\x24\xd1\x08\x1f\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_24_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_object._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_consumed._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(118) +codecs_toplevel_consts_24_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 59, + }, + .co_consts = & codecs_toplevel_consts_24_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 373, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(write), + .co_qualname = & codecs_toplevel_consts_24_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[92]; + } +codecs_toplevel_consts_24_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 91, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x57\x72\x69\x74\x65\x73\x20\x74\x68\x65\x20\x63\x6f\x6e\x63\x61\x74\x65\x6e\x61\x74\x65\x64\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x73\x74\x72\x69\x6e\x67\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x72\x65\x61\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x75\x73\x69\x6e\x67\x20\x2e\x77\x72\x69\x74\x65\x28\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_24_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & codecs_toplevel_consts_24_consts_4_consts_0._ascii.ob_base, + &_Py_STR(empty), + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(write), + &_Py_ID(join), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_writelines = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "writelines", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +codecs_toplevel_consts_24_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.writelines", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[39]; + } +codecs_toplevel_consts_24_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 38, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x09\x0d\x8f\x0a\x8a\x0a\x90\x32\x97\x37\x92\x37\x98\x34\x91\x3d\x94\x3d\xd1\x08\x21\xd4\x08\x21\xd0\x08\x21\xd0\x08\x21\xd0\x08\x21", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_list._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(86) +codecs_toplevel_consts_24_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 43, + }, + .co_consts = & codecs_toplevel_consts_24_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 380, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_writelines._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_24_consts_4_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[307]; + } +codecs_toplevel_consts_24_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 306, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x62\x75\x66\x66\x65\x72\x73\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x73\x68\x6f\x75\x6c\x64\x20\x65\x6e\x73\x75\x72\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x64\x61\x74\x61\x20\x6f\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x75\x74\x70\x75\x74\x20\x69\x73\x20\x70\x75\x74\x20\x69\x6e\x74\x6f\x20\x61\x20\x63\x6c\x65\x61\x6e\x20\x73\x74\x61\x74\x65\x2c\x20\x74\x68\x61\x74\x20\x61\x6c\x6c\x6f\x77\x73\x20\x61\x70\x70\x65\x6e\x64\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x20\x6e\x65\x77\x20\x66\x72\x65\x73\x68\x20\x64\x61\x74\x61\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x68\x61\x76\x69\x6e\x67\x20\x74\x6f\x20\x72\x65\x73\x63\x61\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x74\x6f\x20\x72\x65\x63\x6f\x76\x65\x72\x20\x73\x74\x61\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_24_consts_5_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +codecs_toplevel_consts_24_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.reset", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[10]; + } +codecs_toplevel_consts_24_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 9, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x14\x00\x09\x0d\x88\x04", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_24_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & codecs_toplevel_consts_24_consts_5_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 387, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_24_consts_5_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_24_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + &_Py_ID(seek), + &_Py_ID(reset), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +codecs_toplevel_consts_24_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.seek", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[72]; + } +codecs_toplevel_consts_24_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 71, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x0b\x11\x90\x51\x8a\x3b\x88\x3b\x98\x36\xa0\x51\x9a\x3b\x98\x3b\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\x88\x4c\xf0\x03\x00\x0c\x17\x88\x3b\x98\x3b\x98\x3b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_whence = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "whence", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_24_consts_7_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(offset), + & const_str_whence._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(132) +codecs_toplevel_consts_24_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 66, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 399, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(seek), + .co_qualname = & codecs_toplevel_consts_24_consts_7_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x1c\x7c\x01\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x18\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[64]; + } +codecs_toplevel_consts_24_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 63, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x49\x6e\x68\x65\x72\x69\x74\x20\x61\x6c\x6c\x20\x6f\x74\x68\x65\x72\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_24_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_24_consts_8_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_24_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +codecs_toplevel_consts_24_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.__getattr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +codecs_toplevel_consts_24_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x10\x17\x88\x77\x90\x74\x94\x7b\xa0\x44\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_24_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(getattr), + }, + }, +}; +static + struct _PyCode_DEF(36) +codecs_toplevel_consts_24_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 404, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getattr__), + .co_qualname = & codecs_toplevel_consts_24_consts_8_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_24_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.__enter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +codecs_toplevel_consts_24_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x13\x88\x0b", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_24_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 411, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & codecs_toplevel_consts_24_consts_9_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + &_Py_ID(close), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +codecs_toplevel_consts_24_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.__exit__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[29]; + } +codecs_toplevel_consts_24_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 28, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_tb = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "tb", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_24_consts_10_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_type._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_tb._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(56) +codecs_toplevel_consts_24_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 414, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & codecs_toplevel_consts_24_consts_10_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +codecs_toplevel_consts_24_consts_11_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "can't serialize %s", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & codecs_toplevel_consts_24_consts_11_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_24_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_TypeError._ascii.ob_base, + &_Py_ID(__class__), + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +codecs_toplevel_consts_24_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamWriter.__reduce_ex__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[28]; + } +codecs_toplevel_consts_24_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 27, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0e\x17\xd0\x18\x2c\xa8\x74\xac\x7e\xd4\x2f\x46\xd1\x18\x46\xd1\x0e\x47\xd4\x0e\x47\xd0\x08\x47", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_proto = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "proto", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_24_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_proto._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(58) +codecs_toplevel_consts_24_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 417, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__reduce_ex__), + .co_qualname = & codecs_toplevel_consts_24_consts_11_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_24_consts_14 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +codecs_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & const_str_StreamWriter._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_24_consts_2.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_3.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_4.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_5.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & codecs_toplevel_consts_24_consts_7.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_8.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_9.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_10.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_11.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +codecs_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__init__), + &_Py_ID(write), + & const_str_writelines._ascii.ob_base, + &_Py_ID(reset), + &_Py_ID(seek), + &_Py_ID(getattr), + &_Py_ID(__getattr__), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + &_Py_ID(__reduce_ex__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[181]; + } +codecs_toplevel_consts_24_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 180, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x17\x05\x1d\xf0\x00\x17\x05\x1d\xf0\x00\x17\x05\x1d\xf0\x00\x17\x05\x1d\xf0\x32\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x0e\x05\x05\x22\xf0\x00\x05\x05\x22\xf0\x00\x05\x05\x22\xf0\x0e\x0a\x05\x0d\xf0\x00\x0a\x05\x0d\xf0\x00\x0a\x05\x0d\xf0\x18\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x0c\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", +}; +static + struct _PyCode_DEF(76) +codecs_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 38, + }, + .co_consts = & codecs_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 346, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_StreamWriter._ascii.ob_base, + .co_qualname = & const_str_StreamWriter._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x0d\x64\x02\x84\x01\x5a\x03\x64\x03\x84\x00\x5a\x04\x64\x04\x84\x00\x5a\x05\x64\x05\x84\x00\x5a\x06\x64\x0e\x64\x07\x84\x01\x5a\x07\x65\x08\x66\x01\x64\x08\x84\x01\x5a\x09\x64\x09\x84\x00\x5a\x0a\x64\x0a\x84\x00\x5a\x0b\x64\x0b\x84\x00\x5a\x0c\x64\x0c\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[654]; + } +codecs_toplevel_consts_26_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 653, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x70\x65\x6e\x20\x66\x6f\x72\x20\x72\x65\x61\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x20\x61\x72\x65\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x2d\x20\x72\x61\x69\x73\x65\x20\x61\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x28\x6f\x72\x20\x61\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x69\x67\x6e\x6f\x72\x65\x27\x20\x2d\x20\x69\x67\x6e\x6f\x72\x65\x20\x74\x68\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x72\x65\x70\x6c\x61\x63\x65\x27\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x64\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x3b\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x20\x76\x61\x6c\x75\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\x78\x74\x65\x6e\x64\x65\x64\x20\x76\x69\x61\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x67\x69\x73\x74\x65\x72\x5f\x65\x72\x72\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_26_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & codecs_toplevel_consts_26_consts_2_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_empty), + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_bytebuffer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bytebuffer", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_charbuffertype = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "charbuffertype", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__empty_charbuffer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_empty_charbuffer", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_charbuffer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "charbuffer", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_linebuffer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "linebuffer", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +codecs_toplevel_consts_26_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + &_Py_ID(errors), + & const_str_bytebuffer._ascii.ob_base, + & const_str_charbuffertype._ascii.ob_base, + & const_str__empty_charbuffer._ascii.ob_base, + & const_str_charbuffer._ascii.ob_base, + & const_str_linebuffer._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +codecs_toplevel_consts_26_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[67]; + } +codecs_toplevel_consts_26_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 66, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x24\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x1a\x1d\x88\x04\x8c\x0f\xd8\x21\x25\xd7\x21\x34\xd2\x21\x34\xd1\x21\x36\xd4\x21\x36\x88\x04\xd4\x08\x1e\xd8\x1a\x1e\xd4\x1a\x30\x88\x04\x8c\x0f\xd8\x1a\x1e\x88\x04\x8c\x0f\x88\x0f\x88\x0f", +}; +static + struct _PyCode_DEF(136) +codecs_toplevel_consts_26_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 68, + }, + .co_consts = & codecs_toplevel_consts_26_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 426, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_26_consts_2_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x7c\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +codecs_toplevel_consts_26_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.decode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +codecs_toplevel_consts_26_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0e\x21\xd0\x08\x21", +}; +static + struct _PyCode_DEF(16) +codecs_toplevel_consts_26_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 451, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_14_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(decode), + .co_qualname = & codecs_toplevel_consts_26_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[1261]; + } +codecs_toplevel_consts_26_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1260, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x44\x65\x63\x6f\x64\x65\x73\x20\x64\x61\x74\x61\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x74\x72\x65\x61\x6d\x20\x73\x65\x6c\x66\x2e\x73\x74\x72\x65\x61\x6d\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x68\x61\x72\x73\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x68\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x63\x6f\x64\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x6f\x72\x20\x62\x79\x74\x65\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x2e\x20\x72\x65\x61\x64\x28\x29\x20\x77\x69\x6c\x6c\x20\x6e\x65\x76\x65\x72\x20\x72\x65\x74\x75\x72\x6e\x20\x6d\x6f\x72\x65\x20\x64\x61\x74\x61\x20\x74\x68\x61\x6e\x20\x72\x65\x71\x75\x65\x73\x74\x65\x64\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x74\x20\x69\x74\x20\x6d\x69\x67\x68\x74\x20\x72\x65\x74\x75\x72\x6e\x20\x6c\x65\x73\x73\x2c\x20\x69\x66\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x6e\x6f\x75\x67\x68\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x7a\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x78\x69\x6d\x61\x74\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x6f\x64\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x62\x79\x74\x65\x73\x20\x6f\x72\x20\x63\x6f\x64\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x72\x65\x61\x64\x20\x66\x6f\x72\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x2e\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x61\x6e\x20\x6d\x6f\x64\x69\x66\x79\x20\x74\x68\x69\x73\x20\x73\x65\x74\x74\x69\x6e\x67\x20\x61\x73\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x2e\x20\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x76\x61\x6c\x75\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2d\x31\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x6f\x20\x72\x65\x61\x64\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x65\x20\x61\x73\x20\x6d\x75\x63\x68\x20\x61\x73\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x2e\x20\x20\x73\x69\x7a\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x73\x20\x69\x6e\x74\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x70\x72\x65\x76\x65\x6e\x74\x20\x68\x61\x76\x69\x6e\x67\x20\x74\x6f\x20\x64\x65\x63\x6f\x64\x65\x20\x68\x75\x67\x65\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x20\x6f\x6e\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x65\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x66\x69\x72\x73\x74\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x75\x65\x2c\x20\x61\x6e\x64\x20\x61\x20\x55\x6e\x69\x63\x6f\x64\x65\x44\x65\x63\x6f\x64\x65\x45\x72\x72\x6f\x72\x20\x68\x61\x70\x70\x65\x6e\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6c\x69\x6e\x65\x20\x74\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x69\x6e\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6c\x69\x6e\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2c\x20\x74\x68\x65\x20\x72\x65\x73\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x75\x6e\x74\x69\x6c\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6e\x65\x78\x74\x20\x63\x61\x6c\x6c\x20\x74\x6f\x20\x72\x65\x61\x64\x28\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x73\x68\x6f\x75\x6c\x64\x20\x75\x73\x65\x20\x61\x20\x67\x72\x65\x65\x64\x79\x20\x72\x65\x61\x64\x20\x73\x74\x72\x61\x74\x65\x67\x79\x2c\x20\x6d\x65\x61\x6e\x69\x6e\x67\x20\x74\x68\x61\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x72\x65\x61\x64\x20\x61\x73\x20\x6d\x75\x63\x68\x20\x64\x61\x74\x61\x20\x61\x73\x20\x69\x73\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x77\x69\x74\x68\x69\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x73\x69\x7a\x65\x2c\x20\x65\x2e\x67\x2e\x20\x20\x69\x66\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x6e\x64\x69\x6e\x67\x73\x20\x6f\x72\x20\x73\x74\x61\x74\x65\x20\x6d\x61\x72\x6b\x65\x72\x73\x20\x61\x72\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x74\x72\x65\x61\x6d\x2c\x20\x74\x68\x65\x73\x65\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x72\x65\x61\x64\x20\x74\x6f\x6f\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_keepends = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "keepends", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_26_consts_6_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_keepends._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +codecs_toplevel_consts_26_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & codecs_toplevel_consts_26_consts_6_consts_0._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_True, + & codecs_toplevel_consts_26_consts_6_consts_4._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_start = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "start", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_splitlines = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "splitlines", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +codecs_toplevel_consts_26_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_linebuffer._ascii.ob_base, + & const_str__empty_charbuffer._ascii.ob_base, + &_Py_ID(join), + & const_str_charbuffer._ascii.ob_base, + &_Py_ID(len), + & const_str_stream._ascii.ob_base, + &_Py_ID(read), + & const_str_bytebuffer._ascii.ob_base, + &_Py_ID(decode), + &_Py_ID(errors), + & const_str_UnicodeDecodeError._ascii.ob_base, + & const_str_start._ascii.ob_base, + & const_str_splitlines._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +codecs_toplevel_consts_26_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.read", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[472]; + } +codecs_toplevel_consts_26_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 471, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x38\x00\x0c\x10\x8c\x3f\xf0\x00\x02\x09\x23\xd8\x1e\x22\xd4\x1e\x34\xd7\x1e\x39\xd2\x1e\x39\xb8\x24\xbc\x2f\xd1\x1e\x4a\xd4\x1e\x4a\x88\x44\x8c\x4f\xd8\x1e\x22\x88\x44\x8c\x4f\xe0\x0b\x10\x90\x31\x8a\x39\x88\x39\xf0\x06\x00\x15\x19\x88\x45\xf0\x06\x1f\x09\x16\xe0\x0f\x14\x98\x01\x8a\x7a\x88\x7a\xdd\x13\x16\x90\x74\x94\x7f\xd1\x13\x27\xd4\x13\x27\xa8\x35\xd2\x13\x30\xd0\x13\x30\xd8\x14\x19\xe0\x0f\x13\x90\x61\x8a\x78\x88\x78\xd8\x1a\x1e\x9c\x2b\xd7\x1a\x2a\xd2\x1a\x2a\xd1\x1a\x2c\xd4\x1a\x2c\x90\x07\x90\x07\xe0\x1a\x1e\x9c\x2b\xd7\x1a\x2a\xd2\x1a\x2a\xa8\x34\xd1\x1a\x30\xd4\x1a\x30\x90\x07\xe0\x13\x17\x94\x3f\xa0\x57\xd1\x13\x2c\x88\x44\xd8\x13\x17\xf0\x00\x01\x0d\x16\xd8\x10\x15\xf0\x02\x0a\x0d\x1a\xd8\x29\x2d\xaf\x1b\xaa\x1b\xb0\x54\xb8\x34\xbc\x3b\xd1\x29\x47\xd4\x29\x47\xd1\x10\x26\x90\x08\x98\x2c\x98\x2c\xf8\xdd\x13\x25\xf0\x00\x08\x0d\x1a\xf0\x00\x08\x0d\x1a\xf0\x00\x08\x0d\x1a\xd8\x13\x1c\xf0\x00\x07\x11\x1a\xe0\x18\x1c\x9f\x0b\x9a\x0b\xa0\x44\xa8\x1a\xa8\x23\xac\x29\xa8\x1a\xd4\x24\x34\xb0\x64\xb4\x6b\xd1\x18\x42\xd4\x18\x42\xf1\x03\x00\x15\x2b\x90\x48\x98\x6c\xe0\x1c\x24\xd7\x1c\x2f\xd2\x1c\x2f\xb8\x14\xd0\x1c\x2f\xd1\x1c\x3e\xd4\x1c\x3e\x90\x45\xdd\x17\x1a\x98\x35\x91\x7a\x94\x7a\xa0\x31\x92\x7d\x90\x7d\xd8\x18\x1d\xf0\x03\x00\x18\x25\xf0\x06\x00\x15\x1a\xf0\x07\x00\x18\x25\x90\x7d\x90\x7d\x90\x7d\x90\x7d\xf8\xf8\xf8\xf8\xf0\x0b\x08\x0d\x1a\xf8\xf8\xf8\xf0\x14\x00\x1f\x23\xa0\x3c\xa0\x3d\xa0\x3d\xd4\x1e\x31\x88\x44\x8c\x4f\xe0\x0c\x10\x88\x4f\x8c\x4f\x98\x78\xd1\x0c\x27\x88\x4f\x8c\x4f\xe0\x13\x1a\xf0\x00\x01\x0d\x16\xd8\x10\x15\xf1\x3f\x1f\x09\x16\xf0\x40\x01\x00\x0c\x11\x90\x31\x8a\x39\x88\x39\xe0\x15\x19\x94\x5f\x88\x46\xd8\x1e\x22\xd4\x1e\x34\x88\x44\x8c\x4f\x88\x4f\xf0\x06\x00\x16\x1a\x94\x5f\xa0\x56\xa0\x65\xa0\x56\xd4\x15\x2c\x88\x46\xd8\x1e\x22\x9c\x6f\xa8\x65\xa8\x66\xa8\x66\xd4\x1e\x35\x88\x44\x8c\x4f\xd8\x0f\x15\x88\x0d", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +codecs_toplevel_consts_26_consts_6_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\xc2\x23\x1e\x43\x02\x00\xc3\x02\x0a\x44\x2f\x03\xc3\x0c\x41\x19\x44\x2a\x03\xc4\x2a\x05\x44\x2f\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_chars = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "chars", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_firstline = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "firstline", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_newdata = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "newdata", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_newchars = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "newchars", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_decodedbytes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "decodedbytes", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_lines = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lines", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +codecs_toplevel_consts_26_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_size._ascii.ob_base, + & const_str_chars._ascii.ob_base, + & const_str_firstline._ascii.ob_base, + & const_str_newdata._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_newchars._ascii.ob_base, + & const_str_decodedbytes._ascii.ob_base, + & const_str_exc._ascii.ob_base, + & const_str_lines._ascii.ob_base, + & const_str_result._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(810) +codecs_toplevel_consts_26_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 405, + }, + .co_consts = & codecs_toplevel_consts_26_consts_6_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_26_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = & codecs_toplevel_consts_26_consts_6_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 454, + .co_nlocalsplus = 11, + .co_nlocals = 11, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_26_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_8_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(read), + .co_qualname = & codecs_toplevel_consts_26_consts_6_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2b\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x02\x7c\x01\x7d\x02\x09\x00\x7c\x02\x64\x02\x6b\x05\x00\x00\x00\x00\x72\x19\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x6b\x05\x00\x00\x00\x00\x72\x01\x6e\xfb\x7c\x01\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x1a\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x1a\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7a\x00\x00\x00\x7d\x05\x7c\x05\x73\x01\x6e\xb4\x09\x00\x7c\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x07\x6e\x70\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x63\x7d\x08\x7c\x03\x72\x56\x7c\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x01\x7c\x08\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x07\x7c\x06\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xac\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x01\x00\x00\x00\x00\x72\x01\x82\x00\x6e\x01\x82\x00\x59\x00\x64\x01\x7d\x08\x7e\x08\x6e\x08\x64\x01\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x05\x7c\x07\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x78\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7a\x0d\x00\x00\x63\x02\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x73\x01\x6e\x02\x90\x01\x8c\x1a\x7c\x02\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x14\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x23\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[178]; + } +codecs_toplevel_consts_26_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 177, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x52\x65\x61\x64\x20\x6f\x6e\x65\x20\x6c\x69\x6e\x65\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x65\x61\x6d\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x64\x61\x74\x61\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x7a\x65\x2c\x20\x69\x66\x20\x67\x69\x76\x65\x6e\x2c\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x61\x73\x20\x73\x69\x7a\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x74\x6f\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x61\x64\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_26_consts_9_consts_8 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_firstline._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +codecs_toplevel_consts_26_consts_9_consts_9 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_26_consts_9_consts_11 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_size._ascii.ob_base, + & const_str_chars._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_8000 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 8000 }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +codecs_toplevel_consts_26_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & codecs_toplevel_consts_26_consts_9_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + Py_False, + & codecs_toplevel_consts_26_consts_6_consts_4._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 72], + Py_True, + & codecs_toplevel_consts_26_consts_9_consts_8._object.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_9_consts_9._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[13]), + & codecs_toplevel_consts_26_consts_9_consts_11._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & const_int_8000.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_bytes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bytes", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +codecs_toplevel_consts_26_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_linebuffer._ascii.ob_base, + &_Py_ID(len), + & const_str_charbuffer._ascii.ob_base, + & const_str_splitlines._ascii.ob_base, + & const_str__empty_charbuffer._ascii.ob_base, + &_Py_ID(read), + &_Py_ID(isinstance), + & const_str_str._ascii.ob_base, + & const_str_endswith._ascii.ob_base, + & const_str_bytes._ascii.ob_base, + &_Py_ID(join), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +codecs_toplevel_consts_26_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.readline", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[655]; + } +codecs_toplevel_consts_26_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 654, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x16\x00\x0c\x10\x8c\x3f\xf0\x00\x0a\x09\x18\xd8\x13\x17\x94\x3f\xa0\x31\xd4\x13\x25\x88\x44\xd8\x10\x14\x94\x0f\xa0\x01\xd0\x10\x22\xdd\x0f\x12\x90\x34\x94\x3f\xd1\x0f\x23\xd4\x0f\x23\xa0\x71\xd2\x0f\x28\xd0\x0f\x28\xf0\x06\x00\x23\x27\xa4\x2f\xb0\x21\xd4\x22\x34\x90\x04\x94\x0f\xd8\x22\x26\x90\x04\x94\x0f\xd8\x13\x1b\xf0\x00\x01\x0d\x3a\xd8\x17\x1b\x97\x7f\x92\x7f\xb0\x05\x90\x7f\xd1\x17\x36\xd4\x17\x36\xb0\x71\xd4\x17\x39\x90\x04\xd8\x13\x17\x88\x4b\xe0\x13\x17\x90\x3a\x98\x32\x88\x08\xd8\x0f\x13\xd4\x0f\x25\x88\x04\xf0\x04\x2e\x09\x1e\xd8\x13\x17\x97\x39\x92\x39\x98\x58\xb0\x14\x90\x39\xd1\x13\x36\xd4\x13\x36\x88\x44\xd8\x0f\x13\xf0\x00\x06\x0d\x37\xf5\x08\x00\x15\x1f\x98\x74\xa5\x53\xd1\x14\x29\xd4\x14\x29\xf0\x00\x02\x11\x37\xa8\x64\xaf\x6d\xaa\x6d\xb8\x44\xd1\x2e\x41\xd4\x2e\x41\xf0\x00\x02\x11\x37\xdd\x14\x1e\x98\x74\xa5\x55\xd1\x14\x2b\xd4\x14\x2b\xf0\x03\x02\x11\x37\xd8\x30\x34\xb7\x0d\xb2\x0d\xb8\x65\xd1\x30\x44\xd4\x30\x44\xf0\x03\x02\x11\x37\xe0\x14\x18\x98\x44\x9f\x49\x9a\x49\xa8\x31\xb0\x41\x98\x49\xd1\x1c\x36\xd4\x1c\x36\xd1\x14\x36\x90\x44\xe0\x0c\x10\x90\x44\x89\x4c\x88\x44\xd8\x14\x18\x97\x4f\x92\x4f\xa8\x54\x90\x4f\xd1\x14\x32\xd4\x14\x32\x88\x45\xd8\x0f\x14\xf0\x00\x1b\x0d\x1a\xdd\x13\x16\x90\x75\x91\x3a\x94\x3a\xa0\x01\x92\x3e\x90\x3e\xf0\x06\x00\x1c\x21\xa0\x11\x9c\x38\x90\x44\xd8\x18\x1d\x98\x61\x98\x08\xdd\x17\x1a\x98\x35\x91\x7a\x94\x7a\xa0\x41\x92\x7e\x90\x7e\xe0\x18\x1d\x98\x62\x98\x09\x98\x09\x9c\x09\xa0\x54\xa4\x5f\xd1\x18\x34\x98\x09\x98\x09\x99\x09\xd8\x2a\x2f\x98\x04\x9c\x0f\xd8\x2a\x2e\x98\x04\x9c\x0f\x98\x0f\xf0\x06\x00\x2b\x30\xb0\x01\xac\x28\xb0\x54\xb4\x5f\xd1\x2a\x44\x98\x04\x9c\x0f\xd8\x1b\x23\xf0\x00\x01\x15\x42\x01\xd8\x1f\x23\x9f\x7f\x9a\x7f\xb8\x05\x98\x7f\xd1\x1f\x3e\xd4\x1f\x3e\xb8\x71\xd4\x1f\x41\x98\x04\xd8\x14\x19\xd8\x1f\x24\xa0\x51\x9c\x78\x90\x0c\xd8\x22\x27\xa8\x01\xa4\x28\xd7\x22\x35\xd2\x22\x35\xb8\x75\xd0\x22\x35\xd1\x22\x45\xd4\x22\x45\xc0\x61\xd4\x22\x48\x90\x0f\xd8\x13\x1f\xa0\x3f\xd2\x13\x32\xd0\x13\x32\xe0\x26\x2a\xd4\x26\x3c\xd7\x26\x41\xd2\x26\x41\xc0\x25\xc8\x01\xc8\x02\xc8\x02\xc4\x29\xd1\x26\x4c\xd4\x26\x4c\xd8\x26\x2a\xa4\x6f\xf1\x03\x01\x27\x36\x90\x44\x94\x4f\xe0\x17\x1f\xf0\x00\x03\x15\x2f\xd8\x1f\x2b\x98\x04\x98\x04\xe0\x1f\x2e\x98\x04\xd8\x14\x19\xe0\x13\x17\xf0\x00\x03\x0d\x16\x98\x34\xd0\x1b\x2b\xd8\x13\x17\xf0\x00\x01\x11\x3e\xa0\x08\xf0\x00\x01\x11\x3e\xd8\x1b\x1f\x9f\x3f\x9a\x3f\xb0\x45\x98\x3f\xd1\x1b\x3a\xd4\x1b\x3a\xb8\x31\xd4\x1b\x3d\x90\x44\xd8\x10\x15\xd8\x0f\x17\x98\x24\x8a\x7f\x88\x7f\xd8\x10\x18\x98\x41\x91\x0d\x90\x08\xf1\x5d\x01\x2e\x09\x1e\xf0\x5e\x01\x00\x10\x14\x88\x0b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_readsize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "readsize", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_line0withend = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "line0withend", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_line0withoutend = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "line0withoutend", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +codecs_toplevel_consts_26_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_size._ascii.ob_base, + & const_str_keepends._ascii.ob_base, + &_Py_ID(line), + & const_str_readsize._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_lines._ascii.ob_base, + & const_str_line0withend._ascii.ob_base, + & const_str_line0withoutend._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(1156) +codecs_toplevel_consts_26_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 578, + }, + .co_consts = & codecs_toplevel_consts_26_consts_9_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_26_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 534, + .co_nlocalsplus = 9, + .co_nlocals = 9, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_26_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(readline), + .co_qualname = & codecs_toplevel_consts_26_consts_9_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x66\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x3d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x19\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x73\x1c\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x53\x00\x7c\x01\x70\x01\x64\x06\x7d\x04\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x09\x00\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x07\xac\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x72\x6e\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x05\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x2a\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2f\x7c\x05\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x05\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x02\xac\x0b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x7d\x05\x7c\x03\x7c\x05\x7a\x0d\x00\x00\x7d\x03\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\xf0\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x04\x00\x00\x00\x00\x72\x76\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x06\x64\x01\x3d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x04\x00\x00\x00\x00\x72\x24\x7c\x06\x64\x0c\x78\x02\x78\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x63\x03\x63\x02\x3c\x00\x00\x00\x7c\x06\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x15\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x73\x1c\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x99\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x07\x7c\x08\x6b\x03\x00\x00\x00\x00\x72\x37\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x64\x02\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x72\x03\x7c\x07\x7d\x03\x6e\x02\x7c\x08\x7d\x03\x6e\x32\x7c\x05\x72\x02\x7c\x01\x81\x21\x7c\x03\x72\x1e\x7c\x02\x73\x1c\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x0d\x7c\x04\x64\x0d\x6b\x00\x00\x00\x00\x00\x72\x05\x7c\x04\x64\x0e\x7a\x12\x00\x00\x7d\x04\x90\x01\x8c\xc6\x7c\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[340]; + } +codecs_toplevel_consts_26_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 339, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x52\x65\x61\x64\x20\x61\x6c\x6c\x20\x6c\x69\x6e\x65\x73\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x6f\x6e\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x65\x61\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x6d\x20\x61\x73\x20\x61\x20\x6c\x69\x73\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x4c\x69\x6e\x65\x20\x62\x72\x65\x61\x6b\x73\x20\x61\x72\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x27\x73\x20\x64\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x20\x61\x6e\x64\x20\x61\x72\x65\x20\x69\x6e\x63\x6c\x75\x64\x65\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x6c\x69\x73\x74\x20\x65\x6e\x74\x72\x69\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x7a\x65\x68\x69\x6e\x74\x2c\x20\x69\x66\x20\x67\x69\x76\x65\x6e\x2c\x20\x69\x73\x20\x69\x67\x6e\x6f\x72\x65\x64\x20\x73\x69\x6e\x63\x65\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x6e\x6f\x20\x65\x66\x66\x69\x63\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x61\x79\x20\x74\x6f\x20\x66\x69\x6e\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x74\x72\x75\x65\x20\x65\x6e\x64\x2d\x6f\x66\x2d\x6c\x69\x6e\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_26_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_26_consts_10_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_26_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(read), + & const_str_splitlines._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_readlines = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "readlines", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_26_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.readlines", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +codecs_toplevel_consts_26_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x18\x00\x10\x14\x8f\x79\x8a\x79\x89\x7b\x8c\x7b\x88\x04\xd8\x0f\x13\x8f\x7f\x8a\x7f\x98\x78\xd1\x0f\x28\xd4\x0f\x28\xd0\x08\x28", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_sizehint = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sizehint", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_26_consts_10_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_sizehint._ascii.ob_base, + & const_str_keepends._ascii.ob_base, + & const_str_data._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(84) +codecs_toplevel_consts_26_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & codecs_toplevel_consts_26_consts_10_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_26_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 609, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_26_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_readlines._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_26_consts_10_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[237]; + } +codecs_toplevel_consts_26_consts_11_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 236, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x62\x75\x66\x66\x65\x72\x73\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x6e\x6f\x20\x73\x74\x72\x65\x61\x6d\x20\x72\x65\x70\x6f\x73\x69\x74\x69\x6f\x6e\x69\x6e\x67\x20\x73\x68\x6f\x75\x6c\x64\x20\x74\x61\x6b\x65\x20\x70\x6c\x61\x63\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x73\x20\x70\x72\x69\x6d\x61\x72\x69\x6c\x79\x20\x69\x6e\x74\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x72\x65\x63\x6f\x76\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x66\x72\x6f\x6d\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x65\x72\x72\x6f\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_26_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & codecs_toplevel_consts_26_consts_11_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_empty), + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_26_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_bytebuffer._ascii.ob_base, + & const_str__empty_charbuffer._ascii.ob_base, + & const_str_charbuffer._ascii.ob_base, + & const_str_linebuffer._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +codecs_toplevel_consts_26_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.reset", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[33]; + } +codecs_toplevel_consts_26_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 32, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x12\x00\x1b\x1e\x88\x04\x8c\x0f\xd8\x1a\x1e\xd4\x1a\x30\x88\x04\x8c\x0f\xd8\x1a\x1e\x88\x04\x8c\x0f\x88\x0f\x88\x0f", +}; +static + struct _PyCode_DEF(58) +codecs_toplevel_consts_26_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & codecs_toplevel_consts_26_consts_11_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_26_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 624, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_26_consts_11_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[113]; + } +codecs_toplevel_consts_26_consts_13_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 112, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x53\x65\x74\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x65\x61\x6d\x27\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x62\x75\x66\x66\x65\x72\x73\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x73\x74\x61\x74\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_26_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_26_consts_13_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +codecs_toplevel_consts_26_consts_13_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.seek", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[46]; + } +codecs_toplevel_consts_26_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 45, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x09\x0d\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x08\x0c\x8f\x0a\x8a\x0a\x89\x0c\x8c\x0c\x88\x0c\x88\x0c\x88\x0c", +}; +static + struct _PyCode_DEF(100) +codecs_toplevel_consts_26_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 50, + }, + .co_consts = & codecs_toplevel_consts_26_consts_13_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 637, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(seek), + .co_qualname = & codecs_toplevel_consts_26_consts_13_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[53]; + } +codecs_toplevel_consts_26_consts_14_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 52, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " Return the next decoded line from the input stream.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_26_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_26_consts_14_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_StopIteration = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StopIteration", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_26_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(readline), + & const_str_StopIteration._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +codecs_toplevel_consts_26_consts_14_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.__next__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[37]; + } +codecs_toplevel_consts_26_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 36, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x00\x10\x14\x8f\x7d\x8a\x7d\x89\x7f\x8c\x7f\x88\x04\xd8\x0b\x0f\xf0\x00\x01\x09\x18\xd8\x13\x17\x88\x4b\xdd\x0e\x1b\xd0\x08\x1b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_26_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(line), + }, + }, +}; +static + struct _PyCode_DEF(64) +codecs_toplevel_consts_26_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 32, + }, + .co_consts = & codecs_toplevel_consts_26_consts_14_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_26_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 645, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_26_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__next__), + .co_qualname = & codecs_toplevel_consts_26_consts_14_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x72\x02\x7c\x01\x53\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +codecs_toplevel_consts_26_consts_15_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.__iter__", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_26_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 653, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & codecs_toplevel_consts_26_consts_15_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +codecs_toplevel_consts_26_consts_16_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.__getattr__", +}; +static + struct _PyCode_DEF(36) +codecs_toplevel_consts_26_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 656, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getattr__), + .co_qualname = & codecs_toplevel_consts_26_consts_16_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_26_consts_17_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.__enter__", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_26_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 663, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & codecs_toplevel_consts_26_consts_17_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +codecs_toplevel_consts_26_consts_18_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.__exit__", +}; +static + struct _PyCode_DEF(56) +codecs_toplevel_consts_26_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 666, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & codecs_toplevel_consts_26_consts_18_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +codecs_toplevel_consts_26_consts_19_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReader.__reduce_ex__", +}; +static + struct _PyCode_DEF(58) +codecs_toplevel_consts_26_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 669, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__reduce_ex__), + .co_qualname = & codecs_toplevel_consts_26_consts_19_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_26_consts_21 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[24]; + }_object; + } +codecs_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 24, + }, + .ob_item = { + & const_str_StreamReader._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_26_consts_2.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_3.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + Py_False, + & codecs_toplevel_consts_26_consts_6.ob_base.ob_base, + Py_None, + Py_True, + & codecs_toplevel_consts_26_consts_9.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_10.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_11.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & codecs_toplevel_consts_26_consts_13.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_14.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_15.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_16.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_17.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_18.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_19.ob_base.ob_base, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_26_consts_21._object.ob_base.ob_base, + & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[19]; + }_object; + } +codecs_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 19, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + & const_str_str._ascii.ob_base, + & const_str_charbuffertype._ascii.ob_base, + &_Py_ID(__init__), + &_Py_ID(decode), + &_Py_ID(read), + &_Py_ID(readline), + & const_str_readlines._ascii.ob_base, + &_Py_ID(reset), + &_Py_ID(seek), + &_Py_ID(__next__), + &_Py_ID(__iter__), + &_Py_ID(getattr), + &_Py_ID(__getattr__), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + &_Py_ID(__reduce_ex__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[276]; + } +codecs_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 275, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x15\x18\x80\x4e\xf0\x04\x17\x05\x1f\xf0\x00\x17\x05\x1f\xf0\x00\x17\x05\x1f\xf0\x00\x17\x05\x1f\xf0\x32\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x06\x4e\x01\x05\x16\xf0\x00\x4e\x01\x05\x16\xf0\x00\x4e\x01\x05\x16\xf0\x00\x4e\x01\x05\x16\xf0\x60\x02\x49\x01\x05\x14\xf0\x00\x49\x01\x05\x14\xf0\x00\x49\x01\x05\x14\xf0\x00\x49\x01\x05\x14\xf0\x56\x02\x0d\x05\x29\xf0\x00\x0d\x05\x29\xf0\x00\x0d\x05\x29\xf0\x00\x0d\x05\x29\xf0\x1e\x0b\x05\x1f\xf0\x00\x0b\x05\x1f\xf0\x00\x0b\x05\x1f\xf0\x1a\x06\x05\x15\xf0\x00\x06\x05\x15\xf0\x00\x06\x05\x15\xf0\x00\x06\x05\x15\xf0\x10\x06\x05\x1c\xf0\x00\x06\x05\x1c\xf0\x00\x06\x05\x1c\xf0\x10\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x08\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", +}; +static + struct _PyCode_DEF(112) +codecs_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 56, + }, + .co_consts = & codecs_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 422, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_StreamReader._ascii.ob_base, + .co_qualname = & const_str_StreamReader._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x5a\x04\x64\x14\x64\x02\x84\x01\x5a\x05\x64\x14\x64\x03\x84\x01\x5a\x06\x64\x15\x64\x06\x84\x01\x5a\x07\x64\x16\x64\x09\x84\x01\x5a\x08\x64\x16\x64\x0a\x84\x01\x5a\x09\x64\x0b\x84\x00\x5a\x0a\x64\x17\x64\x0d\x84\x01\x5a\x0b\x64\x0e\x84\x00\x5a\x0c\x64\x0f\x84\x00\x5a\x0d\x65\x0e\x66\x01\x64\x10\x84\x01\x5a\x0f\x64\x11\x84\x00\x5a\x10\x64\x12\x84\x00\x5a\x11\x64\x13\x84\x00\x5a\x12\x64\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[258]; + } +codecs_toplevel_consts_28_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 257, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6c\x6c\x6f\x77\x20\x77\x72\x61\x70\x70\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x73\x20\x77\x68\x69\x63\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x6f\x72\x6b\x20\x69\x6e\x20\x62\x6f\x74\x68\x20\x72\x65\x61\x64\x20\x61\x6e\x64\x20\x77\x72\x69\x74\x65\x20\x6d\x6f\x64\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x73\x69\x67\x6e\x20\x69\x73\x20\x73\x75\x63\x68\x20\x74\x68\x61\x74\x20\x6f\x6e\x65\x20\x63\x61\x6e\x20\x75\x73\x65\x20\x74\x68\x65\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x2e\x6c\x6f\x6f\x6b\x75\x70\x28\x29\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_unknown = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "unknown", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[339]; + } +codecs_toplevel_consts_28_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 338, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x61\x64\x65\x72\x2c\x20\x57\x72\x69\x74\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x6f\x72\x20\x63\x6c\x61\x73\x73\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x2c\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x72\x65\x73\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x45\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x69\x73\x20\x64\x6f\x6e\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x77\x61\x79\x20\x61\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x2f\x52\x65\x61\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_28_consts_4_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_reader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "reader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_writer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "writer", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_28_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + & const_str_reader._ascii.ob_base, + & const_str_writer._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_28_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[61]; + } +codecs_toplevel_consts_28_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 60, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x1a\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_Reader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Reader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_Writer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Writer", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +codecs_toplevel_consts_28_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_stream._ascii.ob_base, + & const_str_Reader._ascii.ob_base, + & const_str_Writer._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct _PyCode_DEF(102) +codecs_toplevel_consts_28_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 51, + }, + .co_consts = & codecs_toplevel_consts_28_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 5, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 687, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_28_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_28_consts_4_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x02\x7c\x01\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x03\x7c\x01\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + &_Py_ID(read), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +codecs_toplevel_consts_28_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.read", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +codecs_toplevel_consts_28_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x1f\xd2\x0f\x1f\xa0\x04\xd1\x0f\x25\xd4\x0f\x25\xd0\x08\x25", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_size._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(54) +codecs_toplevel_consts_28_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 27, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 705, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_28_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(read), + .co_qualname = & codecs_toplevel_consts_28_consts_6_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + &_Py_ID(readline), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_28_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.readline", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +codecs_toplevel_consts_28_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x23\xd2\x0f\x23\xa0\x44\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", +}; +static + struct _PyCode_DEF(54) +codecs_toplevel_consts_28_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 27, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 709, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_28_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(readline), + .co_qualname = & codecs_toplevel_consts_28_consts_8_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + & const_str_readlines._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +codecs_toplevel_consts_28_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.readlines", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +codecs_toplevel_consts_28_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x24\xd2\x0f\x24\xa0\x58\xd1\x0f\x2e\xd4\x0f\x2e\xd0\x08\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_sizehint._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(54) +codecs_toplevel_consts_28_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 27, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 713, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_28_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_readlines._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_28_consts_9_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(next), + & const_str_reader._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_28_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.__next__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +codecs_toplevel_consts_28_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x10\x14\x90\x44\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\xd0\x08\x20", +}; +static + struct _PyCode_DEF(42) +codecs_toplevel_consts_28_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & codecs_toplevel_consts_26_consts_14_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 717, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__next__), + .co_qualname = & codecs_toplevel_consts_28_consts_10_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_28_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.__iter__", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_28_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 722, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & codecs_toplevel_consts_28_consts_11_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_writer._ascii.ob_base, + &_Py_ID(write), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +codecs_toplevel_consts_28_consts_12_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.write", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +codecs_toplevel_consts_28_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x20\xd2\x0f\x20\xa0\x14\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_12_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_data._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(54) +codecs_toplevel_consts_28_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 27, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 725, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_28_consts_12_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(write), + .co_qualname = & codecs_toplevel_consts_28_consts_12_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_28_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_writer._ascii.ob_base, + & const_str_writelines._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +codecs_toplevel_consts_28_consts_13_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.writelines", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +codecs_toplevel_consts_28_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x25\xd2\x0f\x25\xa0\x64\xd1\x0f\x2b\xd4\x0f\x2b\xd0\x08\x2b", +}; +static + struct _PyCode_DEF(54) +codecs_toplevel_consts_28_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 27, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 729, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_writelines._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_28_consts_13_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_28_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + &_Py_ID(reset), + & const_str_writer._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +codecs_toplevel_consts_28_consts_14_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.reset", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[49]; + } +codecs_toplevel_consts_28_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 48, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", +}; +static + struct _PyCode_DEF(106) +codecs_toplevel_consts_28_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 53, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 733, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_28_consts_14_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +codecs_toplevel_consts_28_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + &_Py_ID(seek), + & const_str_reader._ascii.ob_base, + &_Py_ID(reset), + & const_str_writer._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +codecs_toplevel_consts_28_consts_16_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.seek", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[101]; + } +codecs_toplevel_consts_28_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 100, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x0b\x11\x90\x51\x8a\x3b\x88\x3b\x98\x36\xa0\x51\x9a\x3b\x98\x3b\xd8\x0c\x10\x8c\x4b\xd7\x0c\x1d\xd2\x0c\x1d\xd1\x0c\x1f\xd4\x0c\x1f\xd0\x0c\x1f\xd0\x0c\x1f\xd0\x0c\x1f\xf0\x03\x00\x0c\x17\x88\x3b\x98\x3b\x98\x3b", +}; +static + struct _PyCode_DEF(192) +codecs_toplevel_consts_28_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 96, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 738, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(seek), + .co_qualname = & codecs_toplevel_consts_28_consts_16_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x21\x7c\x01\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x1d\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +codecs_toplevel_consts_28_consts_17_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.__getattr__", +}; +static + struct _PyCode_DEF(36) +codecs_toplevel_consts_28_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 744, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getattr__), + .co_qualname = & codecs_toplevel_consts_28_consts_17_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +codecs_toplevel_consts_28_consts_18_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.__enter__", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_28_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 753, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & codecs_toplevel_consts_28_consts_18_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_28_consts_19_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.__exit__", +}; +static + struct _PyCode_DEF(56) +codecs_toplevel_consts_28_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 756, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & codecs_toplevel_consts_28_consts_19_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[33]; + } +codecs_toplevel_consts_28_consts_20_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 32, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamReaderWriter.__reduce_ex__", +}; +static + struct _PyCode_DEF(58) +codecs_toplevel_consts_28_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 759, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__reduce_ex__), + .co_qualname = & codecs_toplevel_consts_28_consts_20_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_28_consts_22 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[25]; + }_object; + } +codecs_toplevel_consts_28_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 25, + }, + .ob_item = { + & const_str_StreamReaderWriter._ascii.ob_base, + & codecs_toplevel_consts_28_consts_1._ascii.ob_base, + & const_str_unknown._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_28_consts_4.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & codecs_toplevel_consts_28_consts_6.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_28_consts_8.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_9.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_10.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_11.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_12.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_13.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_14.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & codecs_toplevel_consts_28_consts_16.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_17.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_18.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_19.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_20.ob_base.ob_base, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_22._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[20]; + }_object; + } +codecs_toplevel_consts_28_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 20, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(encoding), + &_Py_ID(__init__), + &_Py_ID(read), + &_Py_ID(readline), + & const_str_readlines._ascii.ob_base, + &_Py_ID(__next__), + &_Py_ID(__iter__), + &_Py_ID(write), + & const_str_writelines._ascii.ob_base, + &_Py_ID(reset), + &_Py_ID(seek), + &_Py_ID(getattr), + &_Py_ID(__getattr__), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + &_Py_ID(__reduce_ex__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[288]; + } +codecs_toplevel_consts_28_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 287, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x07\x05\x08\xf0\x00\x07\x05\x08\xf0\x12\x00\x10\x19\x80\x48\xf0\x04\x10\x05\x1d\xf0\x00\x10\x05\x1d\xf0\x00\x10\x05\x1d\xf0\x00\x10\x05\x1d\xf0\x24\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x08\x02\x05\x2a\xf0\x00\x02\x05\x2a\xf0\x00\x02\x05\x2a\xf0\x00\x02\x05\x2a\xf0\x08\x02\x05\x2f\xf0\x00\x02\x05\x2f\xf0\x00\x02\x05\x2f\xf0\x00\x02\x05\x2f\xf0\x08\x03\x05\x21\xf0\x00\x03\x05\x21\xf0\x00\x03\x05\x21\xf0\x0a\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x02\x05\x27\xf0\x00\x02\x05\x27\xf0\x00\x02\x05\x27\xf0\x08\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x08\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x0a\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x0e\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x12\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", +}; +static + struct _PyCode_DEF(120) +codecs_toplevel_consts_28 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 60, + }, + .co_consts = & codecs_toplevel_consts_28_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 674, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_StreamReaderWriter._ascii.ob_base, + .co_qualname = & const_str_StreamReaderWriter._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x15\x64\x04\x84\x01\x5a\x05\x64\x16\x64\x06\x84\x01\x5a\x06\x64\x17\x64\x08\x84\x01\x5a\x07\x64\x17\x64\x09\x84\x01\x5a\x08\x64\x0a\x84\x00\x5a\x09\x64\x0b\x84\x00\x5a\x0a\x64\x0c\x84\x00\x5a\x0b\x64\x0d\x84\x00\x5a\x0c\x64\x0e\x84\x00\x5a\x0d\x64\x18\x64\x10\x84\x01\x5a\x0e\x65\x0f\x66\x01\x64\x11\x84\x01\x5a\x10\x64\x12\x84\x00\x5a\x11\x64\x13\x84\x00\x5a\x12\x64\x14\x84\x00\x5a\x13\x64\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[579]; + } +codecs_toplevel_consts_30_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 578, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x73\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x20\x64\x61\x74\x61\x20\x66\x72\x6f\x6d\x20\x6f\x6e\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x74\x6f\x20\x61\x6e\x6f\x74\x68\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x79\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x41\x50\x49\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6f\x64\x65\x63\x73\x2e\x6c\x6f\x6f\x6b\x75\x70\x28\x29\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x6f\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x20\x74\x68\x65\x69\x72\x20\x74\x61\x73\x6b\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x44\x61\x74\x61\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x63\x6f\x64\x65\x72\x20\x69\x73\x20\x66\x69\x72\x73\x74\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x69\x6e\x74\x6f\x20\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x66\x6f\x72\x6d\x61\x74\x20\x28\x64\x65\x70\x65\x6e\x64\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68\x65\x20\x22\x64\x65\x63\x6f\x64\x65\x22\x20\x63\x6f\x64\x65\x63\x29\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x72\x69\x74\x65\x72\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x6e\x20\x74\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x2c\x20\x64\x61\x74\x61\x20\x69\x73\x20\x72\x65\x61\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x20\x75\x73\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x20\x52\x65\x61\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x61\x6c\x6c\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[746]; + } +codecs_toplevel_consts_30_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 745, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x77\x68\x69\x63\x68\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x73\x20\x61\x20\x74\x77\x6f\x2d\x77\x61\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x3a\x20\x65\x6e\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x65\x20\x77\x6f\x72\x6b\x20\x6f\x6e\x20\x74\x68\x65\x20\x66\x72\x6f\x6e\x74\x65\x6e\x64\x20\x28\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x61\x74\x61\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x74\x6f\x20\x2e\x72\x65\x61\x64\x28\x29\x20\x61\x6e\x64\x20\x2e\x77\x72\x69\x74\x65\x28\x29\x29\x20\x77\x68\x69\x6c\x65\x20\x52\x65\x61\x64\x65\x72\x20\x61\x6e\x64\x20\x57\x72\x69\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x6f\x72\x6b\x20\x6f\x6e\x20\x74\x68\x65\x20\x62\x61\x63\x6b\x65\x6e\x64\x20\x28\x74\x68\x65\x20\x64\x61\x74\x61\x20\x69\x6e\x20\x73\x74\x72\x65\x61\x6d\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x75\x73\x65\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x6f\x20\x64\x6f\x20\x74\x72\x61\x6e\x73\x70\x61\x72\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x63\x6f\x64\x69\x6e\x67\x73\x20\x66\x72\x6f\x6d\x20\x65\x2e\x67\x2e\x20\x6c\x61\x74\x69\x6e\x2d\x31\x20\x74\x6f\x20\x75\x74\x66\x2d\x38\x20\x61\x6e\x64\x20\x62\x61\x63\x6b\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x65\x20\x6d\x75\x73\x74\x20\x61\x64\x68\x65\x72\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x43\x6f\x64\x65\x63\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x3b\x20\x52\x65\x61\x64\x65\x72\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x57\x72\x69\x74\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x6f\x72\x20\x63\x6c\x61\x73\x73\x65\x73\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x61\x6e\x64\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x73\x20\x72\x65\x73\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x45\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x69\x73\x20\x64\x6f\x6e\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x77\x61\x79\x20\x61\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x2f\x52\x65\x61\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_30_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_30_consts_4_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +codecs_toplevel_consts_30_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_stream._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(decode), + & const_str_reader._ascii.ob_base, + & const_str_writer._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_30_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[75]; + } +codecs_toplevel_consts_30_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 74, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x2a\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +codecs_toplevel_consts_30_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_stream._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(decode), + & const_str_Reader._ascii.ob_base, + & const_str_Writer._ascii.ob_base, + &_Py_ID(errors), + }, + }, +}; +static + struct _PyCode_DEF(130) +codecs_toplevel_consts_30_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 65, + }, + .co_consts = & codecs_toplevel_consts_30_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 7, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 784, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_30_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & codecs_toplevel_consts_30_consts_4_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x04\x7c\x01\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x05\x7c\x01\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_30_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + &_Py_ID(read), + &_Py_ID(encode), + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +codecs_toplevel_consts_30_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.read", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[55]; + } +codecs_toplevel_consts_30_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 54, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x1f\xd2\x0f\x1f\xa0\x04\xd1\x0f\x25\xd4\x0f\x25\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x88\x0b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_bytesencoded = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bytesencoded", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_30_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_size._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_bytesencoded._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(118) +codecs_toplevel_consts_30_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 59, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 812, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_30_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(read), + .co_qualname = & codecs_toplevel_consts_30_consts_6_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_30_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + &_Py_ID(readline), + &_Py_ID(encode), + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_30_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.readline", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[81]; + } +codecs_toplevel_consts_30_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 80, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0f\x88\x3c\xd8\x13\x17\x94\x3b\xd7\x13\x27\xd2\x13\x27\xd1\x13\x29\xd4\x13\x29\x88\x44\x88\x44\xe0\x13\x17\x94\x3b\xd7\x13\x27\xd2\x13\x27\xa8\x04\xd1\x13\x2d\xd4\x13\x2d\x88\x44\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x88\x0b", +}; +static + struct _PyCode_DEF(174) +codecs_toplevel_consts_30_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 87, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 818, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_30_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(readline), + .co_qualname = & codecs_toplevel_consts_30_consts_8_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x80\x1a\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x1a\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_30_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + Py_True, + & codecs_toplevel_consts_26_consts_6_consts_4._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +codecs_toplevel_consts_30_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + &_Py_ID(read), + &_Py_ID(encode), + &_Py_ID(errors), + & const_str_splitlines._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +codecs_toplevel_consts_30_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.readlines", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[68]; + } +codecs_toplevel_consts_30_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 67, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x1f\xd2\x0f\x1f\xd1\x0f\x21\xd4\x0f\x21\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x8f\x7f\x8a\x7f\xa8\x04\x88\x7f\xd1\x0f\x2d\xd4\x0f\x2d\xd0\x08\x2d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_30_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_sizehint._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_bytesencoded._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(156) +codecs_toplevel_consts_30_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 78, + }, + .co_consts = & codecs_toplevel_consts_30_consts_9_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 827, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_30_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_readlines._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_30_consts_9_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xac\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_30_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(next), + & const_str_reader._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_30_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.__next__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[51]; + } +codecs_toplevel_consts_30_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 50, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x10\x14\x90\x44\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x88\x0b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_30_consts_10_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_bytesencoded._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(106) +codecs_toplevel_consts_30_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 53, + }, + .co_consts = & codecs_toplevel_consts_26_consts_14_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 833, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_30_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__next__), + .co_qualname = & codecs_toplevel_consts_30_consts_10_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_30_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.__iter__", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_30_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 840, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & codecs_toplevel_consts_30_consts_11_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_30_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(decode), + &_Py_ID(errors), + & const_str_writer._ascii.ob_base, + &_Py_ID(write), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +codecs_toplevel_consts_30_consts_12_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.write", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[51]; + } +codecs_toplevel_consts_30_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 50, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x8c\x7b\xd7\x0f\x20\xd2\x0f\x20\xa0\x14\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_bytesdecoded = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bytesdecoded", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_30_consts_12_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_bytesdecoded._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(114) +codecs_toplevel_consts_30_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 57, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 843, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_30_consts_12_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(write), + .co_qualname = & codecs_toplevel_consts_30_consts_12_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +codecs_toplevel_consts_30_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(join), + &_Py_ID(decode), + &_Py_ID(errors), + & const_str_writer._ascii.ob_base, + &_Py_ID(write), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +codecs_toplevel_consts_30_consts_13_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.writelines", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[66]; + } +codecs_toplevel_consts_30_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 65, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x12\x8f\x78\x8a\x78\x98\x04\x89\x7e\x8c\x7e\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x8c\x7b\xd7\x0f\x20\xd2\x0f\x20\xa0\x14\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_30_consts_13_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_list._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_bytesdecoded._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(156) +codecs_toplevel_consts_30_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 78, + }, + .co_consts = & codecs_toplevel_consts_22_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 848, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_30_consts_13_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_writelines._ascii.ob_base, + .co_qualname = & codecs_toplevel_consts_30_consts_13_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +codecs_toplevel_consts_30_consts_14_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.reset", +}; +static + struct _PyCode_DEF(106) +codecs_toplevel_consts_30_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 53, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_28_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 854, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(reset), + .co_qualname = & codecs_toplevel_consts_30_consts_14_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_28_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_30_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_reader._ascii.ob_base, + &_Py_ID(seek), + & const_str_writer._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +codecs_toplevel_consts_30_consts_16_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.seek", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[59]; + } +codecs_toplevel_consts_30_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 58, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x00\x09\x0d\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x08\x0c\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd0\x08\x28\xd0\x08\x28", +}; +static + struct _PyCode_DEF(114) +codecs_toplevel_consts_30_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 57, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 859, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(seek), + .co_qualname = & codecs_toplevel_consts_30_consts_16_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +codecs_toplevel_consts_30_consts_17_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.__getattr__", +}; +static + struct _PyCode_DEF(36) +codecs_toplevel_consts_30_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 865, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getattr__), + .co_qualname = & codecs_toplevel_consts_30_consts_17_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +codecs_toplevel_consts_30_consts_18_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.__enter__", +}; +static + struct _PyCode_DEF(6) +codecs_toplevel_consts_30_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 872, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & codecs_toplevel_consts_30_consts_18_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +codecs_toplevel_consts_30_consts_19_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.__exit__", +}; +static + struct _PyCode_DEF(56) +codecs_toplevel_consts_30_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 875, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & codecs_toplevel_consts_30_consts_19_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +codecs_toplevel_consts_30_consts_20_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StreamRecoder.__reduce_ex__", +}; +static + struct _PyCode_DEF(58) +codecs_toplevel_consts_30_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 878, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__reduce_ex__), + .co_qualname = & codecs_toplevel_consts_30_consts_20_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[25]; + }_object; + } +codecs_toplevel_consts_30_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 25, + }, + .ob_item = { + & const_str_StreamRecoder._ascii.ob_base, + & codecs_toplevel_consts_30_consts_1._ascii.ob_base, + & const_str_unknown._ascii.ob_base, + &_Py_ID(strict), + & codecs_toplevel_consts_30_consts_4.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & codecs_toplevel_consts_30_consts_6.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_30_consts_8.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_9.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_10.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_11.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_12.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_13.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_14.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & codecs_toplevel_consts_30_consts_16.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_17.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_18.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_19.ob_base.ob_base, + & codecs_toplevel_consts_30_consts_20.ob_base.ob_base, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & codecs_toplevel_consts_28_consts_22._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_data_encoding = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "data_encoding", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_file_encoding = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "file_encoding", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[21]; + }_object; + } +codecs_toplevel_consts_30_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 21, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + & const_str_data_encoding._ascii.ob_base, + & const_str_file_encoding._ascii.ob_base, + &_Py_ID(__init__), + &_Py_ID(read), + &_Py_ID(readline), + & const_str_readlines._ascii.ob_base, + &_Py_ID(__next__), + &_Py_ID(__iter__), + &_Py_ID(write), + & const_str_writelines._ascii.ob_base, + &_Py_ID(reset), + &_Py_ID(seek), + &_Py_ID(getattr), + &_Py_ID(__getattr__), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + &_Py_ID(__reduce_ex__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[298]; + } +codecs_toplevel_consts_30_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 297, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x0d\x05\x08\xf0\x00\x0d\x05\x08\xf0\x1e\x00\x15\x1e\x80\x4d\xd8\x14\x1d\x80\x4d\xf0\x06\x00\x19\x21\xf0\x03\x1a\x05\x1d\xf0\x00\x1a\x05\x1d\xf0\x00\x1a\x05\x1d\xf0\x00\x1a\x05\x1d\xf0\x38\x04\x05\x14\xf0\x00\x04\x05\x14\xf0\x00\x04\x05\x14\xf0\x00\x04\x05\x14\xf0\x0c\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x12\x04\x05\x2e\xf0\x00\x04\x05\x2e\xf0\x00\x04\x05\x2e\xf0\x00\x04\x05\x2e\xf0\x0c\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x03\x05\x27\xf0\x00\x03\x05\x27\xf0\x00\x03\x05\x27\xf0\x0a\x04\x05\x27\xf0\x00\x04\x05\x27\xf0\x00\x04\x05\x27\xf0\x0c\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x0a\x04\x05\x29\xf0\x00\x04\x05\x29\xf0\x00\x04\x05\x29\xf0\x00\x04\x05\x29\xf0\x0e\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", +}; +static + struct _PyCode_DEF(126) +codecs_toplevel_consts_30 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 63, + }, + .co_consts = & codecs_toplevel_consts_30_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_30_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 764, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_StreamRecoder._ascii.ob_base, + .co_qualname = & const_str_StreamRecoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_30_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x02\x5a\x05\x09\x00\x64\x15\x64\x04\x84\x01\x5a\x06\x64\x16\x64\x06\x84\x01\x5a\x07\x64\x17\x64\x08\x84\x01\x5a\x08\x64\x17\x64\x09\x84\x01\x5a\x09\x64\x0a\x84\x00\x5a\x0a\x64\x0b\x84\x00\x5a\x0b\x64\x0c\x84\x00\x5a\x0c\x64\x0d\x84\x00\x5a\x0d\x64\x0e\x84\x00\x5a\x0e\x64\x18\x64\x10\x84\x01\x5a\x0f\x65\x10\x66\x01\x64\x11\x84\x01\x5a\x11\x64\x12\x84\x00\x5a\x12\x64\x13\x84\x00\x5a\x13\x64\x14\x84\x00\x5a\x14\x64\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[1180]; + } +codecs_toplevel_consts_35_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1179, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x4f\x70\x65\x6e\x20\x61\x6e\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x66\x69\x6c\x65\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x6d\x6f\x64\x65\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x20\x77\x72\x61\x70\x70\x65\x64\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x72\x61\x6e\x73\x70\x61\x72\x65\x6e\x74\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2f\x64\x65\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x3a\x20\x54\x68\x65\x20\x77\x72\x61\x70\x70\x65\x64\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x6f\x6e\x6c\x79\x20\x61\x63\x63\x65\x70\x74\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x6f\x72\x6d\x61\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x73\x2c\x20\x69\x2e\x65\x2e\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x6d\x6f\x73\x74\x20\x62\x75\x69\x6c\x74\x69\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6f\x64\x65\x63\x73\x2e\x20\x4f\x75\x74\x70\x75\x74\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x63\x6f\x64\x65\x63\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x75\x73\x75\x61\x6c\x6c\x79\x20\x62\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x61\x73\x20\x77\x65\x6c\x6c\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x20\x6e\x6f\x74\x20\x4e\x6f\x6e\x65\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x66\x69\x6c\x65\x73\x20\x61\x72\x65\x20\x61\x6c\x77\x61\x79\x73\x20\x6f\x70\x65\x6e\x65\x64\x20\x69\x6e\x20\x62\x69\x6e\x61\x72\x79\x20\x6d\x6f\x64\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x69\x6c\x65\x20\x6d\x6f\x64\x65\x20\x69\x73\x20\x27\x72\x27\x2c\x20\x6d\x65\x61\x6e\x69\x6e\x67\x20\x74\x6f\x20\x6f\x70\x65\x6e\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x69\x6e\x20\x72\x65\x61\x64\x20\x6d\x6f\x64\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x73\x70\x65\x63\x69\x66\x69\x65\x73\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x6f\x20\x62\x65\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x69\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x6f\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x77\x68\x69\x63\x68\x20\x63\x61\x75\x73\x65\x73\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x73\x20\x74\x6f\x20\x62\x65\x20\x72\x61\x69\x73\x65\x64\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x72\x72\x6f\x72\x20\x6f\x63\x63\x75\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x69\x6e\x67\x20\x68\x61\x73\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6d\x65\x61\x6e\x69\x6e\x67\x20\x61\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x69\x6e\x20\x6f\x70\x65\x6e\x28\x29\x20\x41\x50\x49\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x20\x2d\x31\x20\x77\x68\x69\x63\x68\x20\x6d\x65\x61\x6e\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x62\x75\x66\x66\x65\x72\x20\x73\x69\x7a\x65\x20\x77\x69\x6c\x6c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x65\x20\x75\x73\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x77\x72\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x6e\x20\x65\x78\x74\x72\x61\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x68\x69\x63\x68\x20\x61\x6c\x6c\x6f\x77\x73\x20\x71\x75\x65\x72\x79\x69\x6e\x67\x20\x74\x68\x65\x20\x75\x73\x65\x64\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x20\x54\x68\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x20\x69\x73\x20\x6f\x6e\x6c\x79\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x69\x66\x20\x61\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x61\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x61\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_b = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_35_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & codecs_toplevel_consts_35_consts_0._ascii.ob_base, + Py_None, + & const_str_b._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +codecs_toplevel_consts_35_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(builtins), + &_Py_ID(open), + & const_str_lookup._ascii.ob_base, + & const_str_StreamReaderWriter._ascii.ob_base, + & const_str_streamreader._ascii.ob_base, + & const_str_streamwriter._ascii.ob_base, + &_Py_ID(encoding), + &_Py_ID(close), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[139]; + } +codecs_toplevel_consts_35_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 138, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x3e\x00\x08\x10\xd0\x07\x1b\xd8\x07\x0a\x90\x24\x80\x7f\x80\x7f\xe0\x0f\x13\x90\x63\x89\x7a\x88\x04\xdd\x0b\x13\x8c\x3d\x98\x18\xa0\x34\xa8\x19\xd1\x0b\x33\xd4\x0b\x33\x80\x44\xd8\x07\x0f\xd0\x07\x17\xd8\x0f\x13\x88\x0b\xf0\x04\x08\x05\x0e\xdd\x0f\x15\x90\x68\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xdd\x0e\x20\xa0\x14\xa0\x74\xd4\x27\x38\xb8\x24\xd4\x3a\x4b\xc8\x56\xd1\x0e\x54\xd4\x0e\x54\x88\x03\xe0\x17\x1f\x88\x03\x8c\x0c\xd8\x0f\x12\x88\x0a\xf8\xf0\x02\x02\x05\x0e\xd8\x08\x0c\x8f\x0a\x8a\x0a\x89\x0c\x8c\x0c\x88\x0c\xd8\x08\x0d\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[12]; + } +codecs_toplevel_consts_35_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 11, + }, + .ob_shash = -1, + .ob_sval = "\xa7\x33\x41\x1b\x00\xc1\x1b\x17\x41\x32\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_buffering = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "buffering", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_srw = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "srw", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +codecs_toplevel_consts_35_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(filename), + &_Py_ID(mode), + &_Py_ID(encoding), + &_Py_ID(errors), + & const_str_buffering._ascii.ob_base, + & const_str_file._ascii.ob_base, + & const_str_info._ascii.ob_base, + & const_str_srw._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(234) +codecs_toplevel_consts_35 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 117, + }, + .co_consts = & codecs_toplevel_consts_35_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_35_names._object.ob_base.ob_base, + .co_exceptiontable = & codecs_toplevel_consts_35_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 5, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 883, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_35_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(open), + .co_qualname = &_Py_ID(open), + .co_linetable = & codecs_toplevel_consts_35_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x81\x09\x64\x02\x7c\x01\x76\x01\x72\x05\x7c\x01\x64\x02\x7a\x00\x00\x00\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x02\x80\x02\x7c\x05\x53\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x06\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x02\x7c\x07\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x53\x00\x23\x00\x01\x00\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x82\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[987]; + } +codecs_toplevel_consts_36_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 986, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x52\x65\x74\x75\x72\x6e\x20\x61\x20\x77\x72\x61\x70\x70\x65\x64\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x66\x69\x6c\x65\x20\x77\x68\x69\x63\x68\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x72\x61\x6e\x73\x70\x61\x72\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x44\x61\x74\x61\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x77\x72\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x20\x69\x73\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x61\x63\x63\x6f\x72\x64\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x6f\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x69\x6c\x65\x20\x75\x73\x69\x6e\x67\x20\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x20\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x64\x61\x74\x61\x20\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x75\x73\x75\x61\x6c\x6c\x79\x20\x62\x65\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x62\x75\x74\x20\x64\x65\x70\x65\x6e\x64\x73\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x63\x6f\x64\x65\x63\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x42\x79\x74\x65\x73\x20\x72\x65\x61\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x61\x72\x65\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x73\x73\x65\x64\x20\x62\x61\x63\x6b\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x61\x6c\x6c\x65\x72\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x20\x6e\x6f\x74\x20\x67\x69\x76\x65\x6e\x2c\x20\x69\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x20\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x6f\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x77\x68\x69\x63\x68\x20\x63\x61\x75\x73\x65\x73\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x73\x20\x74\x6f\x20\x62\x65\x20\x72\x61\x69\x73\x65\x64\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x72\x72\x6f\x72\x20\x6f\x63\x63\x75\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x77\x72\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x77\x6f\x20\x65\x78\x74\x72\x61\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x2e\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x68\x69\x63\x68\x20\x72\x65\x66\x6c\x65\x63\x74\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6e\x61\x6d\x65\x2e\x20\x54\x68\x65\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x74\x72\x6f\x73\x70\x65\x63\x74\x69\x6f\x6e\x20\x62\x79\x20\x50\x79\x74\x68\x6f\x6e\x20\x70\x72\x6f\x67\x72\x61\x6d\x73\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_36_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_36_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +codecs_toplevel_consts_36_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_lookup._ascii.ob_base, + & const_str_StreamRecoder._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(decode), + & const_str_streamreader._ascii.ob_base, + & const_str_streamwriter._ascii.ob_base, + & const_str_data_encoding._ascii.ob_base, + & const_str_file_encoding._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[107]; + } +codecs_toplevel_consts_36_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 106, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x32\x00\x08\x15\xd0\x07\x1c\xd8\x18\x25\x88\x0d\xdd\x10\x16\x90\x7d\xd1\x10\x25\xd4\x10\x25\x80\x49\xdd\x10\x16\x90\x7d\xd1\x10\x25\xd4\x10\x25\x80\x49\xdd\x09\x16\x90\x74\x98\x59\xd4\x1d\x2d\xa8\x79\xd4\x2f\x3f\xd8\x17\x20\xd4\x17\x2d\xa8\x79\xd4\x2f\x45\xc0\x76\xf1\x03\x01\x0a\x4f\x01\xf4\x00\x01\x0a\x4f\x01\x80\x42\xf0\x06\x00\x18\x25\x80\x42\xd4\x04\x14\xd8\x17\x24\x80\x42\xd4\x04\x14\xd8\x0b\x0d\x80\x49", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_data_info = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "data_info", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_file_info = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "file_info", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_sr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sr", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +codecs_toplevel_consts_36_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_file._ascii.ob_base, + & const_str_data_encoding._ascii.ob_base, + & const_str_file_encoding._ascii.ob_base, + &_Py_ID(errors), + & const_str_data_info._ascii.ob_base, + & const_str_file_info._ascii.ob_base, + & const_str_sr._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(182) +codecs_toplevel_consts_36 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 91, + }, + .co_consts = & codecs_toplevel_consts_36_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_36_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 932, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_36_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_EncodedFile._ascii.ob_base, + .co_qualname = & const_str_EncodedFile._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_36_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x80\x02\x7c\x01\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x04\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x01\x7c\x06\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x06\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[159]; + } +codecs_toplevel_consts_37_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 158, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_37_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_37_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_37_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_lookup._ascii.ob_base, + &_Py_ID(encode), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[22]; + } +codecs_toplevel_consts_37_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 21, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x0c\x12\x90\x28\xd1\x0b\x1b\xd4\x0b\x1b\xd4\x0b\x22\xd0\x04\x22", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_37_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(encoding), + }, + }, +}; +static + struct _PyCode_DEF(42) +codecs_toplevel_consts_37 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & codecs_toplevel_consts_37_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_37_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 970, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getencoder._ascii.ob_base, + .co_qualname = & const_str_getencoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_37_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[159]; + } +codecs_toplevel_consts_38_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 158, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_38_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_38_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_38_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_lookup._ascii.ob_base, + &_Py_ID(decode), + }, + }, +}; +static + struct _PyCode_DEF(42) +codecs_toplevel_consts_38 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & codecs_toplevel_consts_38_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_38_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 980, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getdecoder._ascii.ob_base, + .co_qualname = & const_str_getdecoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_37_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[248]; + } +codecs_toplevel_consts_39_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 247, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x73\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x6e\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x65\x6e\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_39_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_39_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_LookupError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LookupError", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_39_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_lookup._ascii.ob_base, + & const_str_incrementalencoder._ascii.ob_base, + & const_str_LookupError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[45]; + } +codecs_toplevel_consts_39_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 44, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x12\x00\x0f\x15\x90\x58\xd1\x0e\x1e\xd4\x0e\x1e\xd4\x0e\x31\x80\x47\xd8\x07\x0e\x80\x7f\xdd\x0e\x19\x98\x28\xd1\x0e\x23\xd4\x0e\x23\xd0\x08\x23\xd8\x0b\x12\x80\x4e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_encoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "encoder", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_39_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(encoding), + & const_str_encoder._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(80) +codecs_toplevel_consts_39 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 40, + }, + .co_consts = & codecs_toplevel_consts_39_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_39_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 990, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getincrementalencoder._ascii.ob_base, + .co_qualname = & const_str_getincrementalencoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_39_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x80\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[248]; + } +codecs_toplevel_consts_40_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 247, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x73\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x6e\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x64\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_40_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_40_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +codecs_toplevel_consts_40_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_lookup._ascii.ob_base, + & const_str_incrementaldecoder._ascii.ob_base, + & const_str_LookupError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_decoder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "decoder", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_40_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(encoding), + & const_str_decoder._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(80) +codecs_toplevel_consts_40 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 40, + }, + .co_consts = & codecs_toplevel_consts_40_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_40_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1004, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_40_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getincrementaldecoder._ascii.ob_base, + .co_qualname = & const_str_getincrementaldecoder._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_39_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x80\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[181]; + } +codecs_toplevel_consts_41_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 180, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_41_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_41_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_41_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_lookup._ascii.ob_base, + & const_str_streamreader._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[22]; + } +codecs_toplevel_consts_41_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 21, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x0c\x12\x90\x28\xd1\x0b\x1b\xd4\x0b\x1b\xd4\x0b\x28\xd0\x04\x28", +}; +static + struct _PyCode_DEF(42) +codecs_toplevel_consts_41 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & codecs_toplevel_consts_41_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_41_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1018, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getreader._ascii.ob_base, + .co_qualname = & const_str_getreader._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_41_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[181]; + } +codecs_toplevel_consts_42_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 180, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_42_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & codecs_toplevel_consts_42_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_42_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_lookup._ascii.ob_base, + & const_str_streamwriter._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(42) +codecs_toplevel_consts_42 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & codecs_toplevel_consts_42_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_42_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1028, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getwriter._ascii.ob_base, + .co_qualname = & const_str_getwriter._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_41_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[192]; + } +codecs_toplevel_consts_43_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 191, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x45\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x45\x6e\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x69\x6e\x67\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x61\x6e\x64\x20\x6b\x77\x61\x72\x67\x73\x20\x61\x72\x65\x20\x70\x61\x73\x73\x65\x64\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_43_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & codecs_toplevel_consts_43_consts_0._ascii.ob_base, + &_Py_STR(empty), + Py_True, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_43_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_getincrementalencoder._ascii.ob_base, + &_Py_ID(encode), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[141]; + } +codecs_toplevel_consts_43_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 140, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x12\x00\x0f\x2e\xd5\x0e\x23\xa0\x48\xd1\x0e\x2d\xd4\x0e\x2d\xa8\x66\xd0\x0e\x3f\xd0\x0e\x3f\xb8\x06\xd0\x0e\x3f\xd0\x0e\x3f\x80\x47\xd8\x11\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\x88\x05\xd8\x11\x18\x97\x1e\x92\x1e\xa0\x05\xd1\x11\x26\xd4\x11\x26\x88\x06\xd8\x0b\x11\xf0\x00\x01\x09\x19\xd8\x12\x18\x88\x4c\x88\x4c\x88\x4c\xf8\xd8\x0d\x14\x8f\x5e\x8a\x5e\x98\x42\xa0\x04\xd1\x0d\x25\xd4\x0d\x25\x80\x46\xd8\x07\x0d\xf0\x00\x01\x05\x15\xd8\x0e\x14\x88\x0c\x88\x0c\x88\x0c\x88\x0c\x88\x0c\xf0\x03\x01\x05\x15\xf0\x00\x01\x05\x15", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_output = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "output", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +codecs_toplevel_consts_43_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_iterator._ascii.ob_base, + &_Py_ID(encoding), + &_Py_ID(errors), + & const_str_kwargs._ascii.ob_base, + & const_str_encoder._ascii.ob_base, + & const_str_input._ascii.ob_base, + & const_str_output._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(178) +codecs_toplevel_consts_43 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 89, + }, + .co_consts = & codecs_toplevel_consts_43_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_43_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 43, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1038, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_43_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_iterencode._ascii.ob_base, + .co_qualname = & const_str_iterencode._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_43_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x66\x01\x69\x00\x7c\x03\xa4\x01\x8e\x01\x7d\x04\x7c\x00\x44\x00\x5d\x1d\x7d\x05\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x04\x7c\x06\x56\x00\x97\x01\x01\x00\x8c\x1e\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x06\x7c\x06\x56\x00\x97\x01\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[192]; + } +codecs_toplevel_consts_44_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 191, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x20\x20\x20\x20\x44\x65\x63\x6f\x64\x69\x6e\x67\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x69\x6e\x67\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x61\x6e\x64\x20\x6b\x77\x61\x72\x67\x73\x20\x61\x72\x65\x20\x70\x61\x73\x73\x65\x64\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_44_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & codecs_toplevel_consts_44_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_empty), + Py_True, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_44_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_getincrementaldecoder._ascii.ob_base, + &_Py_ID(decode), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[141]; + } +codecs_toplevel_consts_44_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 140, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x12\x00\x0f\x2e\xd5\x0e\x23\xa0\x48\xd1\x0e\x2d\xd4\x0e\x2d\xa8\x66\xd0\x0e\x3f\xd0\x0e\x3f\xb8\x06\xd0\x0e\x3f\xd0\x0e\x3f\x80\x47\xd8\x11\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\x88\x05\xd8\x11\x18\x97\x1e\x92\x1e\xa0\x05\xd1\x11\x26\xd4\x11\x26\x88\x06\xd8\x0b\x11\xf0\x00\x01\x09\x19\xd8\x12\x18\x88\x4c\x88\x4c\x88\x4c\xf8\xd8\x0d\x14\x8f\x5e\x8a\x5e\x98\x43\xa0\x14\xd1\x0d\x26\xd4\x0d\x26\x80\x46\xd8\x07\x0d\xf0\x00\x01\x05\x15\xd8\x0e\x14\x88\x0c\x88\x0c\x88\x0c\x88\x0c\x88\x0c\xf0\x03\x01\x05\x15\xf0\x00\x01\x05\x15", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +codecs_toplevel_consts_44_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_iterator._ascii.ob_base, + &_Py_ID(encoding), + &_Py_ID(errors), + & const_str_kwargs._ascii.ob_base, + & const_str_decoder._ascii.ob_base, + & const_str_input._ascii.ob_base, + & const_str_output._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(178) +codecs_toplevel_consts_44 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 89, + }, + .co_consts = & codecs_toplevel_consts_44_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_44_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 43, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1056, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_44_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_iterdecode._ascii.ob_base, + .co_qualname = & const_str_iterdecode._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_44_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x66\x01\x69\x00\x7c\x03\xa4\x01\x8e\x01\x7d\x04\x7c\x00\x44\x00\x5d\x1d\x7d\x05\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x04\x7c\x06\x56\x00\x97\x01\x01\x00\x8c\x1e\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x06\x7c\x06\x56\x00\x97\x01\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[137]; + } +codecs_toplevel_consts_45_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 136, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x6d\x61\x6b\x65\x5f\x69\x64\x65\x6e\x74\x69\x74\x79\x5f\x64\x69\x63\x74\x28\x72\x6e\x67\x29\x20\x2d\x3e\x20\x64\x69\x63\x74\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x61\x20\x64\x69\x63\x74\x69\x6f\x6e\x61\x72\x79\x20\x77\x68\x65\x72\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x6e\x67\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x20\x61\x72\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +codecs_toplevel_consts_45_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "make_identity_dict..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +codecs_toplevel_consts_45_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd0\x0b\x1d\xd0\x0b\x1d\xd0\x0b\x1d\x90\x41\x88\x41\x88\x61\xd0\x0b\x1d\xd0\x0b\x1d\xd0\x0b\x1d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_45_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_i._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(20) +codecs_toplevel_consts_45_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1084, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_45_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_dictcomp), + .co_qualname = & codecs_toplevel_consts_45_consts_1_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_45_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x69\x00\x7c\x00\x5d\x05\x7d\x01\x7c\x01\x7c\x01\x93\x02\x8c\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_45_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_45_consts_0._ascii.ob_base, + & codecs_toplevel_consts_45_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_make_identity_dict = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "make_identity_dict", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +codecs_toplevel_consts_45_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x10\x00\x0c\x1e\xd0\x0b\x1d\x98\x13\xd0\x0b\x1d\xd1\x0b\x1d\xd4\x0b\x1d\xd0\x04\x1d", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_rng = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "rng", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_45_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_rng._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(26) +codecs_toplevel_consts_45 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 13, + }, + .co_consts = & codecs_toplevel_consts_45_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1076, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_45_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_make_identity_dict._ascii.ob_base, + .co_qualname = & const_str_make_identity_dict._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_45_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x84\x00\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[387]; + } +codecs_toplevel_consts_46_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 386, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x6d\x61\x70\x20\x66\x72\x6f\x6d\x20\x61\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x6d\x61\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x61\x20\x74\x61\x72\x67\x65\x74\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x6e\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x6d\x61\x70\x20\x6f\x63\x63\x75\x72\x73\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x69\x6d\x65\x73\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x61\x74\x20\x74\x61\x72\x67\x65\x74\x20\x69\x73\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x4e\x6f\x6e\x65\x20\x28\x75\x6e\x64\x65\x66\x69\x6e\x65\x64\x20\x6d\x61\x70\x70\x69\x6e\x67\x29\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x61\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x77\x68\x65\x6e\x20\x65\x6e\x63\x6f\x75\x6e\x74\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x63\x68\x61\x72\x6d\x61\x70\x20\x63\x6f\x64\x65\x63\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x75\x72\x69\x6e\x67\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4f\x6e\x65\x20\x65\x78\x61\x6d\x70\x6c\x65\x20\x77\x68\x65\x72\x65\x20\x74\x68\x69\x73\x20\x68\x61\x70\x70\x65\x6e\x73\x20\x69\x73\x20\x63\x70\x38\x37\x35\x2e\x70\x79\x20\x77\x68\x69\x63\x68\x20\x64\x65\x63\x6f\x64\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x74\x6f\x20\x5c\x75\x30\x30\x31\x61\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_46_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & codecs_toplevel_consts_46_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +codecs_toplevel_consts_46_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(items), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_make_encoding_map = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "make_encoding_map", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[77]; + } +codecs_toplevel_consts_46_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 76, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x1a\x00\x09\x0b\x80\x41\xd8\x0f\x1b\xd7\x0f\x21\xd2\x0f\x21\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x04\x05\x18\xf0\x00\x04\x05\x18\x89\x03\x88\x01\x88\x21\xd8\x0f\x10\x90\x41\x88\x76\x88\x76\xd8\x13\x14\x88\x41\x88\x61\x89\x44\x88\x44\xe0\x13\x17\x88\x41\x88\x61\x89\x44\x88\x44\xd8\x0b\x0c\x80\x48", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_decoding_map = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "decoding_map", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_k = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "k", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_v = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "v", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_46_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_decoding_map._ascii.ob_base, + & const_str_m._ascii.ob_base, + & const_str_k._ascii.ob_base, + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(92) +codecs_toplevel_consts_46 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 46, + }, + .co_consts = & codecs_toplevel_consts_46_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_46_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1086, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & codecs_toplevel_consts_46_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = & const_str_make_encoding_map._ascii.ob_base, + .co_qualname = & const_str_make_encoding_map._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_46_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x69\x00\x7d\x01\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x14\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x03\x7c\x01\x76\x01\x72\x06\x7c\x02\x7c\x01\x7c\x03\x3c\x00\x00\x00\x8c\x0f\x64\x01\x7c\x01\x7c\x03\x3c\x00\x00\x00\x8c\x15\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_xmlcharrefreplace = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "xmlcharrefreplace", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_backslashreplace = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "backslashreplace", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_namereplace = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "namereplace", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +codecs_toplevel_consts_53 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "latin-1", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +codecs_toplevel_consts_55 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_r._ascii.ob_base, + Py_None, + &_Py_ID(strict), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +codecs_toplevel_consts_56 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(strict), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[58]; + }_object; + } +codecs_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 58, + }, + .ob_item = { + & codecs_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & codecs_toplevel_consts_3._object.ob_base.ob_base, + & codecs_toplevel_consts_4._ascii.ob_base, + & codecs_toplevel_consts_5._object.ob_base.ob_base, + & codecs_toplevel_consts_6.ob_base.ob_base, + & codecs_toplevel_consts_7.ob_base.ob_base, + & codecs_toplevel_consts_8.ob_base.ob_base, + & codecs_toplevel_consts_9.ob_base.ob_base, + & codecs_toplevel_consts_10.ob_base.ob_base, + &_Py_ID(little), + & codecs_toplevel_consts_12.ob_base.ob_base, + & const_str_CodecInfo._ascii.ob_base, + & codecs_toplevel_consts_14.ob_base.ob_base, + & const_str_Codec._ascii.ob_base, + & codecs_toplevel_consts_16.ob_base.ob_base, + & const_str_IncrementalEncoder._ascii.ob_base, + & codecs_toplevel_consts_18.ob_base.ob_base, + & const_str_BufferedIncrementalEncoder._ascii.ob_base, + & codecs_toplevel_consts_20.ob_base.ob_base, + & const_str_IncrementalDecoder._ascii.ob_base, + & codecs_toplevel_consts_22.ob_base.ob_base, + & const_str_BufferedIncrementalDecoder._ascii.ob_base, + & codecs_toplevel_consts_24.ob_base.ob_base, + & const_str_StreamWriter._ascii.ob_base, + & codecs_toplevel_consts_26.ob_base.ob_base, + & const_str_StreamReader._ascii.ob_base, + & codecs_toplevel_consts_28.ob_base.ob_base, + & const_str_StreamReaderWriter._ascii.ob_base, + & codecs_toplevel_consts_30.ob_base.ob_base, + & const_str_StreamRecoder._ascii.ob_base, + & const_str_r._ascii.ob_base, + &_Py_ID(strict), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & codecs_toplevel_consts_35.ob_base.ob_base, + & codecs_toplevel_consts_36.ob_base.ob_base, + & codecs_toplevel_consts_37.ob_base.ob_base, + & codecs_toplevel_consts_38.ob_base.ob_base, + & codecs_toplevel_consts_39.ob_base.ob_base, + & codecs_toplevel_consts_40.ob_base.ob_base, + & codecs_toplevel_consts_41.ob_base.ob_base, + & codecs_toplevel_consts_42.ob_base.ob_base, + & codecs_toplevel_consts_43.ob_base.ob_base, + & codecs_toplevel_consts_44.ob_base.ob_base, + & codecs_toplevel_consts_45.ob_base.ob_base, + & codecs_toplevel_consts_46.ob_base.ob_base, + &_Py_ID(ignore), + &_Py_ID(replace), + & const_str_xmlcharrefreplace._ascii.ob_base, + & const_str_backslashreplace._ascii.ob_base, + & const_str_namereplace._ascii.ob_base, + &_Py_ID(__main__), + & codecs_toplevel_consts_53._ascii.ob_base, + &_Py_STR(utf_8), + & codecs_toplevel_consts_55._object.ob_base.ob_base, + & codecs_toplevel_consts_56._object.ob_base.ob_base, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__codecs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_codecs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_why = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "why", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_SystemError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SystemError", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_byteorder = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "byteorder", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str__false = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_false", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_encodings = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "encodings", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[60]; + }_object; + } +codecs_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 60, + }, + .ob_item = { + &_Py_ID(__doc__), + &_Py_ID(builtins), + & const_str_sys._ascii.ob_base, + & const_str__codecs._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_why._ascii.ob_base, + & const_str_SystemError._ascii.ob_base, + &_Py_ID(__all__), + & const_str_BOM_UTF8._ascii.ob_base, + & const_str_BOM_LE._ascii.ob_base, + & const_str_BOM_UTF16_LE._ascii.ob_base, + & const_str_BOM_BE._ascii.ob_base, + & const_str_BOM_UTF16_BE._ascii.ob_base, + & const_str_BOM_UTF32_LE._ascii.ob_base, + & const_str_BOM_UTF32_BE._ascii.ob_base, + & const_str_byteorder._ascii.ob_base, + & const_str_BOM._ascii.ob_base, + & const_str_BOM_UTF16._ascii.ob_base, + & const_str_BOM_UTF32._ascii.ob_base, + & const_str_BOM32_LE._ascii.ob_base, + & const_str_BOM32_BE._ascii.ob_base, + & const_str_BOM64_LE._ascii.ob_base, + & const_str_BOM64_BE._ascii.ob_base, + & const_str_tuple._ascii.ob_base, + & const_str_CodecInfo._ascii.ob_base, + & const_str_Codec._ascii.ob_base, + & const_str_object._ascii.ob_base, + & const_str_IncrementalEncoder._ascii.ob_base, + & const_str_BufferedIncrementalEncoder._ascii.ob_base, + & const_str_IncrementalDecoder._ascii.ob_base, + & const_str_BufferedIncrementalDecoder._ascii.ob_base, + & const_str_StreamWriter._ascii.ob_base, + & const_str_StreamReader._ascii.ob_base, + & const_str_StreamReaderWriter._ascii.ob_base, + & const_str_StreamRecoder._ascii.ob_base, + &_Py_ID(open), + & const_str_EncodedFile._ascii.ob_base, + & const_str_getencoder._ascii.ob_base, + & const_str_getdecoder._ascii.ob_base, + & const_str_getincrementalencoder._ascii.ob_base, + & const_str_getincrementaldecoder._ascii.ob_base, + & const_str_getreader._ascii.ob_base, + & const_str_getwriter._ascii.ob_base, + & const_str_iterencode._ascii.ob_base, + & const_str_iterdecode._ascii.ob_base, + & const_str_make_identity_dict._ascii.ob_base, + & const_str_make_encoding_map._ascii.ob_base, + & const_str_lookup_error._ascii.ob_base, + & const_str_strict_errors._ascii.ob_base, + & const_str_ignore_errors._ascii.ob_base, + & const_str_replace_errors._ascii.ob_base, + & const_str_xmlcharrefreplace_errors._ascii.ob_base, + & const_str_backslashreplace_errors._ascii.ob_base, + & const_str_namereplace_errors._ascii.ob_base, + & const_str_LookupError._ascii.ob_base, + & const_str__false._ascii.ob_base, + & const_str_encodings._ascii.ob_base, + &_Py_ID(__name__), + &_Py_ID(stdout), + &_Py_ID(stdin), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[1221]; + } +codecs_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 1220, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x07\x01\x04\xf0\x00\x07\x01\x04\xf0\x12\x00\x01\x10\x80\x0f\x80\x0f\x80\x0f\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xf0\x08\x03\x01\x45\x01\xd8\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19\xf8\xd8\x07\x12\xf0\x00\x01\x01\x45\x01\xf0\x00\x01\x01\x45\x01\xf0\x00\x01\x01\x45\x01\xd8\x0a\x15\x88\x2b\xd0\x16\x3d\xc0\x03\xd1\x16\x43\xd1\x0a\x44\xd4\x0a\x44\xd0\x04\x44\xf8\xf8\xf8\xf8\xf0\x03\x01\x01\x45\x01\xf8\xf8\xf8\xf0\x06\x0d\x0b\x2d\xf0\x00\x0d\x0b\x2d\xf0\x00\x0d\x0b\x2d\x80\x07\xf0\x30\x00\x0c\x1b\x80\x08\xf0\x06\x00\x19\x24\xd0\x00\x23\x80\x06\x88\x1c\xf0\x06\x00\x19\x24\xd0\x00\x23\x80\x06\x88\x1c\xf0\x06\x00\x10\x23\x80\x0c\xf0\x06\x00\x10\x23\x80\x0c\xe0\x03\x06\x84\x3d\x90\x48\xd2\x03\x1c\xd0\x03\x1c\xf0\x06\x00\x17\x23\xd0\x04\x22\x80\x43\x88\x29\xf0\x06\x00\x11\x1d\x80\x49\x80\x49\xf0\x0a\x00\x17\x23\xd0\x04\x22\x80\x43\x88\x29\xf0\x06\x00\x11\x1d\x80\x49\xf0\x06\x00\x0c\x18\x80\x08\xd8\x0b\x17\x80\x08\xd8\x0b\x17\x80\x08\xd8\x0b\x17\x80\x08\xf0\x0a\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\x90\x05\xf1\x00\x1d\x01\x26\xf4\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x3e\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf1\x00\x40\x01\x01\x22\xf4\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x44\x02\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\x98\x16\xf1\x00\x26\x01\x0c\xf4\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x50\x01\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xd0\x21\x33\xf1\x00\x20\x01\x22\xf4\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x44\x01\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\x98\x16\xf1\x00\x2f\x01\x0c\xf4\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x62\x01\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xd0\x21\x33\xf1\x00\x22\x01\x1f\xf4\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x56\x01\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\x90\x35\xf1\x00\x48\x01\x01\x48\x01\xf4\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x58\x02\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\x90\x35\xf1\x00\x78\x03\x01\x48\x01\xf4\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x78\x07\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf1\x00\x56\x01\x01\x48\x01\xf4\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x74\x02\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf1\x00\x73\x01\x01\x48\x01\xf4\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x6e\x03\x2f\x01\x0e\xf0\x00\x2f\x01\x0e\xf0\x00\x2f\x01\x0e\xf0\x00\x2f\x01\x0e\xf0\x62\x01\x22\x01\x0e\xf0\x00\x22\x01\x0e\xf0\x00\x22\x01\x0e\xf0\x00\x22\x01\x0e\xf0\x4c\x01\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x14\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x14\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x1c\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x1c\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x14\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x14\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x24\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x28\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x14\x13\x01\x0d\xf0\x00\x13\x01\x0d\xf0\x00\x13\x01\x0d\xf0\x2e\x0e\x01\x1e\xd8\x14\x20\x90\x4c\xa0\x18\xd1\x14\x2a\xd4\x14\x2a\x80\x4d\xd8\x14\x20\x90\x4c\xa0\x18\xd1\x14\x2a\xd4\x14\x2a\x80\x4d\xd8\x15\x21\x90\x5c\xa0\x29\xd1\x15\x2c\xd4\x15\x2c\x80\x4e\xd8\x1f\x2b\x98\x7c\xd0\x2c\x3f\xd1\x1f\x40\xd4\x1f\x40\xd0\x04\x1c\xd8\x1e\x2a\x98\x6c\xd0\x2b\x3d\xd1\x1e\x3e\xd4\x1e\x3e\xd0\x04\x1b\xd8\x19\x25\x98\x1c\xa0\x6d\xd1\x19\x34\xd4\x19\x34\xd0\x04\x16\xd0\x04\x16\xf8\xd8\x07\x12\xf0\x00\x07\x01\x1e\xf0\x00\x07\x01\x1e\xf0\x00\x07\x01\x1e\xe0\x14\x18\x80\x4d\xd8\x14\x18\x80\x4d\xd8\x15\x19\x80\x4e\xd8\x1f\x23\xd0\x04\x1c\xd8\x1e\x22\xd0\x04\x1b\xd8\x19\x1d\xd0\x04\x16\xd0\x04\x16\xd0\x04\x16\xf0\x0f\x07\x01\x1e\xf8\xf8\xf8\xf0\x16\x00\x0a\x0b\x80\x06\xd8\x03\x09\xf0\x00\x01\x01\x15\xd8\x04\x14\xd0\x04\x14\xd0\x04\x14\xd0\x04\x14\xf0\x08\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xf0\x06\x00\x12\x1d\x90\x1b\x98\x53\x9c\x5a\xa8\x19\xb0\x47\xd1\x11\x3c\xd4\x11\x3c\x80\x43\x84\x4a\xf0\x06\x00\x11\x1c\x90\x0b\x98\x43\x9c\x49\xa0\x77\xb0\x09\xd1\x10\x3a\xd4\x10\x3a\x80\x43\x84\x49\x80\x49\x80\x49\xf0\x0d\x00\x04\x1a\xd0\x03\x19", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +codecs_toplevel_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x8c\x04\x11\x00\x91\x05\x29\x03\x96\x0e\x24\x03\xa4\x05\x29\x03\xc4\x10\x41\x02\x45\x13\x00\xc5\x13\x11\x45\x27\x03\xc5\x26\x01\x45\x27\x03", +}; +static + struct _PyCode_DEF(852) +codecs_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 426, + }, + .co_consts = & codecs_toplevel_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = & codecs_toplevel_exceptiontable.ob_base.ob_base, + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & codecs_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x09\x00\x64\x01\x64\x03\x6c\x03\x54\x00\x6e\x1b\x23\x00\x65\x04\x24\x00\x72\x13\x5a\x05\x02\x00\x65\x06\x64\x04\x65\x05\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x02\x5a\x05\x5b\x05\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x67\x00\x64\x05\xa2\x01\x5a\x07\x64\x06\x5a\x08\x64\x07\x78\x01\x5a\x09\x5a\x0a\x64\x08\x78\x01\x5a\x0b\x5a\x0c\x64\x09\x5a\x0d\x64\x0a\x5a\x0e\x65\x02\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x6b\x02\x00\x00\x00\x00\x72\x07\x65\x0a\x78\x01\x5a\x10\x5a\x11\x65\x0d\x5a\x12\x6e\x06\x65\x0c\x78\x01\x5a\x10\x5a\x11\x65\x0e\x5a\x12\x65\x0a\x5a\x13\x65\x0c\x5a\x14\x65\x0d\x5a\x15\x65\x0e\x5a\x16\x02\x00\x47\x00\x64\x0c\x84\x00\x64\x0d\x65\x17\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x18\x02\x00\x47\x00\x64\x0e\x84\x00\x64\x0f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x19\x02\x00\x47\x00\x64\x10\x84\x00\x64\x11\x65\x1a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1b\x02\x00\x47\x00\x64\x12\x84\x00\x64\x13\x65\x1b\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1c\x02\x00\x47\x00\x64\x14\x84\x00\x64\x15\x65\x1a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1d\x02\x00\x47\x00\x64\x16\x84\x00\x64\x17\x65\x1d\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1e\x02\x00\x47\x00\x64\x18\x84\x00\x64\x19\x65\x19\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1f\x02\x00\x47\x00\x64\x1a\x84\x00\x64\x1b\x65\x19\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x20\x02\x00\x47\x00\x64\x1c\x84\x00\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x02\x00\x47\x00\x64\x1e\x84\x00\x64\x1f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x22\x64\x37\x64\x23\x84\x01\x5a\x23\x64\x38\x64\x24\x84\x01\x5a\x24\x64\x25\x84\x00\x5a\x25\x64\x26\x84\x00\x5a\x26\x64\x27\x84\x00\x5a\x27\x64\x28\x84\x00\x5a\x28\x64\x29\x84\x00\x5a\x29\x64\x2a\x84\x00\x5a\x2a\x64\x39\x64\x2b\x84\x01\x5a\x2b\x64\x39\x64\x2c\x84\x01\x5a\x2c\x64\x2d\x84\x00\x5a\x2d\x64\x2e\x84\x00\x5a\x2e\x09\x00\x02\x00\x65\x2f\x64\x21\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x30\x02\x00\x65\x2f\x64\x2f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x31\x02\x00\x65\x2f\x64\x30\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x32\x02\x00\x65\x2f\x64\x31\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x33\x02\x00\x65\x2f\x64\x32\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x34\x02\x00\x65\x2f\x64\x33\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x35\x6e\x17\x23\x00\x65\x36\x24\x00\x72\x0f\x01\x00\x64\x02\x5a\x30\x64\x02\x5a\x31\x64\x02\x5a\x32\x64\x02\x5a\x33\x64\x02\x5a\x34\x64\x02\x5a\x35\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x5a\x37\x65\x37\x72\x04\x64\x01\x64\x02\x6c\x38\x5a\x38\x65\x39\x64\x34\x6b\x02\x00\x00\x00\x00\x72\x30\x02\x00\x65\x24\x65\x02\x6a\x3a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x35\x64\x36\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x65\x02\x5f\x3a\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x65\x24\x65\x02\x6a\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x64\x36\x64\x35\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x65\x02\x5f\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void codecs_do_patchups(void) { +} + +PyObject * +_Py_get_codecs_toplevel(void) +{ + codecs_do_patchups(); + return Py_NewRef((PyObject *) &codecs_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[1474]; + } +io_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1473, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x54\x68\x65\x20\x69\x6f\x20\x6d\x6f\x64\x75\x6c\x65\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x73\x20\x74\x6f\x20\x73\x74\x72\x65\x61\x6d\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x20\x54\x68\x65\x0a\x62\x75\x69\x6c\x74\x69\x6e\x20\x6f\x70\x65\x6e\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x41\x74\x20\x74\x68\x65\x20\x74\x6f\x70\x20\x6f\x66\x20\x74\x68\x65\x20\x49\x2f\x4f\x20\x68\x69\x65\x72\x61\x72\x63\x68\x79\x20\x69\x73\x20\x74\x68\x65\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x62\x61\x73\x65\x20\x63\x6c\x61\x73\x73\x20\x49\x4f\x42\x61\x73\x65\x2e\x20\x49\x74\x0a\x64\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x62\x61\x73\x69\x63\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x61\x20\x73\x74\x72\x65\x61\x6d\x2e\x20\x4e\x6f\x74\x65\x2c\x20\x68\x6f\x77\x65\x76\x65\x72\x2c\x20\x74\x68\x61\x74\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x6e\x6f\x0a\x73\x65\x70\x61\x72\x61\x74\x69\x6f\x6e\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x72\x65\x61\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x77\x72\x69\x74\x69\x6e\x67\x20\x74\x6f\x20\x73\x74\x72\x65\x61\x6d\x73\x3b\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x61\x72\x65\x0a\x61\x6c\x6c\x6f\x77\x65\x64\x20\x74\x6f\x20\x72\x61\x69\x73\x65\x20\x61\x6e\x20\x4f\x53\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x74\x68\x65\x79\x20\x64\x6f\x20\x6e\x6f\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x61\x20\x67\x69\x76\x65\x6e\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x45\x78\x74\x65\x6e\x64\x69\x6e\x67\x20\x49\x4f\x42\x61\x73\x65\x20\x69\x73\x20\x52\x61\x77\x49\x4f\x42\x61\x73\x65\x20\x77\x68\x69\x63\x68\x20\x64\x65\x61\x6c\x73\x20\x73\x69\x6d\x70\x6c\x79\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x72\x65\x61\x64\x69\x6e\x67\x20\x61\x6e\x64\x0a\x77\x72\x69\x74\x69\x6e\x67\x20\x6f\x66\x20\x72\x61\x77\x20\x62\x79\x74\x65\x73\x20\x74\x6f\x20\x61\x20\x73\x74\x72\x65\x61\x6d\x2e\x20\x46\x69\x6c\x65\x49\x4f\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x52\x61\x77\x49\x4f\x42\x61\x73\x65\x20\x74\x6f\x20\x70\x72\x6f\x76\x69\x64\x65\x0a\x61\x6e\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x4f\x53\x20\x66\x69\x6c\x65\x73\x2e\x0a\x0a\x42\x75\x66\x66\x65\x72\x65\x64\x49\x4f\x42\x61\x73\x65\x20\x64\x65\x61\x6c\x73\x20\x77\x69\x74\x68\x20\x62\x75\x66\x66\x65\x72\x69\x6e\x67\x20\x6f\x6e\x20\x61\x20\x72\x61\x77\x20\x62\x79\x74\x65\x20\x73\x74\x72\x65\x61\x6d\x20\x28\x52\x61\x77\x49\x4f\x42\x61\x73\x65\x29\x2e\x20\x49\x74\x73\x0a\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x2c\x20\x42\x75\x66\x66\x65\x72\x65\x64\x57\x72\x69\x74\x65\x72\x2c\x20\x42\x75\x66\x66\x65\x72\x65\x64\x52\x65\x61\x64\x65\x72\x2c\x20\x61\x6e\x64\x20\x42\x75\x66\x66\x65\x72\x65\x64\x52\x57\x50\x61\x69\x72\x20\x62\x75\x66\x66\x65\x72\x0a\x73\x74\x72\x65\x61\x6d\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x72\x65\x61\x64\x61\x62\x6c\x65\x2c\x20\x77\x72\x69\x74\x61\x62\x6c\x65\x2c\x20\x61\x6e\x64\x20\x62\x6f\x74\x68\x20\x72\x65\x73\x70\x65\x63\x74\x69\x76\x65\x6c\x79\x2e\x0a\x42\x75\x66\x66\x65\x72\x65\x64\x52\x61\x6e\x64\x6f\x6d\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x20\x62\x75\x66\x66\x65\x72\x65\x64\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x72\x61\x6e\x64\x6f\x6d\x20\x61\x63\x63\x65\x73\x73\x0a\x73\x74\x72\x65\x61\x6d\x73\x2e\x20\x42\x79\x74\x65\x73\x49\x4f\x20\x69\x73\x20\x61\x20\x73\x69\x6d\x70\x6c\x65\x20\x73\x74\x72\x65\x61\x6d\x20\x6f\x66\x20\x69\x6e\x2d\x6d\x65\x6d\x6f\x72\x79\x20\x62\x79\x74\x65\x73\x2e\x0a\x0a\x41\x6e\x6f\x74\x68\x65\x72\x20\x49\x4f\x42\x61\x73\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x2c\x20\x54\x65\x78\x74\x49\x4f\x42\x61\x73\x65\x2c\x20\x64\x65\x61\x6c\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x0a\x6f\x66\x20\x73\x74\x72\x65\x61\x6d\x73\x20\x69\x6e\x74\x6f\x20\x74\x65\x78\x74\x2e\x20\x54\x65\x78\x74\x49\x4f\x57\x72\x61\x70\x70\x65\x72\x2c\x20\x77\x68\x69\x63\x68\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x69\x74\x2c\x20\x69\x73\x20\x61\x20\x62\x75\x66\x66\x65\x72\x65\x64\x20\x74\x65\x78\x74\x0a\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x61\x20\x62\x75\x66\x66\x65\x72\x65\x64\x20\x72\x61\x77\x20\x73\x74\x72\x65\x61\x6d\x20\x28\x60\x42\x75\x66\x66\x65\x72\x65\x64\x49\x4f\x42\x61\x73\x65\x60\x29\x2e\x20\x46\x69\x6e\x61\x6c\x6c\x79\x2c\x20\x53\x74\x72\x69\x6e\x67\x49\x4f\x0a\x69\x73\x20\x61\x6e\x20\x69\x6e\x2d\x6d\x65\x6d\x6f\x72\x79\x20\x73\x74\x72\x65\x61\x6d\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x2e\x0a\x0a\x41\x72\x67\x75\x6d\x65\x6e\x74\x20\x6e\x61\x6d\x65\x73\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x2c\x20\x61\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x0a\x6f\x66\x20\x6f\x70\x65\x6e\x28\x29\x20\x61\x72\x65\x20\x69\x6e\x74\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x75\x73\x65\x64\x20\x61\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x2e\x0a\x0a\x64\x61\x74\x61\x3a\x0a\x0a\x44\x45\x46\x41\x55\x4c\x54\x5f\x42\x55\x46\x46\x45\x52\x5f\x53\x49\x5a\x45\x0a\x0a\x20\x20\x20\x41\x6e\x20\x69\x6e\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x62\x75\x66\x66\x65\x72\x20\x73\x69\x7a\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x27\x73\x20\x62\x75\x66\x66\x65\x72\x65\x64\x0a\x20\x20\x20\x49\x2f\x4f\x20\x63\x6c\x61\x73\x73\x65\x73\x2e\x20\x6f\x70\x65\x6e\x28\x29\x20\x75\x73\x65\x73\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x27\x73\x20\x62\x6c\x6b\x73\x69\x7a\x65\x20\x28\x61\x73\x20\x6f\x62\x74\x61\x69\x6e\x65\x64\x20\x62\x79\x20\x6f\x73\x2e\x73\x74\x61\x74\x29\x20\x69\x66\x0a\x20\x20\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x2e\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[236]; + } +io_toplevel_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 235, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Guido van Rossum , Mike Verdone , Mark Russell , Antoine Pitrou , Amaury Forgeot d'Arc , Benjamin Peterson ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_BlockingIOError = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BlockingIOError", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_IOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "IOBase", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_RawIOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "RawIOBase", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_StringIO = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StringIO", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_BufferedIOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedIOBase", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_BufferedReader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedReader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_BufferedWriter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedWriter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_BufferedRWPair = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedRWPair", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_BufferedRandom = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BufferedRandom", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_TextIOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "TextIOBase", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str_UnsupportedOperation = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UnsupportedOperation", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_SEEK_SET = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SEEK_SET", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_SEEK_CUR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SEEK_CUR", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_SEEK_END = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SEEK_END", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str_DEFAULT_BUFFER_SIZE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "DEFAULT_BUFFER_SIZE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_text_encoding = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "text_encoding", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[22]; + }_object; + } +io_toplevel_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 22, + }, + .ob_item = { + & const_str_BlockingIOError._ascii.ob_base, + &_Py_ID(open), + & const_str_open_code._ascii.ob_base, + & const_str_IOBase._ascii.ob_base, + & const_str_RawIOBase._ascii.ob_base, + & const_str_FileIO._ascii.ob_base, + & const_str_BytesIO._ascii.ob_base, + & const_str_StringIO._ascii.ob_base, + & const_str_BufferedIOBase._ascii.ob_base, + & const_str_BufferedReader._ascii.ob_base, + & const_str_BufferedWriter._ascii.ob_base, + & const_str_BufferedRWPair._ascii.ob_base, + & const_str_BufferedRandom._ascii.ob_base, + & const_str_TextIOBase._ascii.ob_base, + &_Py_ID(TextIOWrapper), + & const_str_UnsupportedOperation._ascii.ob_base, + & const_str_SEEK_SET._ascii.ob_base, + & const_str_SEEK_CUR._ascii.ob_base, + & const_str_SEEK_END._ascii.ob_base, + & const_str_DEFAULT_BUFFER_SIZE._ascii.ob_base, + & const_str_text_encoding._ascii.ob_base, + & const_str_IncrementalNewlineDecoder._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +io_toplevel_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & const_str_DEFAULT_BUFFER_SIZE._ascii.ob_base, + & const_str_BlockingIOError._ascii.ob_base, + & const_str_UnsupportedOperation._ascii.ob_base, + &_Py_ID(open), + & const_str_open_code._ascii.ob_base, + & const_str_FileIO._ascii.ob_base, + & const_str_BytesIO._ascii.ob_base, + & const_str_StringIO._ascii.ob_base, + & const_str_BufferedReader._ascii.ob_base, + & const_str_BufferedWriter._ascii.ob_base, + & const_str_BufferedRWPair._ascii.ob_base, + & const_str_BufferedRandom._ascii.ob_base, + & const_str_IncrementalNewlineDecoder._ascii.ob_base, + & const_str_text_encoding._ascii.ob_base, + &_Py_ID(TextIOWrapper), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_OpenWrapper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "OpenWrapper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[44]; + } +io_toplevel_consts_6_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 43, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "OpenWrapper is deprecated, use open instead", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +io_toplevel_consts_6_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +io_toplevel_consts_6_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " has no attribute ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +io_toplevel_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + Py_None, + & const_str_OpenWrapper._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & io_toplevel_consts_6_consts_3._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, + & io_toplevel_consts_6_consts_6._ascii.ob_base, + & io_toplevel_consts_6_consts_7._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +io_toplevel_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(warnings), + & const_str_warn._ascii.ob_base, + & const_str_DeprecationWarning._ascii.ob_base, + &_Py_ID(open), + & const_str_OpenWrapper._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +io_toplevel_consts_6_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[104]; + } +io_toplevel_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 103, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x07\x0b\x88\x7d\xd2\x07\x1c\xd0\x07\x1c\xf0\x0c\x00\x09\x18\x88\x0f\x88\x0f\x88\x0f\xd8\x08\x10\x8f\x0d\x8a\x0d\xd0\x16\x43\xdd\x16\x28\xb0\x51\xf0\x03\x00\x09\x16\xf1\x00\x01\x09\x38\xf4\x00\x01\x09\x38\xf0\x00\x01\x09\x38\xf5\x06\x00\x17\x1b\x88\x0b\xdd\x0f\x1a\xd0\x08\x1a\xdd\x0a\x18\xd0\x19\x49\xa5\x38\xd0\x19\x49\xd0\x19\x49\xc0\x14\xd0\x19\x49\xd0\x19\x49\xd1\x0a\x4a\xd4\x0a\x4a\xd0\x04\x4a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +io_toplevel_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(name), + &_Py_ID(warnings), + }, + }, +}; +static + struct _PyCode_DEF(160) +io_toplevel_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 80, + }, + .co_consts = & io_toplevel_consts_6_consts._object.ob_base.ob_base, + .co_names = & io_toplevel_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 61, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & io_toplevel_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, + .co_name = &_Py_ID(__getattr__), + .co_qualname = &_Py_ID(__getattr__), + .co_linetable = & io_toplevel_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x2f\x64\x02\x64\x00\x6c\x00\x7d\x01\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x04\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x64\x07\x7c\x00\x9b\x02\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_io = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "io", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +io_toplevel_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_IOBase._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__IOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_IOBase", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +io_toplevel_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + & const_str__io._ascii.ob_base, + & const_str__IOBase._ascii.ob_base, + &_Py_ID(__doc__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +io_toplevel_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\x8c\x6b\xd4\x0e\x21\x80\x47\x80\x47\x80\x47", +}; +static + struct _PyCode_DEF(38) +io_toplevel_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & io_toplevel_consts_10_consts._object.ob_base.ob_base, + .co_names = & io_toplevel_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 88, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, + .co_name = & const_str_IOBase._ascii.ob_base, + .co_qualname = & const_str_IOBase._ascii.ob_base, + .co_linetable = & io_toplevel_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +io_toplevel_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_RawIOBase._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str__RawIOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_RawIOBase", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +io_toplevel_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + & const_str__io._ascii.ob_base, + & const_str__RawIOBase._ascii.ob_base, + &_Py_ID(__doc__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +io_toplevel_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\x8c\x6e\xd4\x0e\x24\x80\x47\x80\x47\x80\x47", +}; +static + struct _PyCode_DEF(38) +io_toplevel_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & io_toplevel_consts_13_consts._object.ob_base.ob_base, + .co_names = & io_toplevel_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 91, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, + .co_name = & const_str_RawIOBase._ascii.ob_base, + .co_qualname = & const_str_RawIOBase._ascii.ob_base, + .co_linetable = & io_toplevel_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +io_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_BufferedIOBase._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__BufferedIOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_BufferedIOBase", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +io_toplevel_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + & const_str__io._ascii.ob_base, + & const_str__BufferedIOBase._ascii.ob_base, + &_Py_ID(__doc__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +io_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\xd4\x0e\x21\xd4\x0e\x29\x80\x47\x80\x47\x80\x47", +}; +static + struct _PyCode_DEF(38) +io_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & io_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = & io_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 94, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, + .co_name = & const_str_BufferedIOBase._ascii.ob_base, + .co_qualname = & const_str_BufferedIOBase._ascii.ob_base, + .co_linetable = & io_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +io_toplevel_consts_17_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_TextIOBase._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str__TextIOBase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_TextIOBase", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +io_toplevel_consts_17_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + & const_str__io._ascii.ob_base, + & const_str__TextIOBase._ascii.ob_base, + &_Py_ID(__doc__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +io_toplevel_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\x8c\x6f\xd4\x0e\x25\x80\x47\x80\x47\x80\x47", +}; +static + struct _PyCode_DEF(38) +io_toplevel_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & io_toplevel_consts_17_consts._object.ob_base.ob_base, + .co_names = & io_toplevel_consts_17_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 97, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, + .co_name = & const_str_TextIOBase._ascii.ob_base, + .co_qualname = & const_str_TextIOBase._ascii.ob_base, + .co_linetable = & io_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__WindowsConsoleIO = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_WindowsConsoleIO", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +io_toplevel_consts_19 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__WindowsConsoleIO._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[20]; + }_object; + } +io_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 20, + }, + .ob_item = { + & io_toplevel_consts_0._ascii.ob_base, + & io_toplevel_consts_1._ascii.ob_base, + & io_toplevel_consts_2._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & io_toplevel_consts_5._object.ob_base.ob_base, + & io_toplevel_consts_6.ob_base.ob_base, + & const_str_io._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & io_toplevel_consts_10.ob_base.ob_base, + & const_str_IOBase._ascii.ob_base, + & abc_toplevel_consts_17._object.ob_base.ob_base, + & io_toplevel_consts_13.ob_base.ob_base, + & const_str_RawIOBase._ascii.ob_base, + & io_toplevel_consts_15.ob_base.ob_base, + & const_str_BufferedIOBase._ascii.ob_base, + & io_toplevel_consts_17.ob_base.ob_base, + & const_str_TextIOBase._ascii.ob_base, + & io_toplevel_consts_19._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str___author__ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__author__", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_klass = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "klass", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[38]; + }_object; + } +io_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 38, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str___author__._ascii.ob_base, + &_Py_ID(__all__), + & const_str__io._ascii.ob_base, + & const_str_abc._ascii.ob_base, + & const_str_DEFAULT_BUFFER_SIZE._ascii.ob_base, + & const_str_BlockingIOError._ascii.ob_base, + & const_str_UnsupportedOperation._ascii.ob_base, + &_Py_ID(open), + & const_str_open_code._ascii.ob_base, + & const_str_FileIO._ascii.ob_base, + & const_str_BytesIO._ascii.ob_base, + & const_str_StringIO._ascii.ob_base, + & const_str_BufferedReader._ascii.ob_base, + & const_str_BufferedWriter._ascii.ob_base, + & const_str_BufferedRWPair._ascii.ob_base, + & const_str_BufferedRandom._ascii.ob_base, + & const_str_IncrementalNewlineDecoder._ascii.ob_base, + & const_str_text_encoding._ascii.ob_base, + &_Py_ID(TextIOWrapper), + &_Py_ID(__getattr__), + &_Py_ID(__module__), + & const_str_SEEK_SET._ascii.ob_base, + & const_str_SEEK_CUR._ascii.ob_base, + & const_str_SEEK_END._ascii.ob_base, + & const_str__IOBase._ascii.ob_base, + & const_str_ABCMeta._ascii.ob_base, + & const_str_IOBase._ascii.ob_base, + & const_str__RawIOBase._ascii.ob_base, + & const_str_RawIOBase._ascii.ob_base, + & const_str__BufferedIOBase._ascii.ob_base, + & const_str_BufferedIOBase._ascii.ob_base, + & const_str__TextIOBase._ascii.ob_base, + & const_str_TextIOBase._ascii.ob_base, + & const_str_register._ascii.ob_base, + & const_str_klass._ascii.ob_base, + & const_str__WindowsConsoleIO._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[714]; + } +io_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 713, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x21\x01\x04\xf0\x00\x21\x01\x04\xf0\x48\x01\x05\x0f\x38\x80\x0a\xf0\x0e\x05\x0b\x50\x01\xf0\x00\x05\x0b\x50\x01\xf0\x00\x05\x0b\x50\x01\x80\x07\xf0\x10\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xf0\x04\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x0c\x0d\x01\x4b\x01\xf0\x00\x0d\x01\x4b\x01\xf0\x00\x0d\x01\x4b\x01\xf0\x22\x00\x23\x27\xd0\x00\x14\xd4\x00\x1f\xf0\x06\x00\x0c\x0d\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xf0\x0a\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x00\x01\x01\x22\x88\x53\x8c\x5b\xa0\x43\xa4\x4b\xf0\x00\x01\x01\x22\xf1\x00\x01\x01\x22\xf4\x00\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x06\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x00\x01\x01\x25\x90\x03\x94\x0e\xa0\x06\xf1\x00\x01\x01\x25\xf4\x00\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x06\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\x90\x53\xd4\x15\x28\xa8\x26\xf1\x00\x01\x01\x2a\xf4\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x06\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x00\x01\x01\x26\x90\x13\x94\x1f\xa0\x26\xf1\x00\x01\x01\x26\xf4\x00\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x06\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x36\xd1\x00\x1a\xd4\x00\x1a\xd0\x00\x1a\xe0\x0e\x15\x90\x7e\xa0\x7e\xb0\x7e\xd8\x0e\x1c\xf0\x03\x01\x0e\x1e\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\x80\x45\xe0\x04\x12\xd7\x04\x1b\xd2\x04\x1b\x98\x45\xd1\x04\x22\xd4\x04\x22\xd0\x04\x22\xd0\x04\x22\xe0\x0e\x16\x98\x0d\xd0\x0d\x26\xf0\x00\x01\x01\x1f\xf0\x00\x01\x01\x1f\x80\x45\xd8\x04\x0e\xd7\x04\x17\xd2\x04\x17\x98\x05\xd1\x04\x1e\xd4\x04\x1e\xd0\x04\x1e\xd0\x04\x1e\xd8\x04\x09\xf0\x04\x05\x01\x2a\xd8\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xf0\x08\x00\x05\x0e\xd7\x04\x16\xd2\x04\x16\xd0\x17\x28\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xd0\x04\x29\xd0\x04\x29\xf8\xf0\x07\x00\x08\x13\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xd8\x04\x08\x80\x44\x80\x44\xf0\x03\x01\x01\x09\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +io_toplevel_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc3\x2b\x06\x44\x08\x00\xc4\x08\x05\x44\x11\x03\xc4\x10\x01\x44\x11\x03", +}; +static + struct _PyCode_DEF(552) +io_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 276, + }, + .co_consts = & io_toplevel_consts._object.ob_base.ob_base, + .co_names = & io_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = & io_toplevel_exceptiontable.ob_base.ob_base, + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & io_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x67\x00\x64\x02\xa2\x01\x5a\x02\x64\x03\x64\x04\x6c\x03\x5a\x03\x64\x03\x64\x04\x6c\x04\x5a\x04\x64\x03\x64\x05\x6c\x03\x6d\x05\x5a\x05\x6d\x06\x5a\x06\x6d\x07\x5a\x07\x6d\x08\x5a\x08\x6d\x09\x5a\x09\x6d\x0a\x5a\x0a\x6d\x0b\x5a\x0b\x6d\x0c\x5a\x0c\x6d\x0d\x5a\x0d\x6d\x0e\x5a\x0e\x6d\x0f\x5a\x0f\x6d\x10\x5a\x10\x6d\x11\x5a\x11\x6d\x12\x5a\x12\x6d\x13\x5a\x13\x01\x00\x64\x06\x84\x00\x5a\x14\x64\x07\x65\x07\x5f\x15\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x5a\x16\x64\x08\x5a\x17\x64\x09\x5a\x18\x02\x00\x47\x00\x64\x0a\x84\x00\x64\x0b\x65\x03\x6a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x65\x04\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\xac\x0c\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1b\x02\x00\x47\x00\x64\x0d\x84\x00\x64\x0e\x65\x03\x6a\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1d\x02\x00\x47\x00\x64\x0f\x84\x00\x64\x10\x65\x03\x6a\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1f\x02\x00\x47\x00\x64\x11\x84\x00\x64\x12\x65\x03\x6a\x20\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x65\x1d\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x0b\x65\x0d\x65\x0e\x65\x10\x65\x0f\x66\x05\x44\x00\x5d\x17\x5a\x23\x65\x1f\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x23\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x65\x0c\x65\x13\x66\x02\x44\x00\x5d\x17\x5a\x23\x65\x21\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x23\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x5b\x23\x09\x00\x64\x03\x64\x13\x6c\x03\x6d\x24\x5a\x24\x01\x00\x65\x1d\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x24\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x04\x53\x00\x23\x00\x65\x25\x24\x00\x72\x04\x01\x00\x59\x00\x64\x04\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static void io_do_patchups(void) { +} + +PyObject * +_Py_get_io_toplevel(void) +{ + io_do_patchups(); + return Py_NewRef((PyObject *) &io_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[107]; + } +_collections_abc_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 106, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x62\x73\x74\x72\x61\x63\x74\x20\x42\x61\x73\x65\x20\x43\x6c\x61\x73\x73\x65\x73\x20\x28\x41\x42\x43\x73\x29\x20\x66\x6f\x72\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x73\x2c\x20\x61\x63\x63\x6f\x72\x64\x69\x6e\x67\x20\x74\x6f\x20\x50\x45\x50\x20\x33\x31\x31\x39\x2e\x0a\x0a\x55\x6e\x69\x74\x20\x74\x65\x73\x74\x73\x20\x61\x72\x65\x20\x69\x6e\x20\x74\x65\x73\x74\x5f\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x73\x2e\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_ABCMeta._ascii.ob_base, + & const_str_abstractmethod._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +_collections_abc_toplevel_consts_5_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str__f = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_f", +}; +static + struct _PyCode_DEF(6) +_collections_abc_toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 14, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__f._ascii.ob_base, + .co_qualname = & const_str__f._ascii.ob_base, + .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_Awaitable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Awaitable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_Coroutine = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Coroutine", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_AsyncIterable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncIterable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_AsyncIterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncIterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_AsyncGenerator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncGenerator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_Hashable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Hashable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_Iterable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Iterable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_Iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_Generator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Generator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_Reversible = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Reversible", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_Sized = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sized", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_Container = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Container", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_Callable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Callable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_Collection = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Collection", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_Set = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_MutableSet = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_Mapping = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_MutableMapping = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_MappingView = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MappingView", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_KeysView = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "KeysView", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_ItemsView = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ItemsView", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_ValuesView = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ValuesView", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_Sequence = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_MutableSequence = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_ByteString = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ByteString", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[25]; + }_object; + } +_collections_abc_toplevel_consts_6 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 25, + }, + .ob_item = { + & const_str_Awaitable._ascii.ob_base, + & const_str_Coroutine._ascii.ob_base, + & const_str_AsyncIterable._ascii.ob_base, + & const_str_AsyncIterator._ascii.ob_base, + & const_str_AsyncGenerator._ascii.ob_base, + & const_str_Hashable._ascii.ob_base, + & const_str_Iterable._ascii.ob_base, + & const_str_Iterator._ascii.ob_base, + & const_str_Generator._ascii.ob_base, + & const_str_Reversible._ascii.ob_base, + & const_str_Sized._ascii.ob_base, + & const_str_Container._ascii.ob_base, + & const_str_Callable._ascii.ob_base, + & const_str_Collection._ascii.ob_base, + & const_str_Set._ascii.ob_base, + & const_str_MutableSet._ascii.ob_base, + & const_str_Mapping._ascii.ob_base, + & const_str_MutableMapping._ascii.ob_base, + & const_str_MappingView._ascii.ob_base, + & const_str_KeysView._ascii.ob_base, + & const_str_ItemsView._ascii.ob_base, + & const_str_ValuesView._ascii.ob_base, + & const_str_Sequence._ascii.ob_base, + & const_str_MutableSequence._ascii.ob_base, + & const_str_ByteString._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +_collections_abc_toplevel_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "collections.abc", +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_1000 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 1000 }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +_collections_abc_toplevel_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\x98\x35\x98\x35\x98\x35\x98\x35", +}; +static + struct _PyCode_DEF(14) +_collections_abc_toplevel_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 7, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 62, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_lambda), + .co_qualname = &_Py_STR(anon_lambda), + .co_linetable = & _collections_abc_toplevel_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x56\x00\x97\x01\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__coro = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_coro", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +_collections_abc_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\x80\x00\x80\x00", +}; +static + struct _PyCode_DEF(10) +_collections_abc_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 5, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 131, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 64, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__coro._ascii.ob_base, + .co_qualname = & const_str__coro._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str__ag = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ag", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +_collections_abc_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\x90\x15\x90\x15\x90\x15\x90\x15\x90\x15\x90\x15\x90\x15", +}; +static + struct _PyCode_DEF(20) +_collections_abc_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 515, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 70, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__ag._ascii.ob_base, + .co_qualname = & const_str__ag._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x57\x00\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str___mro__ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__mro__", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str___mro__._ascii.ob_base, + &_Py_ID(__dict__), + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__check_methods = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_check_methods", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[120]; + } +_collections_abc_toplevel_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 119, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0a\x0b\x8c\x29\x80\x43\xd8\x12\x19\xf0\x00\x07\x05\x22\xf0\x00\x07\x05\x22\x88\x06\xd8\x11\x14\xf0\x00\x06\x09\x22\xf0\x00\x06\x09\x22\x88\x41\xd8\x0f\x15\x98\x11\x9c\x1a\xd0\x0f\x23\xd0\x0f\x23\xd8\x13\x14\x94\x3a\x98\x66\xd4\x13\x25\xd0\x13\x2d\xdd\x1b\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xd8\x10\x15\x90\x05\xf0\x07\x00\x10\x24\xf5\x0a\x00\x14\x22\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf0\x05\x00\x11\x16\xf0\x06\x00\x0c\x10\x88\x34", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_C = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "C", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_methods = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "methods", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_B = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "B", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_16_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_C._ascii.ob_base, + & const_str_methods._ascii.ob_base, + &_Py_ID(mro), + & const_str_method._ascii.ob_base, + & const_str_B._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(128) +_collections_abc_toplevel_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 64, + }, + .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 78, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__check_methods._ascii.ob_base, + .co_qualname = & const_str__check_methods._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x01\x44\x00\x5d\x33\x7d\x03\x7c\x02\x44\x00\x5d\x25\x7d\x04\x7c\x03\x7c\x04\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x1a\x7c\x04\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0b\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x01\x00\x63\x02\x01\x00\x53\x00\x01\x00\x6e\x0a\x8c\x26\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x01\x00\x53\x00\x8c\x34\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_17_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Hashable.__hash__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +_collections_abc_toplevel_consts_17_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x10\x88\x71", +}; +static + struct _PyCode_DEF(6) +_collections_abc_toplevel_consts_17_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 94, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__hash__), + .co_qualname = & _collections_abc_toplevel_consts_17_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_17_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_17_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__hash__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_17_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Hashable._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +_collections_abc_toplevel_consts_17_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Hashable.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +_collections_abc_toplevel_consts_17_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x28\x88\x3f\x88\x3f\xdd\x13\x21\xa0\x21\xa0\x5a\xd1\x13\x30\xd4\x13\x30\xd0\x0c\x30\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_17_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_C._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_17_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_17_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_17_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 98, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_17_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_17_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_17_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_Hashable._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_17_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_17_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +_collections_abc_toplevel_consts_17_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__hash__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[78]; + } +_collections_abc_toplevel_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 77, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x11\xf0\x00\x01\x05\x11\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x11\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", +}; +static + struct _PyCode_DEF(62) +_collections_abc_toplevel_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 31, + }, + .co_consts = & _collections_abc_toplevel_consts_17_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_17_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 90, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Hashable._ascii.ob_base, + .co_qualname = & const_str_Hashable._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_20_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Awaitable.__await__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +_collections_abc_toplevel_consts_20_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xe0\x08\x0d\x88\x05\x88\x05\x88\x05\x88\x05\x88\x05", +}; +static + struct _PyCode_DEF(18) +_collections_abc_toplevel_consts_20_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 9, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 109, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__await__), + .co_qualname = & _collections_abc_toplevel_consts_20_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_20_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_20_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__await__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_20_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Awaitable._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +_collections_abc_toplevel_consts_20_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Awaitable.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +_collections_abc_toplevel_consts_20_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5b\xd1\x13\x31\xd4\x13\x31\xd0\x0c\x31\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_20_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_20_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_20_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 113, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_20_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_20_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_20_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_Awaitable._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_20_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_20_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_GenericAlias = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "GenericAlias", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__await__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + & const_str_GenericAlias._ascii.ob_base, + &_Py_ID(__class_getitem__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[92]; + } +_collections_abc_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 91, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x0e\xf0\x00\x01\x05\x0e\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x0e\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_20_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 105, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Awaitable._ascii.ob_base, + .co_qualname = & const_str_Awaitable._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[100]; + } +_collections_abc_toplevel_consts_22_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 99, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x65\x6e\x64\x20\x61\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_22_consts_2_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_StopIteration._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_22_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Coroutine.send", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +_collections_abc_toplevel_consts_22_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x0f\x1c\xd0\x08\x1b", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_22_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & _collections_abc_toplevel_consts_22_consts_2_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 126, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(send), + .co_qualname = & _collections_abc_toplevel_consts_22_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[104]; + } +_collections_abc_toplevel_consts_22_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 103, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x61\x69\x73\x65\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_22_consts_4_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_with_traceback = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "with_traceback", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_with_traceback._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +_collections_abc_toplevel_consts_22_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Coroutine.throw", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[60]; + } +_collections_abc_toplevel_consts_22_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 59, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x0c\x0f\x88\x3b\xd8\x0f\x11\x88\x7a\xd8\x16\x19\x90\x09\xd8\x12\x15\x90\x23\x91\x25\x94\x25\x88\x43\xd8\x0b\x0d\x88\x3e\xd8\x12\x15\xd7\x12\x24\xd2\x12\x24\xa0\x52\xd1\x12\x28\xd4\x12\x28\x88\x43\xd8\x0e\x11\x88\x09", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_typ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "typ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_val = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "val", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_typ._ascii.ob_base, + & const_str_val._ascii.ob_base, + & const_str_tb._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_22_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_22_consts_4_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 133, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(throw), + .co_qualname = & _collections_abc_toplevel_consts_22_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x80\x0e\x7c\x03\x80\x02\x7c\x01\x82\x01\x02\x00\x7c\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x15\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[47]; + } +_collections_abc_toplevel_consts_22_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 46, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x61\x69\x73\x65\x20\x47\x65\x6e\x65\x72\x61\x74\x6f\x72\x45\x78\x69\x74\x20\x69\x6e\x73\x69\x64\x65\x20\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +_collections_abc_toplevel_consts_22_consts_5_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "coroutine ignored GeneratorExit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_22_consts_5_consts_0._ascii.ob_base, + & _collections_abc_toplevel_consts_22_consts_5_consts_1._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_GeneratorExit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "GeneratorExit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(throw), + & const_str_GeneratorExit._ascii.ob_base, + & const_str_RuntimeError._ascii.ob_base, + & const_str_StopIteration._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +_collections_abc_toplevel_consts_22_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Coroutine.close", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[85]; + } +_collections_abc_toplevel_consts_22_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 84, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x05\x09\x42\x01\xd8\x0c\x10\x8f\x4a\x8a\x4a\x95\x7d\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xf5\x08\x00\x13\x1f\xd0\x1f\x40\xd1\x12\x41\xd4\x12\x41\xd0\x0c\x41\xf8\xf5\x07\x00\x11\x1e\x9d\x7d\xd0\x0f\x2d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +_collections_abc_toplevel_consts_22_consts_5_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\x82\x1a\x2b\x00\xab\x11\x41\x00\x03\xbf\x01\x41\x00\x03", +}; +static + struct _PyCode_DEF(134) +_collections_abc_toplevel_consts_22_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 67, + }, + .co_consts = & _collections_abc_toplevel_consts_22_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_22_consts_5_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 146, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(close), + .co_qualname = & _collections_abc_toplevel_consts_22_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + &_Py_ID(__await__), + &_Py_ID(send), + &_Py_ID(throw), + &_Py_ID(close), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_22_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Coroutine._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +_collections_abc_toplevel_consts_22_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Coroutine.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[42]; + } +_collections_abc_toplevel_consts_22_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 41, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5b\xb0\x26\xb8\x27\xc0\x37\xd1\x13\x4b\xd4\x13\x4b\xd0\x0c\x4b\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(72) +_collections_abc_toplevel_consts_22_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & _collections_abc_toplevel_consts_22_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 156, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_22_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x13\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\x64\x04\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +_collections_abc_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_Coroutine._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_22_consts_2.ob_base.ob_base, + Py_None, + & _collections_abc_toplevel_consts_22_consts_4.ob_base.ob_base, + & _collections_abc_toplevel_consts_22_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_22_consts_6.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_22_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(send), + &_Py_ID(throw), + &_Py_ID(close), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[128]; + } +_collections_abc_toplevel_consts_22_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 127, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x04\x05\x1c\xf0\x0c\x00\x06\x14\xf0\x02\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x0a\x05\x12\xf0\x18\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x14\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", +}; +static + struct _PyCode_DEF(92) +_collections_abc_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 46, + }, + .co_consts = & _collections_abc_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 122, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Coroutine._ascii.ob_base, + .co_qualname = & const_str_Coroutine._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x04\x64\x07\x64\x04\x84\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x65\x08\x64\x06\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_24_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_AsyncIterator._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +_collections_abc_toplevel_consts_24_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncIterable.__aiter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_24_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x1c\x89\x7f\x8c\x7f\xd0\x08\x1e", +}; +static + struct _PyCode_DEF(30) +_collections_abc_toplevel_consts_24_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 15, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_24_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 170, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__aiter__), + .co_qualname = & _collections_abc_toplevel_consts_24_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_24_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_24_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__aiter__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_24_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_AsyncIterable._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +_collections_abc_toplevel_consts_24_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncIterable.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +_collections_abc_toplevel_consts_24_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2d\xd0\x0b\x1f\xd0\x0b\x1f\xdd\x13\x21\xa0\x21\xa0\x5b\xd1\x13\x31\xd4\x13\x31\xd0\x0c\x31\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_24_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_24_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_24_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 174, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_24_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_24_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_AsyncIterable._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_24_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_24_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__aiter__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + & const_str_GenericAlias._ascii.ob_base, + &_Py_ID(__class_getitem__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[92]; + } +_collections_abc_toplevel_consts_24_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 91, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x1f\xf0\x00\x01\x05\x1f\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x1f\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 166, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_AsyncIterable._ascii.ob_base, + .co_qualname = & const_str_AsyncIterable._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_24_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[65]; + } +_collections_abc_toplevel_consts_26_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 64, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the next item or raise StopAsyncIteration when exhausted.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_26_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_26_consts_2_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_StopAsyncIteration = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "StopAsyncIteration", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_26_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_StopAsyncIteration._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +_collections_abc_toplevel_consts_26_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncIterator.__anext__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +_collections_abc_toplevel_consts_26_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x06\x00\x0f\x21\xd0\x08\x20", +}; +static + struct _PyCode_DEF(20) +_collections_abc_toplevel_consts_26_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & _collections_abc_toplevel_consts_26_consts_2_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 131, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 187, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__anext__), + .co_qualname = & _collections_abc_toplevel_consts_26_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_26_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +_collections_abc_toplevel_consts_26_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncIterator.__aiter__", +}; +static + struct _PyCode_DEF(6) +_collections_abc_toplevel_consts_26_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 192, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__aiter__), + .co_qualname = & _collections_abc_toplevel_consts_26_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_26_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + &_Py_ID(__anext__), + &_Py_ID(__aiter__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_26_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_AsyncIterator._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +_collections_abc_toplevel_consts_26_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncIterator.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[38]; + } +_collections_abc_toplevel_consts_26_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 37, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2d\xd0\x0b\x1f\xd0\x0b\x1f\xdd\x13\x21\xa0\x21\xa0\x5b\xb0\x2b\xd1\x13\x3e\xd4\x13\x3e\xd0\x0c\x3e\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(68) +_collections_abc_toplevel_consts_26_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 34, + }, + .co_consts = & _collections_abc_toplevel_consts_26_consts_4_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_26_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 195, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_26_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_26_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_AsyncIterator._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_26_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_26_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_26_consts_4.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_collections_abc_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__anext__), + &_Py_ID(__aiter__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[93]; + } +_collections_abc_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 92, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x21\xf0\x00\x02\x05\x21\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x21\xf0\x08\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", +}; +static + struct _PyCode_DEF(68) +_collections_abc_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 34, + }, + .co_consts = & _collections_abc_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 183, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_AsyncIterator._ascii.ob_base, + .co_qualname = & const_str_AsyncIterator._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x65\x07\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[113]; + } +_collections_abc_toplevel_consts_28_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 112, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x20\x69\x74\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x61\x73\x79\x6e\x63\x68\x72\x6f\x6e\x6f\x75\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x65\x78\x68\x61\x75\x73\x74\x65\x64\x2c\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x41\x73\x79\x6e\x63\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_28_consts_2_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_asend = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "asend", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_asend._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +_collections_abc_toplevel_consts_28_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncGenerator.__anext__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[45]; + } +_collections_abc_toplevel_consts_28_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 44, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x08\x00\x16\x1a\x97\x5a\x92\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x08\x25", +}; +static + struct _PyCode_DEF(60) +_collections_abc_toplevel_consts_28_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 30, + }, + .co_consts = & _collections_abc_toplevel_consts_28_consts_2_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_28_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 131, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 206, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__anext__), + .co_qualname = & _collections_abc_toplevel_consts_28_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_28_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x64\x01\x7b\x03\x56\x00\x97\x03\x86\x04\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[118]; + } +_collections_abc_toplevel_consts_28_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 117, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x65\x6e\x64\x20\x61\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x61\x73\x79\x6e\x63\x68\x72\x6f\x6e\x6f\x75\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x41\x73\x79\x6e\x63\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_28_consts_3_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +_collections_abc_toplevel_consts_28_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncGenerator.asend", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +_collections_abc_toplevel_consts_28_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x0a\x00\x0f\x21\xd0\x08\x20", +}; +static + struct _PyCode_DEF(20) +_collections_abc_toplevel_consts_28_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & _collections_abc_toplevel_consts_28_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 131, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 212, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_asend._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_28_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_28_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[122]; + } +_collections_abc_toplevel_consts_28_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 121, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x61\x69\x73\x65\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x61\x73\x79\x6e\x63\x68\x72\x6f\x6e\x6f\x75\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x41\x73\x79\x6e\x63\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_28_consts_5_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_athrow = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "athrow", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +_collections_abc_toplevel_consts_28_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncGenerator.athrow", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[64]; + } +_collections_abc_toplevel_consts_28_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 63, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x0a\x00\x0c\x0f\x88\x3b\xd8\x0f\x11\x88\x7a\xd8\x16\x19\x90\x09\xd8\x12\x15\x90\x23\x91\x25\x94\x25\x88\x43\xd8\x0b\x0d\x88\x3e\xd8\x12\x15\xd7\x12\x24\xd2\x12\x24\xa0\x52\xd1\x12\x28\xd4\x12\x28\x88\x43\xd8\x0e\x11\x88\x09", +}; +static + struct _PyCode_DEF(88) +_collections_abc_toplevel_consts_28_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 44, + }, + .co_consts = & _collections_abc_toplevel_consts_28_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 131, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 219, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_athrow._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_28_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_28_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x02\x80\x0e\x7c\x03\x80\x02\x7c\x01\x82\x01\x02\x00\x7c\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x15\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x82\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +_collections_abc_toplevel_consts_28_consts_6_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "asynchronous generator ignored GeneratorExit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_22_consts_5_consts_0._ascii.ob_base, + Py_None, + & _collections_abc_toplevel_consts_28_consts_6_consts_2._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_athrow._ascii.ob_base, + & const_str_GeneratorExit._ascii.ob_base, + & const_str_RuntimeError._ascii.ob_base, + & const_str_StopAsyncIteration._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_aclose = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "aclose", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +_collections_abc_toplevel_consts_28_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncGenerator.aclose", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[108]; + } +_collections_abc_toplevel_consts_28_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 107, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x06\x05\x09\x4f\x01\xd8\x12\x16\x97\x2b\x92\x2b\x9d\x6d\xd1\x12\x2c\xd4\x12\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xf5\x08\x00\x13\x1f\xd0\x1f\x4d\xd1\x12\x4e\xd4\x12\x4e\xd0\x0c\x4e\xf8\xf5\x07\x00\x11\x1e\xd5\x1f\x31\xd0\x0f\x32\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +_collections_abc_toplevel_consts_28_consts_6_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x84\x20\x33\x00\xb3\x11\x41\x08\x03\xc1\x07\x01\x41\x08\x03", +}; +static + struct _PyCode_DEF(150) +_collections_abc_toplevel_consts_28_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 75, + }, + .co_consts = & _collections_abc_toplevel_consts_28_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_28_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_28_consts_6_exceptiontable.ob_base.ob_base, + .co_flags = 131, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 232, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_aclose._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_28_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_28_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x64\x01\x7b\x03\x56\x00\x97\x03\x86\x04\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + Py_None, + &_Py_ID(__aiter__), + &_Py_ID(__anext__), + & const_str_asend._ascii.ob_base, + & const_str_athrow._ascii.ob_base, + & const_str_aclose._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_28_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_AsyncGenerator._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +_collections_abc_toplevel_consts_28_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "AsyncGenerator.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[51]; + } +_collections_abc_toplevel_consts_28_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 50, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2e\xd0\x0b\x20\xd0\x0b\x20\xdd\x13\x21\xa0\x21\xa0\x5b\xb0\x2b\xd8\x22\x29\xa8\x38\xb0\x58\xf1\x03\x01\x14\x3f\xf4\x00\x01\x14\x3f\xf0\x00\x01\x0d\x3f\xe5\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(74) +_collections_abc_toplevel_consts_28_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 37, + }, + .co_consts = & _collections_abc_toplevel_consts_28_consts_7_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_28_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 242, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_28_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_28_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x14\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\x64\x04\x64\x05\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_collections_abc_toplevel_consts_28_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_AsyncGenerator._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_28_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_28_consts_3.ob_base.ob_base, + Py_None, + & _collections_abc_toplevel_consts_28_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_28_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_28_consts_7.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +_collections_abc_toplevel_consts_28_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + &_Py_ID(__anext__), + & const_str_abstractmethod._ascii.ob_base, + & const_str_asend._ascii.ob_base, + & const_str_athrow._ascii.ob_base, + & const_str_aclose._ascii.ob_base, + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[145]; + } +_collections_abc_toplevel_consts_28_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 144, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xf0\x04\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x0c\x00\x06\x14\xf0\x02\x04\x05\x21\xf0\x00\x04\x05\x21\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x04\x05\x21\xf0\x0c\x00\x06\x14\xf0\x02\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x0a\x05\x12\xf0\x18\x08\x05\x4f\x01\xf0\x00\x08\x05\x4f\x01\xf0\x00\x08\x05\x4f\x01\xf0\x14\x00\x06\x11\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf0\x00\x04\x05\x1e", +}; +static + struct _PyCode_DEF(98) +_collections_abc_toplevel_consts_28 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & _collections_abc_toplevel_consts_28_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_28_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 202, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_AsyncGenerator._ascii.ob_base, + .co_qualname = & const_str_AsyncGenerator._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_28_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x08\x64\x05\x84\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x65\x09\x64\x07\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_30_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Iterable.__iter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[17]; + } +_collections_abc_toplevel_consts_30_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 16, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x04\x01\x09\x17\xf0\x00\x01\x09\x17", +}; +static + struct _PyCode_DEF(10) +_collections_abc_toplevel_consts_30_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 5, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 257, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & _collections_abc_toplevel_consts_30_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_30_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_30_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__iter__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_30_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Iterable._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +_collections_abc_toplevel_consts_30_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Iterable.__subclasshook__", +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_30_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_30_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_30_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 262, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_30_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_17_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_30_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_Iterable._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_30_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_30_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_30_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__iter__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + & const_str_GenericAlias._ascii.ob_base, + &_Py_ID(__class_getitem__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[92]; + } +_collections_abc_toplevel_consts_30_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 91, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x17\xf0\x00\x02\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x17\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_30 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_30_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_30_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 253, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Iterable._ascii.ob_base, + .co_qualname = & const_str_Iterable._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_30_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[76]; + } +_collections_abc_toplevel_consts_32_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 75, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the next item from the iterator. When exhausted, raise StopIteration", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_32_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_32_consts_2_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_32_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Iterator.__next__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +_collections_abc_toplevel_consts_32_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x0f\x1c\xd0\x08\x1b", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_32_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & _collections_abc_toplevel_consts_32_consts_2_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 275, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__next__), + .co_qualname = & _collections_abc_toplevel_consts_32_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_32_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_32_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Iterator.__iter__", +}; +static + struct _PyCode_DEF(6) +_collections_abc_toplevel_consts_32_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 280, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & _collections_abc_toplevel_consts_32_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_32_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + &_Py_ID(__iter__), + &_Py_ID(__next__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_32_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Iterator._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +_collections_abc_toplevel_consts_32_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Iterator.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +_collections_abc_toplevel_consts_32_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x28\x88\x3f\x88\x3f\xdd\x13\x21\xa0\x21\xa0\x5a\xb0\x1a\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(68) +_collections_abc_toplevel_consts_32_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 34, + }, + .co_consts = & _collections_abc_toplevel_consts_32_consts_4_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_32_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 283, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_32_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_32_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_32_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_Iterator._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_32_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_32_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_32_consts_4.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_collections_abc_toplevel_consts_32_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__next__), + &_Py_ID(__iter__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[93]; + } +_collections_abc_toplevel_consts_32_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 92, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x1c\xf0\x00\x02\x05\x1c\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x1c\xf0\x08\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", +}; +static + struct _PyCode_DEF(68) +_collections_abc_toplevel_consts_32 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 34, + }, + .co_consts = & _collections_abc_toplevel_consts_32_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_32_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 271, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Iterator._ascii.ob_base, + .co_qualname = & const_str_Iterator._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_32_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x65\x07\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +_collections_abc_toplevel_consts_34_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Reversible.__reversed__", +}; +static + struct _PyCode_DEF(10) +_collections_abc_toplevel_consts_34_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 5, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 310, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__reversed__), + .co_qualname = & _collections_abc_toplevel_consts_34_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_30_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_34_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + &_Py_ID(__reversed__), + &_Py_ID(__iter__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_34_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Reversible._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +_collections_abc_toplevel_consts_34_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Reversible.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[38]; + } +_collections_abc_toplevel_consts_34_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 37, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2a\xd0\x0b\x1c\xd0\x0b\x1c\xdd\x13\x21\xa0\x21\xa0\x5e\xb0\x5a\xd1\x13\x40\xd4\x13\x40\xd0\x0c\x40\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(68) +_collections_abc_toplevel_consts_34_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 34, + }, + .co_consts = & _collections_abc_toplevel_consts_34_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_34_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 315, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_34_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_34_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_34_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_Reversible._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_34_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_34_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +_collections_abc_toplevel_consts_34_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__reversed__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[78]; + } +_collections_abc_toplevel_consts_34_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 77, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x17\xf0\x00\x02\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x17\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", +}; +static + struct _PyCode_DEF(62) +_collections_abc_toplevel_consts_34 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 31, + }, + .co_consts = & _collections_abc_toplevel_consts_34_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_34_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 306, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Reversible._ascii.ob_base, + .co_qualname = & const_str_Reversible._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_34_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[95]; + } +_collections_abc_toplevel_consts_36_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 94, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x20\x69\x74\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x65\x78\x68\x61\x75\x73\x74\x65\x64\x2c\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_36_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_36_consts_2_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_36_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(send), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +_collections_abc_toplevel_consts_36_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Generator.__next__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +_collections_abc_toplevel_consts_36_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x10\x14\x8f\x79\x8a\x79\x98\x14\x89\x7f\x8c\x7f\xd0\x08\x1e", +}; +static + struct _PyCode_DEF(44) +_collections_abc_toplevel_consts_36_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & _collections_abc_toplevel_consts_36_consts_2_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_36_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 326, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__next__), + .co_qualname = & _collections_abc_toplevel_consts_36_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_36_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[100]; + } +_collections_abc_toplevel_consts_36_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 99, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x65\x6e\x64\x20\x61\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_36_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_36_consts_3_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_36_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Generator.send", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_36_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & _collections_abc_toplevel_consts_36_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 332, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(send), + .co_qualname = & _collections_abc_toplevel_consts_36_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[104]; + } +_collections_abc_toplevel_consts_36_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 103, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x61\x69\x73\x65\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_36_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_36_consts_5_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +_collections_abc_toplevel_consts_36_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Generator.throw", +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_36_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_36_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 339, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(throw), + .co_qualname = & _collections_abc_toplevel_consts_36_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x80\x0e\x7c\x03\x80\x02\x7c\x01\x82\x01\x02\x00\x7c\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x15\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[47]; + } +_collections_abc_toplevel_consts_36_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 46, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x61\x69\x73\x65\x20\x47\x65\x6e\x65\x72\x61\x74\x6f\x72\x45\x78\x69\x74\x20\x69\x6e\x73\x69\x64\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +_collections_abc_toplevel_consts_36_consts_6_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "generator ignored GeneratorExit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_36_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_36_consts_6_consts_0._ascii.ob_base, + & _collections_abc_toplevel_consts_36_consts_6_consts_1._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +_collections_abc_toplevel_consts_36_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Generator.close", +}; +static + struct _PyCode_DEF(134) +_collections_abc_toplevel_consts_36_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 67, + }, + .co_consts = & _collections_abc_toplevel_consts_36_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_22_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_22_consts_5_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 352, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(close), + .co_qualname = & _collections_abc_toplevel_consts_36_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_22_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_36_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + Py_None, + &_Py_ID(__iter__), + &_Py_ID(__next__), + &_Py_ID(send), + &_Py_ID(throw), + &_Py_ID(close), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_36_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Generator._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +_collections_abc_toplevel_consts_36_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Generator.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[51]; + } +_collections_abc_toplevel_consts_36_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 50, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5a\xb0\x1a\xd8\x22\x28\xa8\x27\xb0\x37\xf1\x03\x01\x14\x3c\xf4\x00\x01\x14\x3c\xf0\x00\x01\x0d\x3c\xe5\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(74) +_collections_abc_toplevel_consts_36_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 37, + }, + .co_consts = & _collections_abc_toplevel_consts_36_consts_7_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_36_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 362, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_36_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_36_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x14\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\x64\x04\x64\x05\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_collections_abc_toplevel_consts_36_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_Generator._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_36_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_36_consts_3.ob_base.ob_base, + Py_None, + & _collections_abc_toplevel_consts_36_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_36_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_36_consts_7.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +_collections_abc_toplevel_consts_36_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + &_Py_ID(__next__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(send), + &_Py_ID(throw), + &_Py_ID(close), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[145]; + } +_collections_abc_toplevel_consts_36_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 144, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xf0\x04\x04\x05\x1f\xf0\x00\x04\x05\x1f\xf0\x00\x04\x05\x1f\xf0\x0c\x00\x06\x14\xf0\x02\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x04\x05\x1c\xf0\x0c\x00\x06\x14\xf0\x02\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x0a\x05\x12\xf0\x18\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x14\x00\x06\x11\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf0\x00\x04\x05\x1e", +}; +static + struct _PyCode_DEF(98) +_collections_abc_toplevel_consts_36 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & _collections_abc_toplevel_consts_36_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_36_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 322, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Generator._ascii.ob_base, + .co_qualname = & const_str_Generator._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_36_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x08\x64\x05\x84\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x65\x09\x64\x07\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +_collections_abc_toplevel_consts_38_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sized.__len__", +}; +static + struct _PyCode_DEF(6) +_collections_abc_toplevel_consts_38_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 377, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__len__), + .co_qualname = & _collections_abc_toplevel_consts_38_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_17_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_38_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__len__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_38_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Sized._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_38_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sized.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +_collections_abc_toplevel_consts_38_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x25\x88\x3c\x88\x3c\xdd\x13\x21\xa0\x21\xa0\x59\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_38_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_38_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_38_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 381, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_38_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_38_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_38_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_Sized._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_38_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_38_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +_collections_abc_toplevel_consts_38_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__len__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct _PyCode_DEF(62) +_collections_abc_toplevel_consts_38 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 31, + }, + .co_consts = & _collections_abc_toplevel_consts_38_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_38_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 373, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Sized._ascii.ob_base, + .co_qualname = & const_str_Sized._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_40_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Container.__contains__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +_collections_abc_toplevel_consts_40_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0f\x14\x88\x75", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_40_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_x._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(6) +_collections_abc_toplevel_consts_40_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 392, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_40_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__contains__), + .co_qualname = & _collections_abc_toplevel_consts_40_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_40_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_40_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__contains__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_40_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Container._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +_collections_abc_toplevel_consts_40_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Container.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +_collections_abc_toplevel_consts_40_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5e\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_40_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_40_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_40_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 396, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_40_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_40_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_40_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_Container._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_40_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_40_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_40_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__contains__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + & const_str_GenericAlias._ascii.ob_base, + &_Py_ID(__class_getitem__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[92]; + } +_collections_abc_toplevel_consts_40_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 91, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x15\xf0\x00\x01\x05\x15\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x15\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_40 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_40_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_40_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 388, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Container._ascii.ob_base, + .co_qualname = & const_str_Container._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_40_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_42_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + &_Py_ID(__len__), + &_Py_ID(__iter__), + &_Py_ID(__contains__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_42_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Collection._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +_collections_abc_toplevel_consts_42_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Collection.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[40]; + } +_collections_abc_toplevel_consts_42_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 39, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2a\xd0\x0b\x1c\xd0\x0b\x1c\xdd\x13\x21\xa0\x21\xa0\x69\xb0\x1a\xb8\x5e\xd1\x13\x4c\xd4\x13\x4c\xd0\x0c\x4c\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(70) +_collections_abc_toplevel_consts_42_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 35, + }, + .co_consts = & _collections_abc_toplevel_consts_42_consts_2_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_42_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 409, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_42_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_42_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x12\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_42_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_Collection._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_42_consts_2.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_42_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[51]; + } +_collections_abc_toplevel_consts_42_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 50, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x10\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", +}; +static + struct _PyCode_DEF(40) +_collections_abc_toplevel_consts_42 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 20, + }, + .co_consts = & _collections_abc_toplevel_consts_42_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_42_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 405, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Collection._ascii.ob_base, + .co_qualname = & const_str_Collection._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_42_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str__CallableGenericAlias = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_CallableGenericAlias", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[253]; + } +_collections_abc_toplevel_consts_44_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 252, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x52\x65\x70\x72\x65\x73\x65\x6e\x74\x20\x60\x43\x61\x6c\x6c\x61\x62\x6c\x65\x5b\x61\x72\x67\x74\x79\x70\x65\x73\x2c\x20\x72\x65\x73\x75\x6c\x74\x74\x79\x70\x65\x5d\x60\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x65\x74\x73\x20\x60\x60\x5f\x5f\x61\x72\x67\x73\x5f\x5f\x60\x60\x20\x74\x6f\x20\x61\x20\x74\x75\x70\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x66\x6c\x61\x74\x74\x65\x6e\x65\x64\x20\x60\x60\x61\x72\x67\x74\x79\x70\x65\x73\x60\x60\x0a\x20\x20\x20\x20\x66\x6f\x6c\x6c\x6f\x77\x65\x64\x20\x62\x79\x20\x60\x60\x72\x65\x73\x75\x6c\x74\x74\x79\x70\x65\x60\x60\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x61\x6d\x70\x6c\x65\x3a\x20\x60\x60\x43\x61\x6c\x6c\x61\x62\x6c\x65\x5b\x5b\x69\x6e\x74\x2c\x20\x73\x74\x72\x5d\x2c\x20\x66\x6c\x6f\x61\x74\x5d\x60\x60\x20\x73\x65\x74\x73\x20\x60\x60\x5f\x5f\x61\x72\x67\x73\x5f\x5f\x60\x60\x20\x74\x6f\x0a\x20\x20\x20\x20\x60\x60\x28\x69\x6e\x74\x2c\x20\x73\x74\x72\x2c\x20\x66\x6c\x6f\x61\x74\x29\x60\x60\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[55]; + } +_collections_abc_toplevel_consts_44_consts_3_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 54, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Callable must be used as Callable[[arg, ...], result].", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[71]; + } +_collections_abc_toplevel_consts_44_consts_3_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 70, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Expected a list of types, an ellipsis, ParamSpec, or Concatenate. Got ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & _collections_abc_toplevel_consts_44_consts_3_consts_2._ascii.ob_base, + & _collections_abc_toplevel_consts_44_consts_3_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__is_param_expr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_is_param_expr", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_tuple._ascii.ob_base, + &_Py_ID(len), + & const_str_TypeError._ascii.ob_base, + & const_str_list._ascii.ob_base, + & const_str__is_param_expr._ascii.ob_base, + & const_str_super._ascii.ob_base, + &_Py_ID(__new__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +_collections_abc_toplevel_consts_44_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_CallableGenericAlias.__new__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[199]; + } +_collections_abc_toplevel_consts_44_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 198, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xdd\x10\x1a\x98\x34\xa5\x15\xd1\x10\x27\xd4\x10\x27\xf0\x00\x02\x09\x4a\x01\xad\x43\xb0\x04\xa9\x49\xac\x49\xb8\x11\xaa\x4e\xa8\x4e\xdd\x12\x1b\xd8\x10\x48\xf1\x03\x01\x13\x4a\x01\xf4\x00\x01\x13\x4a\x01\xf0\x00\x01\x0d\x4a\x01\xe0\x1b\x1f\xd1\x08\x18\x88\x06\x90\x08\xdd\x0b\x15\x90\x66\x9d\x75\xa5\x64\x98\x6d\xd1\x0b\x2c\xd4\x0b\x2c\xf0\x00\x04\x09\x48\x01\xd8\x13\x26\x90\x56\xd0\x13\x26\x98\x58\xd0\x13\x26\xd0\x13\x26\x88\x44\x88\x44\xdd\x11\x1f\xa0\x06\xd1\x11\x27\xd4\x11\x27\xf0\x00\x02\x09\x48\x01\xdd\x12\x1b\xf0\x00\x01\x1d\x47\x01\xd8\x3e\x44\xf0\x03\x01\x1d\x47\x01\xf0\x00\x01\x1d\x47\x01\xf1\x00\x01\x13\x48\x01\xf4\x00\x01\x13\x48\x01\xf0\x00\x01\x0d\x48\x01\xe5\x0f\x14\x89\x77\x8c\x77\x8f\x7f\x8a\x7f\x98\x73\xa0\x46\xa8\x44\xd1\x0f\x31\xd4\x0f\x31\xd0\x08\x31", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_t_args = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "t_args", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_t_result = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "t_result", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_t_args._ascii.ob_base, + & const_str_t_result._ascii.ob_base, + &_Py_ID(__class__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[7]; + } +_collections_abc_toplevel_consts_44_consts_3_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 6, + }, + .ob_shash = -1, + .ob_sval = "\x20\x20\x20\x20\x20\x80", +}; +static + struct _PyCode_DEF(332) +_collections_abc_toplevel_consts_44_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 166, + }, + .co_consts = & _collections_abc_toplevel_consts_44_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_44_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 428, + .co_nlocalsplus = 6, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__new__), + .co_qualname = & _collections_abc_toplevel_consts_44_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_44_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x13\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x73\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x02\x5c\x02\x00\x00\x7d\x03\x7d\x04\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x08\x67\x00\x7c\x03\xa2\x01\x7c\x04\x91\x01\x52\x00\x7d\x02\x6e\x21\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x12\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x03\x9b\x00\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +_collections_abc_toplevel_consts_44_consts_4_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "collections.abc.Callable[[", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str__type_repr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_type_repr", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_4_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__type_repr._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[51]; + } +_collections_abc_toplevel_consts_44_consts_4_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 50, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_CallableGenericAlias.__repr__..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[31]; + } +_collections_abc_toplevel_consts_44_consts_4_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 30, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd0\x1f\x4a\xd0\x1f\x4a\xd0\x1f\x4a\xb0\x21\xa5\x0a\xa8\x31\xa1\x0d\xa4\x0d\xd0\x1f\x4a\xd0\x1f\x4a\xd0\x1f\x4a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_a = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_4_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_a._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(44) +_collections_abc_toplevel_consts_44_consts_4_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = & _collections_abc_toplevel_consts_44_consts_4_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 444, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_4_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & _collections_abc_toplevel_consts_44_consts_4_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_44_consts_4_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x11\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x12\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +_collections_abc_toplevel_consts_44_consts_4_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "], ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +_collections_abc_toplevel_consts_44_consts_4_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "]", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & _collections_abc_toplevel_consts_44_consts_4_consts_3._ascii.ob_base, + &_Py_STR(comma_sep), + & _collections_abc_toplevel_consts_44_consts_4_consts_5.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & _collections_abc_toplevel_consts_44_consts_4_consts_7._ascii.ob_base, + & _collections_abc_toplevel_consts_44_consts_4_consts_8._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(len), + &_Py_ID(__args__), + & const_str__is_param_expr._ascii.ob_base, + & const_str_super._ascii.ob_base, + &_Py_ID(__repr__), + &_Py_ID(join), + & const_str__type_repr._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +_collections_abc_toplevel_consts_44_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_CallableGenericAlias.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[161]; + } +_collections_abc_toplevel_consts_44_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 160, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xdd\x0b\x0e\x88\x74\x8c\x7d\xd1\x0b\x1d\xd4\x0b\x1d\xa0\x11\xd2\x0b\x22\xd0\x0b\x22\xa5\x7e\xb0\x64\xb4\x6d\xc0\x41\xd4\x36\x46\xd1\x27\x47\xd4\x27\x47\xd0\x0b\x22\xdd\x13\x18\x91\x37\x94\x37\xd7\x13\x23\xd2\x13\x23\xd1\x13\x25\xd4\x13\x25\xd0\x0c\x25\xf0\x02\x02\x11\x34\xd8\x15\x19\x97\x59\x92\x59\xd0\x1f\x4a\xd0\x1f\x4a\xb0\x74\xb4\x7d\xc0\x53\xc0\x62\xc0\x53\xd4\x37\x49\xd0\x1f\x4a\xd1\x1f\x4a\xd4\x1f\x4a\xd1\x15\x4b\xd4\x15\x4b\xf0\x03\x02\x11\x34\xf0\x00\x02\x11\x34\xe5\x13\x1d\x98\x64\x9c\x6d\xa8\x42\xd4\x1e\x2f\xd1\x13\x30\xd4\x13\x30\xf0\x05\x02\x11\x34\xf0\x00\x02\x11\x34\xf0\x00\x02\x11\x34\xf0\x00\x02\x09\x35", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(__class__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +_collections_abc_toplevel_consts_44_consts_4_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "\x20\x80", +}; +static + struct _PyCode_DEF(318) +_collections_abc_toplevel_consts_44_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 159, + }, + .co_consts = & _collections_abc_toplevel_consts_44_consts_4_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_44_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 440, + .co_nlocalsplus = 2, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & _collections_abc_toplevel_consts_44_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_44_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x3a\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x03\x64\x04\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x84\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x64\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x07\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x08\x9d\x05\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__args__), + &_Py_ID(len), + & const_str__is_param_expr._ascii.ob_base, + & const_str_list._ascii.ob_base, + & const_str__CallableGenericAlias._ascii.ob_base, + & const_str_Callable._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[33]; + } +_collections_abc_toplevel_consts_44_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 32, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_CallableGenericAlias.__reduce__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[85]; + } +_collections_abc_toplevel_consts_44_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 84, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x7d\x88\x04\xdd\x10\x13\x90\x44\x91\x09\x94\x09\x98\x51\x92\x0e\x90\x0e\xa5\x3e\xb0\x24\xb0\x71\xb4\x27\xd1\x23\x3a\xd4\x23\x3a\x90\x0e\xdd\x13\x17\x98\x04\x98\x53\x98\x62\x98\x53\x9c\x09\x91\x3f\x94\x3f\xa0\x44\xa8\x12\xa4\x48\xd0\x13\x2c\x88\x44\xdd\x0f\x24\xa5\x78\xb0\x14\xd0\x26\x36\xd0\x0f\x36\xd0\x08\x36", +}; +static + struct _PyCode_DEF(190) +_collections_abc_toplevel_consts_44_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 95, + }, + .co_consts = & _collections_abc_toplevel_consts_44_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_44_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 447, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__reduce__), + .co_qualname = & _collections_abc_toplevel_consts_44_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_44_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x15\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x00\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x7d\x01\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x66\x02\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_tuple._ascii.ob_base, + &_Py_ID(len), + &_Py_ID(__parameters__), + & const_str__is_param_expr._ascii.ob_base, + & const_str_super._ascii.ob_base, + &_Py_ID(__getitem__), + &_Py_ID(__args__), + & const_str_list._ascii.ob_base, + & const_str__CallableGenericAlias._ascii.ob_base, + & const_str_Callable._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +_collections_abc_toplevel_consts_44_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_CallableGenericAlias.__getitem__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[224]; + } +_collections_abc_toplevel_consts_44_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 223, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x10\x1a\x98\x24\xa5\x05\xd1\x0f\x26\xd4\x0f\x26\xf0\x00\x01\x09\x1b\xd8\x14\x18\x90\x37\x88\x44\xf5\x06\x00\x0d\x10\x90\x04\xd4\x10\x23\xd1\x0c\x24\xd4\x0c\x24\xa8\x01\xd2\x0c\x29\xd0\x0c\x29\xdd\x14\x22\xa0\x34\xd4\x23\x36\xb0\x71\xd4\x23\x39\xd1\x14\x3a\xd4\x14\x3a\xf0\x03\x00\x0d\x2a\xe0\x14\x18\xf0\x05\x00\x0d\x2a\xe5\x21\x2f\xb0\x04\xb0\x51\xb4\x07\xd1\x21\x38\xd4\x21\x38\xf0\x05\x00\x0d\x2a\xf0\x06\x00\x15\x19\x90\x37\x88\x44\xe5\x13\x18\x91\x37\x94\x37\xd7\x13\x26\xd2\x13\x26\xa0\x74\xd1\x13\x2c\xd4\x13\x2c\xd4\x13\x35\x88\x08\xf5\x06\x00\x10\x1a\x98\x28\xa0\x31\x9c\x2b\xad\x05\xad\x74\xa0\x7d\xd1\x0f\x35\xd4\x0f\x35\xf0\x00\x03\x09\x2a\xd8\x17\x1f\xa0\x02\x94\x7c\x88\x48\xd8\x15\x1d\x98\x63\x98\x72\x98\x63\x94\x5d\x88\x46\xd8\x18\x1e\xa0\x08\xd0\x17\x29\x88\x48\xdd\x0f\x24\xa5\x58\xad\x75\xb0\x58\xa9\x7f\xac\x7f\xd1\x0f\x3f\xd4\x0f\x3f\xd0\x08\x3f", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_new_args = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "new_args", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_44_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_item._ascii.ob_base, + & const_str_new_args._ascii.ob_base, + & const_str_t_result._ascii.ob_base, + & const_str_t_args._ascii.ob_base, + &_Py_ID(__class__), + }, + }, +}; +static + struct _PyCode_DEF(460) +_collections_abc_toplevel_consts_44_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 230, + }, + .co_consts = & _collections_abc_toplevel_consts_44_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_44_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 453, + .co_nlocalsplus = 6, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getitem__), + .co_qualname = & _collections_abc_toplevel_consts_44_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_44_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x03\x7c\x01\x66\x01\x7d\x01\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x34\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x01\x72\x18\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x03\x7c\x01\x66\x01\x7d\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x16\x7c\x02\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x02\x64\x00\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x03\x66\x02\x7d\x02\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +_collections_abc_toplevel_consts_44_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__CallableGenericAlias._ascii.ob_base, + & _collections_abc_toplevel_consts_44_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_44_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_44_consts_4.ob_base.ob_base, + & _collections_abc_toplevel_consts_44_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_44_consts_6.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_44_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + &_Py_ID(__new__), + &_Py_ID(__repr__), + &_Py_ID(__reduce__), + &_Py_ID(__getitem__), + &_Py_ID(__classcell__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[148]; + } +_collections_abc_toplevel_consts_44_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 147, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x07\x05\x08\xf0\x00\x07\x05\x08\xf0\x12\x00\x11\x13\x80\x49\xf0\x04\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x18\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x0e\x04\x05\x37\xf0\x00\x04\x05\x37\xf0\x00\x04\x05\x37\xf0\x0c\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01", +}; +static + struct _PyCode_DEF(64) +_collections_abc_toplevel_consts_44 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 32, + }, + .co_consts = & _collections_abc_toplevel_consts_44_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_44_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 416, + .co_nlocalsplus = 1, + .co_nlocals = 0, + .co_nplaincellvars = 1, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__CallableGenericAlias._ascii.ob_base, + .co_qualname = & const_str__CallableGenericAlias._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_44_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x88\x00\x66\x01\x64\x03\x84\x08\x5a\x05\x88\x00\x66\x01\x64\x04\x84\x08\x5a\x06\x64\x05\x84\x00\x5a\x07\x88\x00\x66\x01\x64\x06\x84\x08\x5a\x08\x88\x00\x78\x01\x5a\x09\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[125]; + } +_collections_abc_toplevel_consts_46_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 124, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x68\x65\x63\x6b\x73\x20\x69\x66\x20\x6f\x62\x6a\x20\x6d\x61\x74\x63\x68\x65\x73\x20\x65\x69\x74\x68\x65\x72\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x74\x79\x70\x65\x73\x2c\x20\x60\x60\x2e\x2e\x2e\x60\x60\x2c\x20\x60\x60\x50\x61\x72\x61\x6d\x53\x70\x65\x63\x60\x60\x20\x6f\x72\x0a\x20\x20\x20\x20\x60\x60\x5f\x43\x6f\x6e\x63\x61\x74\x65\x6e\x61\x74\x65\x47\x65\x6e\x65\x72\x69\x63\x41\x6c\x69\x61\x73\x60\x60\x20\x66\x72\x6f\x6d\x20\x74\x79\x70\x69\x6e\x67\x2e\x70\x79\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_ParamSpec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ParamSpec", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str__ConcatenateGenericAlias = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ConcatenateGenericAlias", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_46_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_ParamSpec._ascii.ob_base, + & const_str__ConcatenateGenericAlias._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_typing = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "typing", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_46_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +_collections_abc_toplevel_consts_46_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_is_param_expr..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[43]; + } +_collections_abc_toplevel_consts_46_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 42, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x2d\x55\xd0\x2d\x55\xc0\x74\xa8\x63\xac\x6c\xb8\x64\xd2\x2e\x42\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_46_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(obj), + }, + }, +}; +static + struct _PyCode_DEF(46) +_collections_abc_toplevel_consts_46_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 23, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_46_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 487, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_46_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & _collections_abc_toplevel_consts_46_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_46_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0f\x7d\x01\x89\x02\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x02\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x10\x64\x00\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_46_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & _collections_abc_toplevel_consts_46_consts_0._ascii.ob_base, + Py_True, + & _collections_abc_toplevel_consts_46_consts_2._object.ob_base.ob_base, + & const_str_typing._ascii.ob_base, + & _collections_abc_toplevel_consts_46_consts_4.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_Ellipsis = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Ellipsis", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_46_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_Ellipsis._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_list._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__module__), + & const_str_any._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[106]; + } +_collections_abc_toplevel_consts_46_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 105, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf0\x08\x00\x08\x0b\x8d\x68\x80\x7f\x80\x7f\xd8\x0f\x13\x88\x74\xdd\x07\x11\x90\x23\x95\x74\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\xdd\x0a\x0e\x88\x73\x89\x29\x8c\x29\x80\x43\xd8\x0c\x35\x80\x45\xd8\x0b\x0e\x8c\x3e\x98\x58\xd2\x0b\x25\xd0\x0b\x55\xad\x23\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xc8\x75\xd0\x2d\x55\xd1\x2d\x55\xd4\x2d\x55\xd1\x2a\x55\xd4\x2a\x55\xd0\x04\x55", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_names = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "names", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_46_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(obj), + & const_str_names._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(182) +_collections_abc_toplevel_consts_46 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 91, + }, + .co_consts = & _collections_abc_toplevel_consts_46_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_46_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 477, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_46_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__is_param_expr._ascii.ob_base, + .co_qualname = & const_str__is_param_expr._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_46_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x89\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x02\x64\x01\x53\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x00\x64\x02\x7d\x01\x89\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x02\x00\x00\x00\x00\x6f\x1a\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x04\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[167]; + } +_collections_abc_toplevel_consts_47_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 166, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x72\x65\x70\x72\x28\x29\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x73\x70\x65\x63\x69\x61\x6c\x2d\x63\x61\x73\x69\x6e\x67\x20\x74\x79\x70\x65\x73\x20\x28\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x68\x65\x6c\x70\x65\x72\x29\x2e\x0a\x0a\x20\x20\x20\x20\x43\x6f\x70\x69\x65\x64\x20\x66\x72\x6f\x6d\x20\x3a\x6d\x6f\x64\x3a\x60\x74\x79\x70\x69\x6e\x67\x60\x20\x73\x69\x6e\x63\x65\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x73\x2e\x61\x62\x63\x0a\x20\x20\x20\x20\x73\x68\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x70\x65\x6e\x64\x20\x6f\x6e\x20\x74\x68\x61\x74\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +_collections_abc_toplevel_consts_47_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "...", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_47_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & _collections_abc_toplevel_consts_47_consts_0._ascii.ob_base, + &_Py_ID(builtins), + &_Py_STR(dot), + & _collections_abc_toplevel_consts_47_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_repr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "repr", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_FunctionType = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FunctionType", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_collections_abc_toplevel_consts_47_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_GenericAlias._ascii.ob_base, + & const_str_repr._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__module__), + &_Py_ID(__qualname__), + & const_str_Ellipsis._ascii.ob_base, + & const_str_FunctionType._ascii.ob_base, + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[152]; + } +_collections_abc_toplevel_consts_47_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 151, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0c\x00\x08\x12\x90\x23\x95\x7c\xd1\x07\x24\xd4\x07\x24\xf0\x00\x01\x05\x19\xdd\x0f\x13\x90\x43\x89\x79\x8c\x79\xd0\x08\x18\xdd\x07\x11\x90\x23\x95\x74\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x03\x05\x36\xd8\x0b\x0e\x8c\x3e\x98\x5a\xd2\x0b\x27\xd0\x0b\x27\xd8\x13\x16\xd4\x13\x23\xd0\x0c\x23\xd8\x12\x15\x94\x2e\xd0\x0f\x35\xd0\x0f\x35\xa0\x33\xd4\x23\x33\xd0\x0f\x35\xd0\x0f\x35\xd0\x08\x35\xd8\x07\x0a\x8d\x68\x80\x7f\x80\x7f\xd8\x0f\x14\x88\x75\xdd\x07\x11\x90\x23\x95\x7c\xd1\x07\x24\xd4\x07\x24\xf0\x00\x01\x05\x1c\xd8\x0f\x12\x8c\x7c\xd0\x08\x1b\xdd\x0b\x0f\x90\x03\x89\x39\x8c\x39\xd0\x04\x14", +}; +static + struct _PyCode_DEF(294) +_collections_abc_toplevel_consts_47 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 147, + }, + .co_consts = & _collections_abc_toplevel_consts_47_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_47_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 489, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__type_repr._ascii.ob_base, + .co_qualname = & const_str__type_repr._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_47_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x23\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x07\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x9d\x03\x53\x00\x7c\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x02\x64\x03\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_48_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Callable.__call__", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_48_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_kwds._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(6) +_collections_abc_toplevel_consts_48_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 15, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 512, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_48_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__call__), + .co_qualname = & _collections_abc_toplevel_consts_48_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_40_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_48_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__call__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_48_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_Callable._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +_collections_abc_toplevel_consts_48_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Callable.__subclasshook__", +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_48_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_48_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_48_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 516, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & _collections_abc_toplevel_consts_48_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_17_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_48_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_Callable._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_48_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_48_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_48_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__call__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + & const_str__CallableGenericAlias._ascii.ob_base, + &_Py_ID(__class_getitem__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[93]; + } +_collections_abc_toplevel_consts_48_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 92, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x15\xf0\x00\x01\x05\x15\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x15\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xd0\x24\x39\xd1\x18\x3a\xd4\x18\x3a\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_48 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_48_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_48_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 508, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Callable._ascii.ob_base, + .co_qualname = & const_str_Callable._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_48_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[347]; + } +_collections_abc_toplevel_consts_50_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 346, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x73\x65\x74\x20\x69\x73\x20\x61\x20\x66\x69\x6e\x69\x74\x65\x2c\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x63\x6f\x6e\x74\x61\x69\x6e\x73\x5f\x5f\x2c\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x0a\x20\x20\x20\x20\x54\x6f\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x61\x72\x69\x73\x6f\x6e\x73\x20\x28\x70\x72\x65\x73\x75\x6d\x61\x62\x6c\x79\x20\x66\x6f\x72\x20\x73\x70\x65\x65\x64\x2c\x20\x61\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x65\x6d\x61\x6e\x74\x69\x63\x73\x20\x61\x72\x65\x20\x66\x69\x78\x65\x64\x29\x2c\x20\x72\x65\x64\x65\x66\x69\x6e\x65\x20\x5f\x5f\x6c\x65\x5f\x5f\x20\x61\x6e\x64\x20\x5f\x5f\x67\x65\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x77\x69\x6c\x6c\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x66\x6f\x6c\x6c\x6f\x77\x20\x73\x75\x69\x74\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + Py_False, + Py_True, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Set._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + &_Py_ID(len), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +_collections_abc_toplevel_consts_50_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__le__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[98]; + } +_collections_abc_toplevel_consts_50_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 97, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0b\x0e\x88\x74\x89\x39\x8c\x39\x95\x73\x98\x35\x91\x7a\x94\x7a\xd2\x0b\x21\xd0\x0b\x21\xd8\x13\x18\x90\x35\xd8\x14\x18\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\x88\x44\xd8\x0f\x13\x98\x35\xd0\x0f\x20\xd0\x0f\x20\xd8\x17\x1c\x90\x75\x90\x75\xf0\x03\x00\x10\x21\xe0\x0f\x13\x88\x74", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_elem = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "elem", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_other._ascii.ob_base, + & const_str_elem._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(154) +_collections_abc_toplevel_consts_50_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 77, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 541, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__le__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x04\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x7c\x00\x44\x00\x5d\x09\x7d\x02\x7c\x02\x7c\x01\x76\x01\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x0a\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Set._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + &_Py_ID(len), + &_Py_ID(__le__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +_collections_abc_toplevel_consts_50_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__lt__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[67]; + } +_collections_abc_toplevel_consts_50_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 66, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0f\x12\x90\x34\x89\x79\x8c\x79\x9d\x33\x98\x75\x99\x3a\x9c\x3a\xd2\x0f\x25\xd0\x0f\x3c\xa8\x24\xaf\x2b\xaa\x2b\xb0\x65\xd1\x2a\x3c\xd4\x2a\x3c\xd0\x08\x3c", +}; +static + struct _PyCode_DEF(164) +_collections_abc_toplevel_consts_50_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 82, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 551, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__lt__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\x6f\x14\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Set._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + &_Py_ID(len), + &_Py_ID(__ge__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +_collections_abc_toplevel_consts_50_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__gt__", +}; +static + struct _PyCode_DEF(164) +_collections_abc_toplevel_consts_50_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 82, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 556, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__gt__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x04\x00\x00\x00\x00\x6f\x14\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +_collections_abc_toplevel_consts_50_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__ge__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[98]; + } +_collections_abc_toplevel_consts_50_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 97, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0b\x0e\x88\x74\x89\x39\x8c\x39\x95\x73\x98\x35\x91\x7a\x94\x7a\xd2\x0b\x21\xd0\x0b\x21\xd8\x13\x18\x90\x35\xd8\x14\x19\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\x88\x44\xd8\x0f\x13\x98\x34\xd0\x0f\x1f\xd0\x0f\x1f\xd8\x17\x1c\x90\x75\x90\x75\xf0\x03\x00\x10\x20\xe0\x0f\x13\x88\x74", +}; +static + struct _PyCode_DEF(154) +_collections_abc_toplevel_consts_50_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 77, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 561, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__ge__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x7c\x01\x44\x00\x5d\x09\x7d\x02\x7c\x02\x7c\x00\x76\x01\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x0a\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +_collections_abc_toplevel_consts_50_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__eq__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[67]; + } +_collections_abc_toplevel_consts_50_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 66, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0f\x12\x90\x34\x89\x79\x8c\x79\x9d\x43\xa0\x05\x99\x4a\x9c\x4a\xd2\x0f\x26\xd0\x0f\x3d\xa8\x34\xaf\x3b\xaa\x3b\xb0\x75\xd1\x2b\x3d\xd4\x2b\x3d\xd0\x08\x3d", +}; +static + struct _PyCode_DEF(164) +_collections_abc_toplevel_consts_50_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 82, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 571, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__eq__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x14\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[189]; + } +_collections_abc_toplevel_consts_50_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 188, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x20\x61\x6e\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x20\x66\x72\x6f\x6d\x20\x61\x6e\x79\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x69\x6e\x70\x75\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4d\x75\x73\x74\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x74\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\x63\x63\x65\x70\x74\x20\x61\x6e\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x61\x6e\x20\x69\x6e\x70\x75\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_50_consts_8_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__from_iterable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_from_iterable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +_collections_abc_toplevel_consts_50_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set._from_iterable", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +_collections_abc_toplevel_consts_50_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0e\x00\x10\x13\x88\x73\x90\x32\x89\x77\x8c\x77\x88\x0e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_it = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "it", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_it._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(24) +_collections_abc_toplevel_consts_50_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 12, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_8_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 576, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__from_iterable._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_50_consts_8_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x02\x00\x7c\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +_collections_abc_toplevel_consts_50_consts_9_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__and__..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[40]; + } +_collections_abc_toplevel_consts_50_consts_9_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 39, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x22\x4d\xd0\x22\x4d\xa8\x55\xb8\x75\xc8\x04\xb8\x7d\xb8\x7d\xa0\x35\xb8\x7d\xb8\x7d\xb8\x7d\xb8\x7d\xd0\x22\x4d\xd0\x22\x4d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_9_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_self._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(36) +_collections_abc_toplevel_consts_50_consts_9_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 588, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_9_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_9_consts_1_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_9_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0a\x7d\x01\x7c\x01\x89\x02\x76\x00\xaf\x06\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0b\x64\x00\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & _collections_abc_toplevel_consts_50_consts_9_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Iterable._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + & const_str__from_iterable._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +_collections_abc_toplevel_consts_50_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__and__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[69]; + } +_collections_abc_toplevel_consts_50_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 68, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xdd\x0f\x19\x98\x25\xa5\x18\xd1\x0f\x2a\xd4\x0f\x2a\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xd0\x22\x4d\xd0\x22\x4d\xd0\x22\x4d\xd0\x22\x4d\xb0\x65\xd0\x22\x4d\xd1\x22\x4d\xd4\x22\x4d\xd1\x0f\x4d\xd4\x0f\x4d\xd0\x08\x4d", +}; +static + struct _PyCode_DEF(126) +_collections_abc_toplevel_consts_50_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 63, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_9_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 585, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__and__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_9_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x89\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[50]; + } +_collections_abc_toplevel_consts_50_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 49, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if two sets have a null intersection.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_50_consts_10_consts_0._ascii.ob_base, + Py_False, + Py_True, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_isdisjoint = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "isdisjoint", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_50_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.isdisjoint", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[44]; + } +_collections_abc_toplevel_consts_50_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 43, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x15\x1a\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\x88\x45\xd8\x0f\x14\x98\x04\x88\x7d\x88\x7d\xd8\x17\x1c\x90\x75\x90\x75\xf0\x03\x00\x10\x1d\xe0\x0f\x13\x88\x74", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_10_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_other._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(30) +_collections_abc_toplevel_consts_50_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 15, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_10_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 592, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_isdisjoint._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_50_consts_10_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x44\x00\x5d\x09\x7d\x02\x7c\x02\x7c\x00\x76\x00\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x0a\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +_collections_abc_toplevel_consts_50_consts_11_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__or__..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[48]; + } +_collections_abc_toplevel_consts_50_consts_11_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 47, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd0\x10\x35\xd0\x10\x35\x90\x71\xb0\x31\xd0\x10\x35\xd0\x10\x35\xa8\x61\x90\x11\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_e = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_11_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_s._ascii.ob_base, + & const_str_e._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(36) +_collections_abc_toplevel_consts_50_consts_11_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 602, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_11_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_11_consts_1_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_11_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0b\x7d\x01\x7c\x01\x44\x00\x5d\x06\x7d\x02\x7c\x02\x56\x00\x97\x01\x01\x00\x8c\x07\x8c\x0c\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & _collections_abc_toplevel_consts_50_consts_11_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +_collections_abc_toplevel_consts_50_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__or__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[70]; + } +_collections_abc_toplevel_consts_50_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 69, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x18\xd1\x0f\x2a\xd4\x0f\x2a\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xd8\x10\x35\xd0\x10\x35\x98\x54\xa0\x35\x98\x4d\xd0\x10\x35\xd1\x10\x35\xd4\x10\x35\x88\x05\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xa0\x35\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_chain = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "chain", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_other._ascii.ob_base, + & const_str_chain._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(128) +_collections_abc_toplevel_consts_50_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 64, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_11_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 599, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__or__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_11_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x01\x84\x00\x7c\x00\x7c\x01\x66\x02\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +_collections_abc_toplevel_consts_50_consts_12_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__sub__..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[58]; + } +_collections_abc_toplevel_consts_50_consts_12_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 57, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xa8\x55\xd8\x26\x2b\xb0\x35\xd0\x26\x38\xd0\x26\x38\xf0\x03\x00\x24\x29\xd8\x26\x38\xd0\x26\x38\xd0\x26\x38\xd0\x26\x38\xf0\x03\x01\x23\x3a\xf0\x00\x01\x23\x3a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_12_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_other._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(36) +_collections_abc_toplevel_consts_50_consts_12_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 612, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_12_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_12_consts_1_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_12_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0a\x7d\x01\x7c\x01\x89\x02\x76\x01\xaf\x06\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0b\x64\x00\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & _collections_abc_toplevel_consts_50_consts_12_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Set._ascii.ob_base, + & const_str_Iterable._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + & const_str__from_iterable._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +_collections_abc_toplevel_consts_50_consts_12_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__sub__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[126]; + } +_collections_abc_toplevel_consts_50_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 125, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x03\x09\x2f\xdd\x13\x1d\x98\x65\xa5\x58\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x26\xdd\x17\x25\xd0\x10\x25\xd8\x14\x18\xd7\x14\x27\xd2\x14\x27\xa8\x05\xd1\x14\x2e\xd4\x14\x2e\x88\x45\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xb0\x64\xf0\x00\x01\x23\x3a\xf1\x00\x01\x23\x3a\xf4\x00\x01\x23\x3a\xf1\x00\x01\x10\x3a\xf4\x00\x01\x10\x3a\xf0\x00\x01\x09\x3a", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +_collections_abc_toplevel_consts_50_consts_12_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = " `", +}; +static + struct _PyCode_DEF(210) +_collections_abc_toplevel_consts_50_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 105, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_12_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 607, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_50_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__sub__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_12_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x31\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x01\x66\x01\x64\x01\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +_collections_abc_toplevel_consts_50_consts_13_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__rsub__..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[58]; + } +_collections_abc_toplevel_consts_50_consts_13_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 57, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xa8\x55\xd8\x26\x2b\xb0\x34\xd0\x26\x37\xd0\x26\x37\xf0\x03\x00\x24\x29\xd8\x26\x37\xd0\x26\x37\xd0\x26\x37\xd0\x26\x37\xf0\x03\x01\x23\x39\xf0\x00\x01\x23\x39", +}; +static + struct _PyCode_DEF(36) +_collections_abc_toplevel_consts_50_consts_13_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 620, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_9_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_13_consts_1_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_13_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0a\x7d\x01\x7c\x01\x89\x02\x76\x01\xaf\x06\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0b\x64\x00\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & _collections_abc_toplevel_consts_50_consts_13_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +_collections_abc_toplevel_consts_50_consts_13_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__rsub__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[126]; + } +_collections_abc_toplevel_consts_50_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 125, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x03\x09\x2f\xdd\x13\x1d\x98\x65\xa5\x58\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x26\xdd\x17\x25\xd0\x10\x25\xd8\x14\x18\xd7\x14\x27\xd2\x14\x27\xa8\x05\xd1\x14\x2e\xd4\x14\x2e\x88\x45\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xb0\x65\xf0\x00\x01\x23\x39\xf1\x00\x01\x23\x39\xf4\x00\x01\x23\x39\xf1\x00\x01\x10\x39\xf4\x00\x01\x10\x39\xf0\x00\x01\x09\x39", +}; +static + struct _PyCode_DEF(210) +_collections_abc_toplevel_consts_50_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 105, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_13_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 615, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__rsub__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_13_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x31\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x89\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x89\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +_collections_abc_toplevel_consts_50_consts_14_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set.__xor__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[83]; + } +_collections_abc_toplevel_consts_50_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 82, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x03\x09\x2f\xdd\x13\x1d\x98\x65\xa5\x58\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x26\xdd\x17\x25\xd0\x10\x25\xd8\x14\x18\xd7\x14\x27\xd2\x14\x27\xa8\x05\xd1\x14\x2e\xd4\x14\x2e\x88\x45\xd8\x10\x14\x90\x75\x91\x0c\xa0\x15\xa8\x14\xa1\x1c\xd1\x0f\x2e\xd0\x08\x2e", +}; +static + struct _PyCode_DEF(164) +_collections_abc_toplevel_consts_50_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 82, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 623, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__xor__), + .co_qualname = & _collections_abc_toplevel_consts_50_consts_14_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x31\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x7c\x01\x7a\x0a\x00\x00\x7c\x01\x7c\x00\x7a\x0a\x00\x00\x7a\x07\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[556]; + } +_collections_abc_toplevel_consts_50_consts_15_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 555, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x68\x61\x73\x68\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x61\x20\x73\x65\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x77\x65\x20\x64\x6f\x6e\x27\x74\x20\x64\x65\x66\x69\x6e\x65\x20\x5f\x5f\x68\x61\x73\x68\x5f\x5f\x3a\x20\x6e\x6f\x74\x20\x61\x6c\x6c\x20\x73\x65\x74\x73\x20\x61\x72\x65\x20\x68\x61\x73\x68\x61\x62\x6c\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x42\x75\x74\x20\x69\x66\x20\x79\x6f\x75\x20\x64\x65\x66\x69\x6e\x65\x20\x61\x20\x68\x61\x73\x68\x61\x62\x6c\x65\x20\x73\x65\x74\x20\x74\x79\x70\x65\x2c\x20\x69\x74\x73\x20\x5f\x5f\x68\x61\x73\x68\x5f\x5f\x20\x73\x68\x6f\x75\x6c\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x61\x6c\x6c\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6d\x70\x61\x74\x69\x62\x6c\x65\x20\x5f\x5f\x65\x71\x5f\x5f\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x41\x6c\x6c\x20\x73\x65\x74\x73\x20\x6f\x75\x67\x68\x74\x20\x74\x6f\x20\x63\x6f\x6d\x70\x61\x72\x65\x20\x65\x71\x75\x61\x6c\x20\x69\x66\x20\x74\x68\x65\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2c\x20\x72\x65\x67\x61\x72\x64\x6c\x65\x73\x73\x20\x6f\x66\x20\x68\x6f\x77\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x2c\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x67\x61\x72\x64\x6c\x65\x73\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x72\x64\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x73\x3b\x20\x73\x6f\x20\x74\x68\x65\x72\x65\x27\x73\x20\x6e\x6f\x74\x20\x6d\x75\x63\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x72\x65\x65\x64\x6f\x6d\x20\x66\x6f\x72\x20\x5f\x5f\x65\x71\x5f\x5f\x20\x6f\x72\x20\x5f\x5f\x68\x61\x73\x68\x5f\x5f\x2e\x20\x20\x57\x65\x20\x6d\x61\x74\x63\x68\x20\x74\x68\x65\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d\x20\x75\x73\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x79\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x20\x66\x72\x6f\x7a\x65\x6e\x73\x65\x74\x20\x74\x79\x70\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[3]; + } +const_int_1927868237 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 3, + }, + .ob_digit = { 28493, 26065, 1 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_1927868237 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 854126413, 1 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_89869747 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 19891, 2742 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_89869747 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 89869747 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[3]; + } +const_int_3644798167 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 3, + }, + .ob_digit = { 13527, 12926, 3 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_3644798167 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 423572695, 3 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_69069 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 3533, 2 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_69069 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 69069 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_907133923 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 17379, 27683 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_907133923 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 907133923 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_590923713 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 18369, 18033 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_590923713 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 590923713 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & _collections_abc_toplevel_consts_50_consts_15_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & const_int_1927868237.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], + & const_int_89869747.ob_base.ob_base, + & const_int_3644798167.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 11], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 25], + & const_int_69069.ob_base.ob_base, + & const_int_907133923.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & const_int_590923713.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_maxsize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "maxsize", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_maxsize._ascii.ob_base, + &_Py_ID(len), + & const_str_hash._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__hash = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_hash", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +_collections_abc_toplevel_consts_50_consts_15_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set._hash", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[211]; + } +_collections_abc_toplevel_consts_50_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 210, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x1e\x00\x0f\x12\x8c\x6b\x88\x03\xd8\x0f\x10\x90\x33\x89\x77\x98\x11\x89\x7b\x88\x04\xdd\x0c\x0f\x90\x04\x89\x49\x8c\x49\x88\x01\xd8\x0c\x16\x98\x21\x98\x61\x99\x25\xd1\x0c\x20\x88\x01\xd8\x08\x09\x88\x54\x89\x09\x88\x01\xd8\x11\x15\xf0\x00\x03\x09\x16\xf0\x00\x03\x09\x16\x88\x41\xdd\x11\x15\x90\x61\x91\x17\x94\x17\x88\x42\xd8\x0c\x0d\x90\x22\x98\x02\x98\x62\x99\x08\x91\x2f\xa0\x48\xd1\x12\x2c\xb0\x1a\xd1\x11\x3b\xd1\x0c\x3b\x88\x41\xd8\x0c\x0d\x90\x14\x89\x49\x88\x41\x88\x41\xd8\x08\x09\x88\x61\x90\x32\x89\x67\x98\x21\x98\x72\x99\x27\xd1\x0d\x22\xd1\x08\x22\x88\x01\xd8\x0c\x0d\x90\x05\x89\x49\x98\x09\xd1\x0c\x21\x88\x01\xd8\x08\x09\x88\x54\x89\x09\x88\x01\xd8\x0b\x0c\x88\x73\x8a\x37\x88\x37\xd8\x0c\x0d\x90\x14\x98\x01\x91\x18\x89\x4d\x88\x41\xd8\x0b\x0c\x90\x02\x8a\x37\x88\x37\xd8\x10\x19\x88\x41\xd8\x0f\x10\x88\x08", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_MAX = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MAX", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_MASK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MASK", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_n = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "n", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_h = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "h", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_hx = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "hx", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +_collections_abc_toplevel_consts_50_consts_15_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_MAX._ascii.ob_base, + & const_str_MASK._ascii.ob_base, + & const_str_n._ascii.ob_base, + & const_str_h._ascii.ob_base, + & const_str_x._ascii.ob_base, + & const_str_hx._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(284) +_collections_abc_toplevel_consts_50_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 142, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts_15_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 632, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__hash._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_50_consts_15_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x01\x7c\x01\x7a\x05\x00\x00\x64\x02\x7a\x00\x00\x00\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x64\x03\x7c\x03\x64\x02\x7a\x00\x00\x00\x7a\x05\x00\x00\x7d\x04\x7c\x04\x7c\x02\x7a\x0e\x00\x00\x7d\x04\x7c\x00\x44\x00\x5d\x27\x7d\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x04\x7c\x06\x7c\x06\x64\x04\x7a\x03\x00\x00\x7a\x0c\x00\x00\x64\x05\x7a\x0c\x00\x00\x64\x06\x7a\x05\x00\x00\x7a\x19\x00\x00\x7d\x04\x7c\x04\x7c\x02\x7a\x0e\x00\x00\x7d\x04\x8c\x28\x7c\x04\x7c\x04\x64\x07\x7a\x09\x00\x00\x7c\x04\x64\x08\x7a\x09\x00\x00\x7a\x0c\x00\x00\x7a\x19\x00\x00\x7d\x04\x7c\x04\x64\x09\x7a\x05\x00\x00\x64\x0a\x7a\x00\x00\x00\x7d\x04\x7c\x04\x7c\x02\x7a\x0e\x00\x00\x7d\x04\x7c\x04\x7c\x01\x6b\x04\x00\x00\x00\x00\x72\x08\x7c\x04\x7c\x02\x64\x02\x7a\x00\x00\x00\x7a\x17\x00\x00\x7d\x04\x7c\x04\x64\x0b\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x0c\x7d\x04\x7c\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +_collections_abc_toplevel_consts_50_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + & const_str_Set._ascii.ob_base, + & _collections_abc_toplevel_consts_50_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_50_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_4.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_7.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_8.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_9.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_10.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_11.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_12.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_13.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_14.ob_base.ob_base, + & _collections_abc_toplevel_consts_50_consts_15.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[22]; + }_object; + } +_collections_abc_toplevel_consts_50_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 22, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + &_Py_ID(__le__), + &_Py_ID(__lt__), + &_Py_ID(__gt__), + &_Py_ID(__ge__), + &_Py_ID(__eq__), + & const_str_classmethod._ascii.ob_base, + & const_str__from_iterable._ascii.ob_base, + &_Py_ID(__and__), + &_Py_ID(__rand__), + & const_str_isdisjoint._ascii.ob_base, + &_Py_ID(__or__), + &_Py_ID(__ror__), + &_Py_ID(__sub__), + &_Py_ID(__rsub__), + &_Py_ID(__xor__), + &_Py_ID(__rxor__), + & const_str__hash._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[269]; + } +_collections_abc_toplevel_consts_50_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 268, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x08\x05\x08\xf0\x00\x08\x05\x08\xf0\x14\x00\x11\x13\x80\x49\xf0\x04\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x14\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x0a\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x0a\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x14\x03\x05\x3e\xf0\x00\x03\x05\x3e\xf0\x00\x03\x05\x3e\xf0\x0a\x00\x06\x11\xf0\x02\x06\x05\x17\xf0\x00\x06\x05\x17\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x06\x05\x17\xf0\x10\x03\x05\x4e\x01\xf0\x00\x03\x05\x4e\x01\xf0\x00\x03\x05\x4e\x01\xf0\x0a\x00\x10\x17\x80\x48\xf0\x04\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x0e\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x0c\x00\x0f\x15\x80\x47\xf0\x04\x06\x05\x3a\xf0\x00\x06\x05\x3a\xf0\x00\x06\x05\x3a\xf0\x10\x06\x05\x39\xf0\x00\x06\x05\x39\xf0\x00\x06\x05\x39\xf0\x10\x05\x05\x2f\xf0\x00\x05\x05\x2f\xf0\x00\x05\x05\x2f\xf0\x0e\x00\x10\x17\x80\x48\xf0\x04\x1f\x05\x11\xf0\x00\x1f\x05\x11\xf0\x00\x1f\x05\x11\xf0\x00\x1f\x05\x11\xf0\x00\x1f\x05\x11", +}; +static + struct _PyCode_DEF(128) +_collections_abc_toplevel_consts_50 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 64, + }, + .co_consts = & _collections_abc_toplevel_consts_50_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_50_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 528, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Set._ascii.ob_base, + .co_qualname = & const_str_Set._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_50_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x84\x00\x5a\x09\x65\x0a\x64\x08\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x64\x09\x84\x00\x5a\x0c\x65\x0c\x5a\x0d\x64\x0a\x84\x00\x5a\x0e\x64\x0b\x84\x00\x5a\x0f\x65\x0f\x5a\x10\x64\x0c\x84\x00\x5a\x11\x64\x0d\x84\x00\x5a\x12\x64\x0e\x84\x00\x5a\x13\x65\x13\x5a\x14\x64\x0f\x84\x00\x5a\x15\x64\x10\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[392]; + } +_collections_abc_toplevel_consts_52_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 391, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x6d\x75\x74\x61\x62\x6c\x65\x20\x73\x65\x74\x20\x69\x73\x20\x61\x20\x66\x69\x6e\x69\x74\x65\x2c\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x63\x6f\x6e\x74\x61\x69\x6e\x73\x5f\x5f\x2c\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x2c\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x61\x64\x64\x28\x29\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x61\x72\x64\x28\x29\x2e\x0a\x0a\x20\x20\x20\x20\x54\x6f\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x61\x72\x69\x73\x6f\x6e\x73\x20\x28\x70\x72\x65\x73\x75\x6d\x61\x62\x6c\x79\x20\x66\x6f\x72\x20\x73\x70\x65\x65\x64\x2c\x20\x61\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x65\x6d\x61\x6e\x74\x69\x63\x73\x20\x61\x72\x65\x20\x66\x69\x78\x65\x64\x29\x2c\x20\x61\x6c\x6c\x20\x79\x6f\x75\x20\x68\x61\x76\x65\x20\x74\x6f\x20\x64\x6f\x20\x69\x73\x20\x72\x65\x64\x65\x66\x69\x6e\x65\x20\x5f\x5f\x6c\x65\x5f\x5f\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x77\x69\x6c\x6c\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x66\x6f\x6c\x6c\x6f\x77\x20\x73\x75\x69\x74\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +_collections_abc_toplevel_consts_52_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Add an element.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_52_consts_3_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_52_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.add", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_52_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & _collections_abc_toplevel_consts_52_consts_3_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 683, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(add), + .co_qualname = & _collections_abc_toplevel_consts_52_consts_3_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[57]; + } +_collections_abc_toplevel_consts_52_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 56, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Remove an element. Do not raise an exception if absent.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_52_consts_4_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_discard = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "discard", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +_collections_abc_toplevel_consts_52_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.discard", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_52_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & _collections_abc_toplevel_consts_52_consts_4_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 688, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_discard._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_52_consts_4_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[54]; + } +_collections_abc_toplevel_consts_52_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 53, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Remove an element. If not a member, raise a KeyError.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_52_consts_5_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_KeyError._ascii.ob_base, + & const_str_discard._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_remove = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "remove", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_52_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.remove", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[50]; + } +_collections_abc_toplevel_consts_52_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 49, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x10\x98\x04\xd0\x0b\x1c\xd0\x0b\x1c\xdd\x12\x1a\x98\x35\x91\x2f\x94\x2f\xd0\x0c\x21\xd8\x08\x0c\x8f\x0c\x8a\x0c\x90\x55\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", +}; +static + struct _PyCode_DEF(86) +_collections_abc_toplevel_consts_52_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 43, + }, + .co_consts = & _collections_abc_toplevel_consts_52_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 693, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_remove._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_52_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x76\x01\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[51]; + } +_collections_abc_toplevel_consts_52_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 50, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the popped value. Raise KeyError if empty.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_52_consts_6_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(iter), + &_Py_ID(next), + & const_str_StopIteration._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + & const_str_discard._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_52_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.pop", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[90]; + } +_collections_abc_toplevel_consts_52_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 89, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0d\x11\x90\x24\x89\x5a\x8c\x5a\x88\x02\xf0\x02\x03\x09\x25\xdd\x14\x18\x98\x12\x91\x48\x94\x48\x88\x45\x88\x45\xf8\xdd\x0f\x1c\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xdd\x12\x1a\xa0\x04\xd0\x0c\x24\xf0\x03\x01\x09\x25\xf8\xf8\xf8\xe0\x08\x0c\x8f\x0c\x8a\x0c\x90\x55\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x0f\x14\x88\x0c", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +_collections_abc_toplevel_consts_52_consts_6_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = "\x91\x0f\x21\x00\xa1\x13\x34\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_it._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(156) +_collections_abc_toplevel_consts_52_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 78, + }, + .co_consts = & _collections_abc_toplevel_consts_52_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_6_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 699, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_pop._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_52_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x16\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x09\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[55]; + } +_collections_abc_toplevel_consts_52_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 54, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "This is slow (creates N new iterators!) but effective.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_52_consts_7_consts_0._ascii.ob_base, + Py_True, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_pop._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +_collections_abc_toplevel_consts_52_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.clear", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +_collections_abc_toplevel_consts_52_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x04\x09\x11\xf0\x02\x01\x0d\x1b\xd8\x10\x14\x97\x08\x92\x08\x91\x0a\x94\x0a\x90\x0a\xf0\x03\x01\x0d\x1b\xf8\xe5\x0f\x17\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_52_consts_7_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x16\x18\x00\x98\x0a\x26\x03\xa5\x01\x26\x03", +}; +static + struct _PyCode_DEF(82) +_collections_abc_toplevel_consts_52_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 41, + }, + .co_consts = & _collections_abc_toplevel_consts_52_consts_7_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_7_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 709, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(clear), + .co_qualname = & _collections_abc_toplevel_consts_52_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x15\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(add), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +_collections_abc_toplevel_consts_52_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.__ior__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[40]; + } +_collections_abc_toplevel_consts_52_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 39, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x15\x17\xf0\x00\x01\x09\x1c\xf0\x00\x01\x09\x1c\x88\x45\xd8\x0c\x10\x8f\x48\x8a\x48\x90\x55\x89\x4f\x8c\x4f\x88\x4f\x88\x4f\xd8\x0f\x13\x88\x0b", +}; +static + struct _PyCode_DEF(58) +_collections_abc_toplevel_consts_52_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 717, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__ior__), + .co_qualname = & _collections_abc_toplevel_consts_52_consts_8_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_discard._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_52_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.__iand__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[48]; + } +_collections_abc_toplevel_consts_52_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 47, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x16\x1a\x98\x52\x91\x69\xf0\x00\x01\x09\x20\xf0\x00\x01\x09\x20\x88\x45\xd8\x0c\x10\x8f\x4c\x8a\x4c\x98\x15\xd1\x0c\x1f\xd4\x0c\x1f\xd0\x0c\x1f\xd0\x0c\x1f\xd8\x0f\x13\x88\x0b", +}; +static + struct _PyCode_DEF(64) +_collections_abc_toplevel_consts_52_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 32, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 722, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iand__), + .co_qualname = & _collections_abc_toplevel_consts_52_consts_9_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x7c\x01\x7a\x0a\x00\x00\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(clear), + &_Py_ID(isinstance), + & const_str_Set._ascii.ob_base, + & const_str__from_iterable._ascii.ob_base, + & const_str_discard._ascii.ob_base, + &_Py_ID(add), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_52_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.__ixor__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[131]; + } +_collections_abc_toplevel_consts_52_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 130, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0d\x90\x14\x88\x3a\x88\x3a\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\xe5\x13\x1d\x98\x62\xa5\x23\xd1\x13\x26\xd4\x13\x26\xf0\x00\x01\x0d\x2d\xd8\x15\x19\xd7\x15\x28\xd2\x15\x28\xa8\x12\xd1\x15\x2c\xd4\x15\x2c\x90\x02\xd8\x19\x1b\xf0\x00\x04\x0d\x24\xf0\x00\x04\x0d\x24\x90\x05\xd8\x13\x18\x98\x44\x90\x3d\x90\x3d\xd8\x14\x18\x97\x4c\x92\x4c\xa0\x15\xd1\x14\x27\xd4\x14\x27\xd0\x14\x27\xd0\x14\x27\xe0\x14\x18\x97\x48\x92\x48\x98\x55\x91\x4f\x94\x4f\x90\x4f\x90\x4f\xd8\x0f\x13\x88\x0b", +}; +static + struct _PyCode_DEF(244) +_collections_abc_toplevel_consts_52_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 122, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 727, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__ixor__), + .co_qualname = & _collections_abc_toplevel_consts_52_consts_10_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x75\x00\x72\x15\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x5e\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x15\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x44\x00\x5d\x31\x7d\x02\x7c\x02\x7c\x00\x76\x00\x72\x16\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x1c\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x32\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_52_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(clear), + & const_str_discard._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_52_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSet.__isub__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[68]; + } +_collections_abc_toplevel_consts_52_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 67, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0d\x90\x14\x88\x3a\x88\x3a\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\xe0\x19\x1b\xf0\x00\x01\x0d\x24\xf0\x00\x01\x0d\x24\x90\x05\xd8\x10\x14\x97\x0c\x92\x0c\x98\x55\xd1\x10\x23\xd4\x10\x23\xd0\x10\x23\xd0\x10\x23\xd8\x0f\x13\x88\x0b", +}; +static + struct _PyCode_DEF(108) +_collections_abc_toplevel_consts_52_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 54, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 740, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__isub__), + .co_qualname = & _collections_abc_toplevel_consts_52_consts_11_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x75\x00\x72\x15\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x7c\x01\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +_collections_abc_toplevel_consts_52_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_MutableSet._ascii.ob_base, + & _collections_abc_toplevel_consts_52_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_52_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_4.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_7.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_8.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_9.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_10.ob_base.ob_base, + & _collections_abc_toplevel_consts_52_consts_11.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +_collections_abc_toplevel_consts_52_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(add), + & const_str_discard._ascii.ob_base, + & const_str_remove._ascii.ob_base, + & const_str_pop._ascii.ob_base, + &_Py_ID(clear), + &_Py_ID(__ior__), + &_Py_ID(__iand__), + &_Py_ID(__ixor__), + &_Py_ID(__isub__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[195]; + } +_collections_abc_toplevel_consts_52_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 194, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x09\x05\x08\xf0\x00\x09\x05\x08\xf0\x16\x00\x11\x13\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x22\xf0\x00\x02\x05\x22\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x22\xf0\x08\x00\x06\x14\xf0\x02\x02\x05\x22\xf0\x00\x02\x05\x22\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x22\xf0\x08\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf0\x0c\x08\x05\x15\xf0\x00\x08\x05\x15\xf0\x00\x08\x05\x15\xf0\x14\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x0a\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x0a\x0b\x05\x14\xf0\x00\x0b\x05\x14\xf0\x00\x0b\x05\x14\xf0\x1a\x06\x05\x14\xf0\x00\x06\x05\x14\xf0\x00\x06\x05\x14\xf0\x00\x06\x05\x14\xf0\x00\x06\x05\x14", +}; +static + struct _PyCode_DEF(108) +_collections_abc_toplevel_consts_52 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 54, + }, + .co_consts = & _collections_abc_toplevel_consts_52_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_52_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 669, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_MutableSet._ascii.ob_base, + .co_qualname = & const_str_MutableSet._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_52_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x05\x84\x00\x5a\x08\x64\x06\x84\x00\x5a\x09\x64\x07\x84\x00\x5a\x0a\x64\x08\x84\x00\x5a\x0b\x64\x09\x84\x00\x5a\x0c\x64\x0a\x84\x00\x5a\x0d\x64\x0b\x84\x00\x5a\x0e\x64\x0c\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[199]; + } +_collections_abc_toplevel_consts_54_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 198, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x4d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x61\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x20\x66\x6f\x72\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x69\x6e\x67\x20\x6b\x65\x79\x2f\x76\x61\x6c\x75\x65\x0a\x20\x20\x20\x20\x70\x61\x69\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_54_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping.__getitem__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +_collections_abc_toplevel_consts_54_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0e\x16\x88\x0e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_key._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_54_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 767, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getitem__), + .co_qualname = & _collections_abc_toplevel_consts_54_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[61]; + } +_collections_abc_toplevel_consts_54_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 60, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_54_consts_6_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +_collections_abc_toplevel_consts_54_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping.get", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[54]; + } +_collections_abc_toplevel_consts_54_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 53, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x09\x1b\xd8\x13\x17\x98\x03\x94\x39\xd0\x0c\x1c\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x1b\xf0\x00\x01\x09\x1b\xf0\x00\x01\x09\x1b\xd8\x13\x1a\x88\x4e\x88\x4e\x88\x4e\xf0\x03\x01\x09\x1b\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_54_consts_6_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x07\x0a\x00\x8a\x0c\x19\x03\x98\x01\x19\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_key._ascii.ob_base, + &_Py_ID(default), + }, + }, +}; +static + struct _PyCode_DEF(56) +_collections_abc_toplevel_consts_54_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & _collections_abc_toplevel_consts_54_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_54_consts_6_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 771, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(get), + .co_qualname = & _collections_abc_toplevel_consts_54_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x02\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +_collections_abc_toplevel_consts_54_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping.__contains__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[60]; + } +_collections_abc_toplevel_consts_54_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 59, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x05\x09\x18\xd8\x0c\x10\x90\x13\x8c\x49\x88\x49\xf0\x08\x00\x14\x18\x90\x34\xf8\xf5\x07\x00\x10\x18\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xd8\x13\x18\x90\x35\x90\x35\xf0\x03\x01\x09\x19\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_54_consts_7_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x08\x0c\x00\x8c\x0a\x1a\x03\x99\x01\x1a\x03", +}; +static + struct _PyCode_DEF(58) +_collections_abc_toplevel_consts_54_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_54_consts_7_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 778, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__contains__), + .co_qualname = & _collections_abc_toplevel_consts_54_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[59]; + } +_collections_abc_toplevel_consts_54_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 58, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "D.keys() -> a set-like object providing a view on D's keys", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_54_consts_8_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_KeysView._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +_collections_abc_toplevel_consts_54_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping.keys", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +_collections_abc_toplevel_consts_54_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x17\x98\x04\x89\x7e\x8c\x7e\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(32) +_collections_abc_toplevel_consts_54_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & _collections_abc_toplevel_consts_54_consts_8_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 786, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(keys), + .co_qualname = & _collections_abc_toplevel_consts_54_consts_8_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[61]; + } +_collections_abc_toplevel_consts_54_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 60, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "D.items() -> a set-like object providing a view on D's items", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_54_consts_9_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_ItemsView._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +_collections_abc_toplevel_consts_54_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping.items", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +_collections_abc_toplevel_consts_54_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x18\x98\x14\x89\x7f\x8c\x7f\xd0\x08\x1e", +}; +static + struct _PyCode_DEF(32) +_collections_abc_toplevel_consts_54_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & _collections_abc_toplevel_consts_54_consts_9_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 790, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(items), + .co_qualname = & _collections_abc_toplevel_consts_54_consts_9_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[55]; + } +_collections_abc_toplevel_consts_54_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 54, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "D.values() -> an object providing a view on D's values", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_54_consts_10_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_ValuesView._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_54_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping.values", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[17]; + } +_collections_abc_toplevel_consts_54_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 16, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x19\x98\x24\xd1\x0f\x1f\xd4\x0f\x1f\xd0\x08\x1f", +}; +static + struct _PyCode_DEF(32) +_collections_abc_toplevel_consts_54_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & _collections_abc_toplevel_consts_54_consts_10_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 794, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(values), + .co_qualname = & _collections_abc_toplevel_consts_54_consts_10_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_dict = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dict", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_54_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Mapping._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + & const_str_dict._ascii.ob_base, + &_Py_ID(items), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_54_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Mapping.__eq__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[70]; + } +_collections_abc_toplevel_consts_54_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 69, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x17\xd1\x0f\x29\xd4\x0f\x29\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0f\x13\x90\x44\x97\x4a\x92\x4a\x91\x4c\x94\x4c\xd1\x0f\x21\xd4\x0f\x21\xa5\x54\xa8\x25\xaf\x2b\xaa\x2b\xa9\x2d\xac\x2d\xd1\x25\x38\xd4\x25\x38\xd2\x0f\x38\xd0\x08\x38", +}; +static + struct _PyCode_DEF(194) +_collections_abc_toplevel_consts_54_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 97, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 798, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__eq__), + .co_qualname = & _collections_abc_toplevel_consts_54_consts_11_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +_collections_abc_toplevel_consts_54_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_Mapping._ascii.ob_base, + & _collections_abc_toplevel_consts_54_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 64], + & _collections_abc_toplevel_consts_54_consts_4.ob_base.ob_base, + Py_None, + & _collections_abc_toplevel_consts_54_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_54_consts_7.ob_base.ob_base, + & _collections_abc_toplevel_consts_54_consts_8.ob_base.ob_base, + & _collections_abc_toplevel_consts_54_consts_9.ob_base.ob_base, + & _collections_abc_toplevel_consts_54_consts_10.ob_base.ob_base, + & _collections_abc_toplevel_consts_54_consts_11.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +_collections_abc_toplevel_consts_54_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + &_Py_ID(__abc_tpflags__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__getitem__), + &_Py_ID(get), + &_Py_ID(__contains__), + &_Py_ID(keys), + &_Py_ID(items), + &_Py_ID(values), + &_Py_ID(__eq__), + &_Py_ID(__reversed__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[166]; + } +_collections_abc_toplevel_consts_54_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 165, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x05\x05\x08\xf0\x00\x05\x05\x08\xf0\x0e\x00\x11\x13\x80\x49\xf0\x06\x00\x17\x1d\x80\x4f\xe0\x05\x13\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x17\xf0\x06\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x0e\x06\x05\x18\xf0\x00\x06\x05\x18\xf0\x00\x06\x05\x18\xf0\x10\x02\x05\x1e\xf0\x00\x02\x05\x1e\xf0\x00\x02\x05\x1e\xf0\x08\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x08\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x08\x03\x05\x39\xf0\x00\x03\x05\x39\xf0\x00\x03\x05\x39\xf0\x0a\x00\x14\x18\x80\x4c\x80\x4c\x80\x4c", +}; +static + struct _PyCode_DEF(90) +_collections_abc_toplevel_consts_54 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 45, + }, + .co_consts = & _collections_abc_toplevel_consts_54_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 754, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Mapping._ascii.ob_base, + .co_qualname = & const_str_Mapping._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x5a\x05\x65\x06\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x0c\x64\x06\x84\x01\x5a\x08\x64\x07\x84\x00\x5a\x09\x64\x08\x84\x00\x5a\x0a\x64\x09\x84\x00\x5a\x0b\x64\x0a\x84\x00\x5a\x0c\x64\x0b\x84\x00\x5a\x0d\x64\x05\x5a\x0e\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__mapping = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_mapping", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_56_consts_1 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__mapping._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +_collections_abc_toplevel_consts_56_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MappingView.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[14]; + } +_collections_abc_toplevel_consts_56_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 13, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x18\x1f\x88\x04\x8c\x0d\x88\x0d\x88\x0d", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_mapping = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mapping", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_56_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_mapping._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(20) +_collections_abc_toplevel_consts_56_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 812, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_56_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & _collections_abc_toplevel_consts_56_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_56_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_56_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(len), + & const_str__mapping._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_56_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MappingView.__len__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +_collections_abc_toplevel_consts_56_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x12\x90\x34\x94\x3d\xd1\x0f\x21\xd4\x0f\x21\xd0\x08\x21", +}; +static + struct _PyCode_DEF(42) +_collections_abc_toplevel_consts_56_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 815, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__len__), + .co_qualname = & _collections_abc_toplevel_consts_56_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_56_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +_collections_abc_toplevel_consts_56_consts_4_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "{0.__class__.__name__}({0._mapping!r})", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_56_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & _collections_abc_toplevel_consts_56_consts_4_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_56_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_format._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +_collections_abc_toplevel_consts_56_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MappingView.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +_collections_abc_toplevel_consts_56_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x37\xd7\x0f\x3e\xd2\x0f\x3e\xb8\x74\xd1\x0f\x44\xd4\x0f\x44\xd0\x08\x44", +}; +static + struct _PyCode_DEF(44) +_collections_abc_toplevel_consts_56_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & _collections_abc_toplevel_consts_56_consts_4_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 818, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & _collections_abc_toplevel_consts_56_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_56_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_56_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_MappingView._ascii.ob_base, + & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, + & _collections_abc_toplevel_consts_56_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_56_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_56_consts_4.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_collections_abc_toplevel_consts_56_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + &_Py_ID(__init__), + &_Py_ID(__len__), + &_Py_ID(__repr__), + & const_str_classmethod._ascii.ob_base, + & const_str_GenericAlias._ascii.ob_base, + &_Py_ID(__class_getitem__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[88]; + } +_collections_abc_toplevel_consts_56_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 87, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x1b\x80\x49\xf0\x04\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x06\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x06\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x06\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct _PyCode_DEF(58) +_collections_abc_toplevel_consts_56 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & _collections_abc_toplevel_consts_56_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 808, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_MappingView._ascii.ob_base, + .co_qualname = & const_str_MappingView._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_56_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x02\x00\x65\x07\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_58_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_set._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +_collections_abc_toplevel_consts_58_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "KeysView._from_iterable", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[14]; + } +_collections_abc_toplevel_consts_58_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 13, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x12\x90\x32\x89\x77\x8c\x77\x88\x0e", +}; +static + struct _PyCode_DEF(32) +_collections_abc_toplevel_consts_58_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_58_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 828, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__from_iterable._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_58_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_58_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +_collections_abc_toplevel_consts_58_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "KeysView.__contains__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +_collections_abc_toplevel_consts_58_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x12\x90\x64\x94\x6d\xd0\x0f\x23\xd0\x08\x23", +}; +static + struct _PyCode_DEF(20) +_collections_abc_toplevel_consts_58_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 10, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 832, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__contains__), + .co_qualname = & _collections_abc_toplevel_consts_58_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_58_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_58_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "KeysView.__iter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[39]; + } +_collections_abc_toplevel_consts_58_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 38, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x13\x17\x94\x3d\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20", +}; +static + struct _PyCode_DEF(36) +_collections_abc_toplevel_consts_58_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 835, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & _collections_abc_toplevel_consts_58_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_58_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_58_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_KeysView._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_58_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_58_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_58_consts_4.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +_collections_abc_toplevel_consts_58_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + & const_str_classmethod._ascii.ob_base, + & const_str__from_iterable._ascii.ob_base, + &_Py_ID(__contains__), + &_Py_ID(__iter__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[81]; + } +_collections_abc_toplevel_consts_58_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 80, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x10\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x01\x05\x17\xf0\x06\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x06\x01\x05\x21\xf0\x00\x01\x05\x21\xf0\x00\x01\x05\x21\xf0\x00\x01\x05\x21\xf0\x00\x01\x05\x21", +}; +static + struct _PyCode_DEF(52) +_collections_abc_toplevel_consts_58 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & _collections_abc_toplevel_consts_58_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_58_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 824, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_KeysView._ascii.ob_base, + .co_qualname = & const_str_KeysView._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_58_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x64\x04\x84\x00\x5a\x07\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +_collections_abc_toplevel_consts_60_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ItemsView._from_iterable", +}; +static + struct _PyCode_DEF(32) +_collections_abc_toplevel_consts_60_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_58_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 846, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__from_iterable._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_60_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_58_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_60_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__mapping._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_60_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ItemsView.__contains__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[86]; + } +_collections_abc_toplevel_consts_60_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 85, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x15\x19\x89\x0a\x88\x03\x88\x55\xf0\x02\x05\x09\x2c\xd8\x10\x14\x94\x0d\x98\x63\xd4\x10\x22\x88\x41\xf0\x08\x00\x14\x15\x98\x05\x90\x3a\xd0\x13\x2b\xa0\x11\xa0\x65\xa2\x1a\xd0\x0c\x2b\xf8\xf5\x07\x00\x10\x18\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xd8\x13\x18\x90\x35\x90\x35\xf0\x03\x01\x09\x19\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_60_consts_3_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x87\x0d\x1e\x00\x9e\x0a\x2c\x03\xab\x01\x2c\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_60_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_item._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(94) +_collections_abc_toplevel_consts_60_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 47, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_60_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_60_consts_3_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 850, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_60_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__contains__), + .co_qualname = & _collections_abc_toplevel_consts_60_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_60_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x5c\x02\x00\x00\x7d\x02\x7d\x03\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x03\x75\x00\x70\x05\x7c\x04\x7c\x03\x6b\x02\x00\x00\x00\x00\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +_collections_abc_toplevel_consts_60_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ItemsView.__iter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[61]; + } +_collections_abc_toplevel_consts_60_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 60, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x13\x17\x94\x3d\xf0\x00\x01\x09\x2c\xf0\x00\x01\x09\x2c\x88\x43\xd8\x13\x16\x98\x04\x9c\x0d\xa0\x63\xd4\x18\x2a\xd0\x12\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xf0\x03\x01\x09\x2c\xf0\x00\x01\x09\x2c", +}; +static + struct _PyCode_DEF(64) +_collections_abc_toplevel_consts_60_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 32, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 859, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & _collections_abc_toplevel_consts_60_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_60_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x13\x7d\x01\x7c\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x56\x00\x97\x01\x01\x00\x8c\x14\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_60_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_ItemsView._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_60_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_60_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_60_consts_4.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[81]; + } +_collections_abc_toplevel_consts_60_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 80, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x10\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x01\x05\x17\xf0\x06\x07\x05\x2c\xf0\x00\x07\x05\x2c\xf0\x00\x07\x05\x2c\xf0\x12\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c", +}; +static + struct _PyCode_DEF(52) +_collections_abc_toplevel_consts_60 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & _collections_abc_toplevel_consts_60_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_58_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 842, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_ItemsView._ascii.ob_base, + .co_qualname = & const_str_ItemsView._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_60_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x64\x04\x84\x00\x5a\x07\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +_collections_abc_toplevel_consts_62_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ValuesView.__contains__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[66]; + } +_collections_abc_toplevel_consts_62_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 65, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x13\x17\x94\x3d\xf0\x00\x03\x09\x1c\xf0\x00\x03\x09\x1c\x88\x43\xd8\x10\x14\x94\x0d\x98\x63\xd4\x10\x22\x88\x41\xd8\x0f\x10\x90\x45\x88\x7a\x88\x7a\x98\x51\xa0\x25\x9a\x5a\x98\x5a\xd8\x17\x1b\x90\x74\x90\x74\xf0\x03\x00\x1e\x28\xe0\x0f\x14\x88\x75", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_62_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(78) +_collections_abc_toplevel_consts_62_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 39, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 871, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_62_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__contains__), + .co_qualname = & _collections_abc_toplevel_consts_62_consts_2_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_62_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1c\x7d\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x7c\x01\x75\x00\x73\x06\x7c\x03\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x1d\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_62_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ValuesView.__iter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[56]; + } +_collections_abc_toplevel_consts_62_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 55, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x13\x17\x94\x3d\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\x88\x43\xd8\x12\x16\x94\x2d\xa0\x03\xd4\x12\x24\xd0\x0c\x24\xd0\x0c\x24\xd0\x0c\x24\xd0\x0c\x24\xf0\x03\x01\x09\x25\xf0\x00\x01\x09\x25", +}; +static + struct _PyCode_DEF(60) +_collections_abc_toplevel_consts_62_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 30, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 878, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & _collections_abc_toplevel_consts_62_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_62_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x11\x7d\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x12\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_62_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_ValuesView._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_62_consts_2.ob_base.ob_base, + & _collections_abc_toplevel_consts_62_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_62_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__slots__), + &_Py_ID(__contains__), + &_Py_ID(__iter__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[56]; + } +_collections_abc_toplevel_consts_62_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 55, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xf0\x04\x05\x05\x15\xf0\x00\x05\x05\x15\xf0\x00\x05\x05\x15\xf0\x0e\x02\x05\x25\xf0\x00\x02\x05\x25\xf0\x00\x02\x05\x25\xf0\x00\x02\x05\x25\xf0\x00\x02\x05\x25", +}; +static + struct _PyCode_DEF(30) +_collections_abc_toplevel_consts_62 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 15, + }, + .co_consts = & _collections_abc_toplevel_consts_62_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_62_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 867, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_ValuesView._ascii.ob_base, + .co_qualname = & const_str_ValuesView._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_62_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[236]; + } +_collections_abc_toplevel_consts_64_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 235, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x20\x4d\x75\x74\x61\x62\x6c\x65\x4d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x61\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x20\x66\x6f\x72\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x69\x6e\x67\x0a\x20\x20\x20\x20\x6b\x65\x79\x2f\x76\x61\x6c\x75\x65\x20\x70\x61\x69\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x73\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x64\x65\x6c\x69\x74\x65\x6d\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +_collections_abc_toplevel_consts_64_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping.__setitem__", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_64_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 897, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__setitem__), + .co_qualname = & _collections_abc_toplevel_consts_64_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +_collections_abc_toplevel_consts_64_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping.__delitem__", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_64_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 901, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__delitem__), + .co_qualname = & _collections_abc_toplevel_consts_64_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_54_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[170]; + } +_collections_abc_toplevel_consts_64_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 169, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x2e\x70\x6f\x70\x28\x6b\x5b\x2c\x64\x5d\x29\x20\x2d\x3e\x20\x76\x2c\x20\x72\x65\x6d\x6f\x76\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6b\x65\x79\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x76\x61\x6c\x75\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x6b\x65\x79\x20\x69\x73\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x64\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x69\x66\x20\x67\x69\x76\x65\x6e\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x4b\x65\x79\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_64_consts_5_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +const_str__MutableMapping__marker = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_MutableMapping__marker", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_KeyError._ascii.ob_base, + & const_str__MutableMapping__marker._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +_collections_abc_toplevel_consts_64_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping.pop", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[85]; + } +_collections_abc_toplevel_consts_64_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 84, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x08\x09\x19\xd8\x14\x18\x98\x13\x94\x49\x88\x45\xf0\x0c\x00\x11\x15\x90\x53\x90\x09\xd8\x13\x18\x88\x4c\xf8\xf5\x0d\x00\x10\x18\xf0\x00\x03\x09\x1b\xf0\x00\x03\x09\x1b\xf0\x00\x03\x09\x1b\xd8\x0f\x16\x98\x24\x9c\x2d\xd0\x0f\x27\xd0\x0f\x27\xd8\x10\x15\xd8\x13\x1a\x88\x4e\x88\x4e\x88\x4e\xf0\x07\x03\x09\x1b\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_64_consts_5_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x08\x0f\x00\x8f\x16\x28\x03\xa7\x01\x28\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_key._ascii.ob_base, + &_Py_ID(default), + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(86) +_collections_abc_toplevel_consts_64_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 43, + }, + .co_consts = & _collections_abc_toplevel_consts_64_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_64_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_64_consts_5_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 907, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_pop._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_64_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_64_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x00\x7c\x01\x3d\x00\x7c\x03\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0f\x01\x00\x7c\x02\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x01\x82\x00\x7c\x02\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[132]; + } +_collections_abc_toplevel_consts_64_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 131, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x2e\x70\x6f\x70\x69\x74\x65\x6d\x28\x29\x20\x2d\x3e\x20\x28\x6b\x2c\x20\x76\x29\x2c\x20\x72\x65\x6d\x6f\x76\x65\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x73\x6f\x6d\x65\x20\x28\x6b\x65\x79\x2c\x20\x76\x61\x6c\x75\x65\x29\x20\x70\x61\x69\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x73\x20\x61\x20\x32\x2d\x74\x75\x70\x6c\x65\x3b\x20\x62\x75\x74\x20\x72\x61\x69\x73\x65\x20\x4b\x65\x79\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x44\x20\x69\x73\x20\x65\x6d\x70\x74\x79\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_64_consts_6_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(next), + &_Py_ID(iter), + & const_str_StopIteration._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_popitem = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "popitem", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_64_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping.popitem", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[90]; + } +_collections_abc_toplevel_consts_64_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 89, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x03\x09\x25\xdd\x12\x16\x95\x74\x98\x44\x91\x7a\x94\x7a\xd1\x12\x22\xd4\x12\x22\x88\x43\x88\x43\xf8\xdd\x0f\x1c\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xdd\x12\x1a\xa0\x04\xd0\x0c\x24\xf0\x03\x01\x09\x25\xf8\xf8\xf8\xe0\x10\x14\x90\x53\x94\x09\x88\x05\xd8\x0c\x10\x90\x13\x88\x49\xd8\x0f\x12\x90\x45\x88\x7a\xd0\x08\x19", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +_collections_abc_toplevel_consts_64_consts_6_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = "\x82\x1c\x1f\x00\x9f\x13\x32\x03", +}; +static + struct _PyCode_DEF(136) +_collections_abc_toplevel_consts_64_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 68, + }, + .co_consts = & _collections_abc_toplevel_consts_64_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_64_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_64_consts_6_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 921, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_popitem._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_64_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_64_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x16\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x09\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x7c\x01\x3d\x00\x7c\x01\x7c\x02\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +_collections_abc_toplevel_consts_64_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "D.clear() -> None. Remove all items from D.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_64_consts_7_consts_0._ascii.ob_base, + Py_True, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_popitem._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +_collections_abc_toplevel_consts_64_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping.clear", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +_collections_abc_toplevel_consts_64_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x04\x09\x11\xf0\x02\x01\x0d\x1f\xd8\x10\x14\x97\x0c\x92\x0c\x91\x0e\x94\x0e\x90\x0e\xf0\x03\x01\x0d\x1f\xf8\xe5\x0f\x17\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", +}; +static + struct _PyCode_DEF(82) +_collections_abc_toplevel_consts_64_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 41, + }, + .co_consts = & _collections_abc_toplevel_consts_64_consts_7_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_64_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_7_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 933, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(clear), + .co_qualname = & _collections_abc_toplevel_consts_64_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_64_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x15\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[332]; + } +_collections_abc_toplevel_consts_64_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 331, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x44\x2e\x75\x70\x64\x61\x74\x65\x28\x5b\x45\x2c\x20\x5d\x2a\x2a\x46\x29\x20\x2d\x3e\x20\x4e\x6f\x6e\x65\x2e\x20\x20\x55\x70\x64\x61\x74\x65\x20\x44\x20\x66\x72\x6f\x6d\x20\x6d\x61\x70\x70\x69\x6e\x67\x2f\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x45\x20\x61\x6e\x64\x20\x46\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x45\x20\x70\x72\x65\x73\x65\x6e\x74\x20\x61\x6e\x64\x20\x68\x61\x73\x20\x61\x20\x2e\x6b\x65\x79\x73\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2c\x20\x64\x6f\x65\x73\x3a\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x6b\x20\x69\x6e\x20\x45\x3a\x20\x44\x5b\x6b\x5d\x20\x3d\x20\x45\x5b\x6b\x5d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x45\x20\x70\x72\x65\x73\x65\x6e\x74\x20\x61\x6e\x64\x20\x6c\x61\x63\x6b\x73\x20\x2e\x6b\x65\x79\x73\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2c\x20\x64\x6f\x65\x73\x3a\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x28\x6b\x2c\x20\x76\x29\x20\x69\x6e\x20\x45\x3a\x20\x44\x5b\x6b\x5d\x20\x3d\x20\x76\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x6e\x20\x65\x69\x74\x68\x65\x72\x20\x63\x61\x73\x65\x2c\x20\x74\x68\x69\x73\x20\x69\x73\x20\x66\x6f\x6c\x6c\x6f\x77\x65\x64\x20\x62\x79\x3a\x20\x66\x6f\x72\x20\x6b\x2c\x20\x76\x20\x69\x6e\x20\x46\x2e\x69\x74\x65\x6d\x73\x28\x29\x3a\x20\x44\x5b\x6b\x5d\x20\x3d\x20\x76\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_64_consts_8_consts_0._ascii.ob_base, + &_Py_ID(keys), + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Mapping._ascii.ob_base, + & const_str_hasattr._ascii.ob_base, + &_Py_ID(keys), + &_Py_ID(items), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +_collections_abc_toplevel_consts_64_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping.update", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[199]; + } +_collections_abc_toplevel_consts_64_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 198, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0c\x00\x0c\x16\x90\x65\x9d\x57\xd1\x0b\x25\xd4\x0b\x25\xf0\x00\x08\x09\x22\xd8\x17\x1c\xf0\x00\x01\x0d\x27\xf0\x00\x01\x0d\x27\x90\x03\xd8\x1c\x21\xa0\x23\x9c\x4a\x90\x04\x90\x53\x91\x09\x90\x09\xf0\x03\x01\x0d\x27\xe5\x0d\x14\x90\x55\x98\x46\xd1\x0d\x23\xd4\x0d\x23\xf0\x00\x05\x09\x22\xd8\x17\x1c\x97\x7a\x92\x7a\x91\x7c\x94\x7c\xf0\x00\x01\x0d\x27\xf0\x00\x01\x0d\x27\x90\x03\xd8\x1c\x21\xa0\x23\x9c\x4a\x90\x04\x90\x53\x91\x09\x90\x09\xf0\x03\x01\x0d\x27\xf0\x06\x00\x1f\x24\xf0\x00\x01\x0d\x22\xf0\x00\x01\x0d\x22\x91\x0a\x90\x03\x90\x55\xd8\x1c\x21\x90\x04\x90\x53\x91\x09\x90\x09\xd8\x1a\x1e\x9f\x2a\x9a\x2a\x99\x2c\x9c\x2c\xf0\x00\x01\x09\x1e\xf0\x00\x01\x09\x1e\x89\x4a\x88\x43\x90\x15\xd8\x18\x1d\x88\x44\x90\x13\x89\x49\x88\x49\xf0\x03\x01\x09\x1e\xf0\x00\x01\x09\x1e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_other._ascii.ob_base, + & const_str_kwds._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(272) +_collections_abc_toplevel_consts_64_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 136, + }, + .co_consts = & _collections_abc_toplevel_consts_64_consts_8_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_64_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 11, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 2, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 941, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_update._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_64_consts_8_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_64_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x11\x7c\x01\x44\x00\x5d\x0d\x7d\x03\x7c\x01\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0e\x6e\x40\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x23\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x0d\x7d\x03\x7c\x01\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0e\x6e\x0d\x7c\x01\x44\x00\x5d\x0a\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0b\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x0a\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0b\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[65]; + } +_collections_abc_toplevel_consts_64_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 64, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_64_consts_10_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_setdefault = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "setdefault", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +_collections_abc_toplevel_consts_64_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableMapping.setdefault", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[63]; + } +_collections_abc_toplevel_consts_64_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 62, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x09\x20\xd8\x13\x17\x98\x03\x94\x39\xd0\x0c\x1c\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x20\xf0\x00\x01\x09\x20\xf0\x00\x01\x09\x20\xd8\x18\x1f\x88\x44\x90\x13\x89\x49\x88\x49\x88\x49\xf0\x03\x01\x09\x20\xf8\xf8\xf8\xe0\x0f\x16\x88\x0e", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_64_consts_10_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x07\x0a\x00\x8a\x0f\x1c\x03\x9b\x01\x1c\x03", +}; +static + struct _PyCode_DEF(66) +_collections_abc_toplevel_consts_64_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & _collections_abc_toplevel_consts_64_consts_10_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_64_consts_10_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 959, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_setdefault._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_64_consts_10_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_64_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x08\x01\x00\x7c\x02\x7c\x00\x7c\x01\x3c\x00\x00\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_64_consts_11 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + (PyObject *)& _Py_SINGLETON(tuple_empty), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +_collections_abc_toplevel_consts_64_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_MutableMapping._ascii.ob_base, + & _collections_abc_toplevel_consts_64_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_64_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_64_consts_4.ob_base.ob_base, + & _collections_abc_toplevel_consts_64_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_64_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_64_consts_7.ob_base.ob_base, + & _collections_abc_toplevel_consts_64_consts_8.ob_base.ob_base, + Py_None, + & _collections_abc_toplevel_consts_64_consts_10.ob_base.ob_base, + & _collections_abc_toplevel_consts_64_consts_11._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +_collections_abc_toplevel_consts_64_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__setitem__), + &_Py_ID(__delitem__), + & const_str_object._ascii.ob_base, + & const_str__MutableMapping__marker._ascii.ob_base, + & const_str_pop._ascii.ob_base, + & const_str_popitem._ascii.ob_base, + &_Py_ID(clear), + & const_str_update._ascii.ob_base, + & const_str_setdefault._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[196]; + } +_collections_abc_toplevel_consts_64_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 195, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x06\x05\x08\xf0\x00\x06\x05\x08\xf0\x10\x00\x11\x13\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x17\xf0\x06\x00\x06\x14\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x17\xf0\x06\x00\x10\x16\x88\x76\x89\x78\x8c\x78\x80\x48\xe0\x1f\x27\xf0\x00\x0c\x05\x19\xf0\x00\x0c\x05\x19\xf0\x00\x0c\x05\x19\xf0\x00\x0c\x05\x19\xf0\x1c\x0a\x05\x1a\xf0\x00\x0a\x05\x1a\xf0\x00\x0a\x05\x1a\xf0\x18\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x10\x05\x1e\xf0\x00\x10\x05\x1e\xf0\x00\x10\x05\x1e\xf0\x00\x10\x05\x1e\xf0\x24\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17", +}; +static + struct _PyCode_DEF(124) +_collections_abc_toplevel_consts_64 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 62, + }, + .co_consts = & _collections_abc_toplevel_consts_64_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_64_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 886, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_MutableMapping._ascii.ob_base, + .co_qualname = & const_str_MutableMapping._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_64_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x65\x09\x66\x01\x64\x05\x84\x01\x5a\x0a\x64\x06\x84\x00\x5a\x0b\x64\x07\x84\x00\x5a\x0c\x64\x0b\x64\x08\x84\x01\x5a\x0d\x64\x0c\x64\x0a\x84\x01\x5a\x0e\x64\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[139]; + } +_collections_abc_toplevel_consts_66_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 138, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x6c\x6c\x20\x74\x68\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x6f\x6e\x20\x61\x20\x72\x65\x61\x64\x2d\x6f\x6e\x6c\x79\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x43\x6f\x6e\x63\x72\x65\x74\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x6d\x75\x73\x74\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x5f\x5f\x6e\x65\x77\x5f\x5f\x20\x6f\x72\x20\x5f\x5f\x69\x6e\x69\x74\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_IndexError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +_collections_abc_toplevel_consts_66_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence.__getitem__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +_collections_abc_toplevel_consts_66_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0e\x18\xd0\x08\x18", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_66_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 985, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_67_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getitem__), + .co_qualname = & _collections_abc_toplevel_consts_66_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_True, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_collections_abc_toplevel_consts_66_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence.__iter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[90]; + } +_collections_abc_toplevel_consts_66_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 89, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x0c\x0d\x88\x01\xf0\x02\x06\x09\x13\xf0\x02\x03\x0d\x17\xd8\x14\x18\x98\x11\x94\x47\x90\x01\xd8\x16\x17\x90\x07\x90\x07\x90\x07\xd8\x10\x11\x90\x51\x91\x06\x90\x01\xf0\x07\x03\x0d\x17\xf8\xf5\x08\x00\x10\x1a\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xd8\x0c\x12\x88\x46\x88\x46\xf0\x03\x01\x09\x13\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_collections_abc_toplevel_consts_66_consts_5_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x86\x13\x19\x00\x99\x0a\x27\x03\xa6\x01\x27\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(84) +_collections_abc_toplevel_consts_66_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 42, + }, + .co_consts = & _collections_abc_toplevel_consts_66_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_66_consts_5_exceptiontable.ob_base.ob_base, + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 989, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & _collections_abc_toplevel_consts_66_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x01\x7d\x01\x09\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x56\x00\x97\x01\x01\x00\x7c\x01\x64\x03\x7a\x0d\x00\x00\x7d\x01\x8c\x12\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +_collections_abc_toplevel_consts_66_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence.__contains__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[52]; + } +_collections_abc_toplevel_consts_66_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 51, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x11\x15\xf0\x00\x02\x09\x1c\xf0\x00\x02\x09\x1c\x88\x41\xd8\x0f\x10\x90\x45\x88\x7a\x88\x7a\x98\x51\xa0\x25\x9a\x5a\x98\x5a\xd8\x17\x1b\x90\x74\x90\x74\xf0\x03\x00\x1e\x28\xe0\x0f\x14\x88\x75", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(42) +_collections_abc_toplevel_consts_66_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 999, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__contains__), + .co_qualname = & _collections_abc_toplevel_consts_66_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x44\x00\x5d\x0f\x7d\x02\x7c\x02\x7c\x01\x75\x00\x73\x06\x7c\x02\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x10\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_range = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "range", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(reversed), + & const_str_range._ascii.ob_base, + &_Py_ID(len), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +_collections_abc_toplevel_consts_66_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence.__reversed__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[69]; + } +_collections_abc_toplevel_consts_66_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 68, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xdd\x11\x19\x9d\x25\xa5\x03\xa0\x44\xa1\x09\xa4\x09\xd1\x1a\x2a\xd4\x1a\x2a\xd1\x11\x2b\xd4\x11\x2b\xf0\x00\x01\x09\x1a\xf0\x00\x01\x09\x1a\x88\x41\xd8\x12\x16\x90\x71\x94\x27\x88\x4d\x88\x4d\x88\x4d\x88\x4d\xf0\x03\x01\x09\x1a\xf0\x00\x01\x09\x1a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_7_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_i._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(118) +_collections_abc_toplevel_consts_66_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 59, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 1005, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__reversed__), + .co_qualname = & _collections_abc_toplevel_consts_66_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x0c\x7d\x01\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x0d\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[231]; + } +_collections_abc_toplevel_consts_66_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 230, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x2e\x69\x6e\x64\x65\x78\x28\x76\x61\x6c\x75\x65\x2c\x20\x5b\x73\x74\x61\x72\x74\x2c\x20\x5b\x73\x74\x6f\x70\x5d\x5d\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x20\x2d\x2d\x20\x72\x65\x74\x75\x72\x6e\x20\x66\x69\x72\x73\x74\x20\x69\x6e\x64\x65\x78\x20\x6f\x66\x20\x76\x61\x6c\x75\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x72\x65\x73\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x75\x70\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x64\x20\x73\x74\x6f\x70\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x2c\x20\x62\x75\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x63\x6f\x6d\x6d\x65\x6e\x64\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & _collections_abc_toplevel_consts_66_consts_10_consts_0._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_max._ascii.ob_base, + &_Py_ID(len), + & const_str_IndexError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_66_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence.index", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[195]; + } +_collections_abc_toplevel_consts_66_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 194, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0e\x00\x0c\x11\xd0\x0b\x1c\xa0\x15\xa8\x11\xa2\x19\xa0\x19\xdd\x14\x17\x9d\x03\x98\x44\x99\x09\x9c\x09\xa0\x45\xd1\x18\x29\xa8\x31\xd1\x14\x2d\xd4\x14\x2d\x88\x45\xd8\x0b\x0f\xd0\x0b\x1b\xa0\x04\xa0\x71\xa2\x08\xa0\x08\xd8\x0c\x10\x95\x43\x98\x04\x91\x49\x94\x49\xd1\x0c\x1d\x88\x44\xe0\x0c\x11\x88\x01\xd8\x0e\x12\x88\x6c\x98\x61\xa0\x24\x9a\x68\x98\x68\xf0\x02\x03\x0d\x16\xd8\x14\x18\x98\x11\x94\x47\x90\x01\x90\x01\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xd8\x10\x15\x90\x05\xf0\x03\x01\x0d\x16\xf8\xf8\xf8\xe0\x0f\x10\x90\x45\x88\x7a\x88\x7a\x98\x51\xa0\x25\x9a\x5a\x98\x5a\xd8\x17\x18\x90\x08\xd8\x0c\x0d\x90\x11\x89\x46\x88\x41\xf0\x0f\x00\x0f\x13\x88\x6c\x98\x61\xa0\x24\x9a\x68\x98\x68\xf5\x10\x00\x0f\x19\xd0\x08\x18", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +_collections_abc_toplevel_consts_66_consts_10_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x0e\x08\x41\x17\x00\xc1\x17\x0a\x41\x24\x03\xc1\x23\x01\x41\x24\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_stop = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "stop", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_10_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_start._ascii.ob_base, + & const_str_stop._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(270) +_collections_abc_toplevel_consts_66_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 135, + }, + .co_consts = & _collections_abc_toplevel_consts_66_consts_10_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_66_consts_10_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1009, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_index._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_66_consts_10_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x81\x26\x7c\x02\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x20\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7a\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x18\x7c\x03\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x12\x7c\x03\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x7d\x03\x7c\x02\x7d\x04\x7c\x03\x81\x06\x7c\x04\x7c\x03\x6b\x00\x00\x00\x00\x00\x72\x33\x09\x00\x7c\x00\x7c\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x10\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x1d\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x05\x7c\x01\x75\x00\x73\x06\x7c\x05\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x04\x53\x00\x7c\x04\x64\x03\x7a\x0d\x00\x00\x7d\x04\x7c\x03\xae\x2d\x7c\x04\x7c\x03\x6b\x00\x00\x00\x00\x00\xb0\x33\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[67]; + } +_collections_abc_toplevel_consts_66_consts_11_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 66, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S.count(value) -> integer -- return number of occurrences of value", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +_collections_abc_toplevel_consts_66_consts_11_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence.count..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[48]; + } +_collections_abc_toplevel_consts_66_consts_11_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 47, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x12\x3f\xd0\x12\x3f\x98\x11\xa0\x61\xa8\x35\xa0\x6a\xa0\x6a\xb0\x41\xb8\x15\xb2\x4a\xb0\x4a\x90\x31\xb0\x4a\xb0\x4a\xb0\x4a\xb0\x4a\xd0\x12\x3f\xd0\x12\x3f", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_11_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_v._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(48) +_collections_abc_toplevel_consts_66_consts_11_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & importlib__bootstrap_external_toplevel_consts_6_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1034, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_11_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & _collections_abc_toplevel_consts_66_consts_11_consts_1_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_11_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x10\x7d\x01\x7c\x01\x89\x02\x75\x00\x73\x06\x7c\x01\x89\x02\x6b\x02\x00\x00\x00\x00\xaf\x0c\x64\x00\x56\x00\x97\x01\x01\x00\x8c\x11\x64\x01\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_66_consts_11_consts_0._ascii.ob_base, + & _collections_abc_toplevel_consts_66_consts_11_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_sum = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sum", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_sum._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +_collections_abc_toplevel_consts_66_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Sequence.count", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[39]; + } +_collections_abc_toplevel_consts_66_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 38, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xe5\x0f\x12\xd0\x12\x3f\xd0\x12\x3f\xd0\x12\x3f\xd0\x12\x3f\x98\x64\xd0\x12\x3f\xd1\x12\x3f\xd4\x12\x3f\xd1\x0f\x3f\xd4\x0f\x3f\xd0\x08\x3f", +}; +static + struct _PyCode_DEF(58) +_collections_abc_toplevel_consts_66_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & _collections_abc_toplevel_consts_66_consts_11_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1032, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_50_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_count._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_66_consts_11_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x01\x66\x01\x64\x01\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_66_consts_12 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +_collections_abc_toplevel_consts_66_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_Sequence._ascii.ob_base, + & _collections_abc_toplevel_consts_66_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], + & _collections_abc_toplevel_consts_66_consts_4.ob_base.ob_base, + & _collections_abc_toplevel_consts_66_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_66_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_66_consts_7.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & _collections_abc_toplevel_consts_66_consts_10.ob_base.ob_base, + & _collections_abc_toplevel_consts_66_consts_11.ob_base.ob_base, + & _collections_abc_toplevel_consts_66_consts_12._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +_collections_abc_toplevel_consts_66_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + &_Py_ID(__abc_tpflags__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__getitem__), + &_Py_ID(__iter__), + &_Py_ID(__contains__), + &_Py_ID(__reversed__), + & const_str_index._ascii.ob_base, + & const_str_count._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[155]; + } +_collections_abc_toplevel_consts_66_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 154, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0c\x00\x11\x13\x80\x49\xf0\x06\x00\x17\x1d\x80\x4f\xe0\x05\x13\xf0\x02\x01\x05\x19\xf0\x00\x01\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x19\xf0\x06\x08\x05\x13\xf0\x00\x08\x05\x13\xf0\x00\x08\x05\x13\xf0\x14\x04\x05\x15\xf0\x00\x04\x05\x15\xf0\x00\x04\x05\x15\xf0\x0c\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x08\x15\x05\x19\xf0\x00\x15\x05\x19\xf0\x00\x15\x05\x19\xf0\x00\x15\x05\x19\xf0\x2e\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01", +}; +static + struct _PyCode_DEF(80) +_collections_abc_toplevel_consts_66 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 40, + }, + .co_consts = & _collections_abc_toplevel_consts_66_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 973, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_Sequence._ascii.ob_base, + .co_qualname = & const_str_Sequence._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x5a\x05\x65\x06\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x05\x84\x00\x5a\x08\x64\x06\x84\x00\x5a\x09\x64\x07\x84\x00\x5a\x0a\x64\x0c\x64\x0a\x84\x01\x5a\x0b\x64\x0b\x84\x00\x5a\x0c\x64\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[78]; + } +_collections_abc_toplevel_consts_68_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 77, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x54\x68\x69\x73\x20\x75\x6e\x69\x66\x69\x65\x73\x20\x62\x79\x74\x65\x73\x20\x61\x6e\x64\x20\x62\x79\x74\x65\x61\x72\x72\x61\x79\x2e\x0a\x0a\x20\x20\x20\x20\x58\x58\x58\x20\x53\x68\x6f\x75\x6c\x64\x20\x61\x64\x64\x20\x61\x6c\x6c\x20\x74\x68\x65\x69\x72\x20\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_68_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_ByteString._ascii.ob_base, + & _collections_abc_toplevel_consts_68_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + Py_None, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[32]; + } +_collections_abc_toplevel_consts_68_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 31, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x03\x05\x08\xf0\x00\x03\x05\x08\xf0\x0a\x00\x11\x13\x80\x49\x80\x49\x80\x49", +}; +static + struct _PyCode_DEF(22) +_collections_abc_toplevel_consts_68 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 11, + }, + .co_consts = & _collections_abc_toplevel_consts_68_consts._object.ob_base.ob_base, + .co_names = & abc_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1042, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_ByteString._ascii.ob_base, + .co_qualname = & const_str_ByteString._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_68_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[175]; + } +_collections_abc_toplevel_consts_70_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 174, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x6c\x6c\x20\x74\x68\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x6f\x6e\x20\x61\x20\x72\x65\x61\x64\x2d\x77\x72\x69\x74\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x43\x6f\x6e\x63\x72\x65\x74\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x6d\x75\x73\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x5f\x5f\x6e\x65\x77\x5f\x5f\x20\x6f\x72\x20\x5f\x5f\x69\x6e\x69\x74\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x73\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x64\x65\x6c\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x69\x6e\x73\x65\x72\x74\x28\x29\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +_collections_abc_toplevel_consts_70_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.__setitem__", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_index._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_70_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1063, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__setitem__), + .co_qualname = & _collections_abc_toplevel_consts_70_consts_3_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +_collections_abc_toplevel_consts_70_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.__delitem__", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_70_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1067, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_67_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__delitem__), + .co_qualname = & _collections_abc_toplevel_consts_70_consts_4_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_66_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[52]; + } +_collections_abc_toplevel_consts_70_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 51, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S.insert(index, value) -- insert value before index", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_70_consts_5_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_70_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.insert", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[11]; + } +_collections_abc_toplevel_consts_70_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 10, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x0f\x19\xd0\x08\x18", +}; +static + struct _PyCode_DEF(16) +_collections_abc_toplevel_consts_70_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts_5_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1071, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_insert._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_70_consts_5_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[59]; + } +_collections_abc_toplevel_consts_70_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 58, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S.append(value) -- append value to the end of the sequence", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_70_consts_6_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_insert._ascii.ob_base, + &_Py_ID(len), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_70_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.append", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[35]; + } +_collections_abc_toplevel_consts_70_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 34, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x08\x0c\x8f\x0b\x8a\x0b\x95\x43\x98\x04\x91\x49\x94\x49\x98\x75\xd1\x08\x25\xd4\x08\x25\xd0\x08\x25\xd0\x08\x25\xd0\x08\x25", +}; +static + struct _PyCode_DEF(76) +_collections_abc_toplevel_consts_70_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 38, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts_6_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_70_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1076, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(append), + .co_qualname = & _collections_abc_toplevel_consts_70_consts_6_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +_collections_abc_toplevel_consts_70_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S.clear() -> None -- remove all items from S", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & _collections_abc_toplevel_consts_70_consts_7_consts_0._ascii.ob_base, + Py_True, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_pop._ascii.ob_base, + & const_str_IndexError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +_collections_abc_toplevel_consts_70_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.clear", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +_collections_abc_toplevel_consts_70_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x04\x09\x11\xf0\x02\x01\x0d\x1b\xd8\x10\x14\x97\x08\x92\x08\x91\x0a\x94\x0a\x90\x0a\xf0\x03\x01\x0d\x1b\xf8\xe5\x0f\x19\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", +}; +static + struct _PyCode_DEF(82) +_collections_abc_toplevel_consts_70_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 41, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts_7_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_70_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_7_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1080, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(clear), + .co_qualname = & _collections_abc_toplevel_consts_70_consts_7_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x15\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +_collections_abc_toplevel_consts_70_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S.reverse() -- reverse *IN PLACE*", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & _collections_abc_toplevel_consts_70_consts_8_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(len), + & const_str_range._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_reverse = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "reverse", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +_collections_abc_toplevel_consts_70_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.reverse", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[95]; + } +_collections_abc_toplevel_consts_70_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 94, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0c\x0f\x90\x04\x89\x49\x8c\x49\x88\x01\xdd\x11\x16\x90\x71\x98\x21\x91\x74\x91\x1b\x94\x1b\xf0\x00\x01\x09\x38\xf0\x00\x01\x09\x38\x88\x41\xd8\x23\x27\xa8\x01\xa8\x21\xa9\x03\xa8\x41\xa9\x05\xa4\x3b\xb0\x04\xb0\x51\xb4\x07\xd0\x0c\x20\x88\x44\x90\x11\x89\x47\x90\x54\x98\x21\x98\x41\x99\x23\x98\x61\x99\x25\x91\x5b\x90\x5b\xf0\x03\x01\x09\x38\xf0\x00\x01\x09\x38", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_n._ascii.ob_base, + & const_str_i._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(148) +_collections_abc_toplevel_consts_70_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 74, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts_8_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_70_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1088, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_reverse._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_70_consts_8_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x7a\x02\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x25\x7d\x02\x7c\x00\x7c\x01\x7c\x02\x7a\x0a\x00\x00\x64\x02\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x7c\x00\x7c\x02\x3c\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7a\x0a\x00\x00\x64\x02\x7a\x0a\x00\x00\x3c\x00\x00\x00\x8c\x26\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[78]; + } +_collections_abc_toplevel_consts_70_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 77, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S.extend(iterable) -- extend sequence by appending elements from the iterable", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_70_consts_9_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_list._ascii.ob_base, + &_Py_ID(append), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_70_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.extend", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +_collections_abc_toplevel_consts_70_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x11\x90\x54\x88\x3e\x88\x3e\xdd\x15\x19\x98\x26\x91\x5c\x94\x5c\x88\x46\xd8\x11\x17\xf0\x00\x01\x09\x1b\xf0\x00\x01\x09\x1b\x88\x41\xd8\x0c\x10\x8f\x4b\x8a\x4b\x98\x01\x89\x4e\x8c\x4e\x88\x4e\x88\x4e\xf0\x03\x01\x09\x1b\xf0\x00\x01\x09\x1b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(values), + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(96) +_collections_abc_toplevel_consts_70_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 48, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts_9_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_70_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1094, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(extend), + .co_qualname = & _collections_abc_toplevel_consts_70_consts_9_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x75\x00\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[154]; + } +_collections_abc_toplevel_consts_70_consts_11_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 153, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x2e\x70\x6f\x70\x28\x5b\x69\x6e\x64\x65\x78\x5d\x29\x20\x2d\x3e\x20\x69\x74\x65\x6d\x20\x2d\x2d\x20\x72\x65\x6d\x6f\x76\x65\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x69\x74\x65\x6d\x20\x61\x74\x20\x69\x6e\x64\x65\x78\x20\x28\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x61\x73\x74\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x20\x49\x6e\x64\x65\x78\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x6c\x69\x73\x74\x20\x69\x73\x20\x65\x6d\x70\x74\x79\x20\x6f\x72\x20\x69\x6e\x64\x65\x78\x20\x69\x73\x20\x6f\x75\x74\x20\x6f\x66\x20\x72\x61\x6e\x67\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & _collections_abc_toplevel_consts_70_consts_11_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +_collections_abc_toplevel_consts_70_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.pop", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +_collections_abc_toplevel_consts_70_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x0d\x11\x90\x15\x8c\x4b\x88\x01\xd8\x0c\x10\x90\x15\x88\x4b\xd8\x0f\x10\x88\x08", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_index._ascii.ob_base, + & const_str_v._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(28) +_collections_abc_toplevel_consts_70_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 14, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts_11_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1101, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_pop._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_70_consts_11_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x7c\x01\x3d\x00\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[119]; + } +_collections_abc_toplevel_consts_70_consts_12_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 118, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x2e\x72\x65\x6d\x6f\x76\x65\x28\x76\x61\x6c\x75\x65\x29\x20\x2d\x2d\x20\x72\x65\x6d\x6f\x76\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x63\x63\x75\x72\x72\x65\x6e\x63\x65\x20\x6f\x66\x20\x76\x61\x6c\x75\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x72\x65\x73\x65\x6e\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & _collections_abc_toplevel_consts_70_consts_12_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_index._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_collections_abc_toplevel_consts_70_consts_12_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.remove", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[31]; + } +_collections_abc_toplevel_consts_70_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 30, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x0d\x11\x90\x14\x97\x1a\x92\x1a\x98\x45\xd1\x11\x22\xd4\x11\x22\xd0\x0c\x23\xd0\x0c\x23\xd0\x0c\x23", +}; +static + struct _PyCode_DEF(50) +_collections_abc_toplevel_consts_70_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts_12_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_70_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1109, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_remove._ascii.ob_base, + .co_qualname = & _collections_abc_toplevel_consts_70_consts_12_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(extend), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +_collections_abc_toplevel_consts_70_consts_13_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MutableSequence.__iadd__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +_collections_abc_toplevel_consts_70_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0b\x8a\x0b\x90\x46\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x0f\x13\x88\x0b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_collections_abc_toplevel_consts_70_consts_13_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(values), + }, + }, +}; +static + struct _PyCode_DEF(48) +_collections_abc_toplevel_consts_70_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_70_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1115, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_13_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iadd__), + .co_qualname = & _collections_abc_toplevel_consts_70_consts_13_qualname._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +_collections_abc_toplevel_consts_70_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & const_str_MutableSequence._ascii.ob_base, + & _collections_abc_toplevel_consts_70_consts_1._ascii.ob_base, + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_70_consts_3.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_4.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_6.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_7.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_8.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_9.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & _collections_abc_toplevel_consts_70_consts_11.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_12.ob_base.ob_base, + & _collections_abc_toplevel_consts_70_consts_13.ob_base.ob_base, + Py_None, + & codecs_toplevel_consts_28_consts_22._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +_collections_abc_toplevel_consts_70_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__slots__), + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__setitem__), + &_Py_ID(__delitem__), + & const_str_insert._ascii.ob_base, + &_Py_ID(append), + &_Py_ID(clear), + & const_str_reverse._ascii.ob_base, + &_Py_ID(extend), + & const_str_pop._ascii.ob_base, + & const_str_remove._ascii.ob_base, + &_Py_ID(__iadd__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[227]; + } +_collections_abc_toplevel_consts_70_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 226, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0c\x00\x11\x13\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x19\xf0\x00\x01\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x19\xf0\x06\x00\x06\x14\xf0\x02\x01\x05\x19\xf0\x00\x01\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x19\xf0\x06\x00\x06\x14\xf0\x02\x02\x05\x19\xf0\x00\x02\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x19\xf0\x08\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x08\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x04\x05\x38\xf0\x00\x04\x05\x38\xf0\x00\x04\x05\x38\xf0\x0c\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x0e\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x04\x05\x24\xf0\x00\x04\x05\x24\xf0\x00\x04\x05\x24\xf0\x0c\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14", +}; +static + struct _PyCode_DEF(132) +_collections_abc_toplevel_consts_70 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 66, + }, + .co_consts = & _collections_abc_toplevel_consts_70_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_consts_70_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1054, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_MutableSequence._ascii.ob_base, + .co_qualname = & const_str_MutableSequence._ascii.ob_base, + .co_linetable = & _collections_abc_toplevel_consts_70_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x65\x05\x64\x05\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x64\x06\x84\x00\x5a\x09\x64\x07\x84\x00\x5a\x0a\x64\x08\x84\x00\x5a\x0b\x64\x09\x84\x00\x5a\x0c\x64\x0f\x64\x0b\x84\x01\x5a\x0d\x64\x0c\x84\x00\x5a\x0e\x64\x0d\x84\x00\x5a\x0f\x64\x0e\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[72]; + }_object; + } +_collections_abc_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 72, + }, + .ob_item = { + & _collections_abc_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & _collections_abc_toplevel_consts_2._object.ob_base.ob_base, + Py_None, + Py_Ellipsis, + & _collections_abc_toplevel_consts_5.ob_base.ob_base, + & _collections_abc_toplevel_consts_6._object.ob_base.ob_base, + & _collections_abc_toplevel_consts_7._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_empty), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & const_int_1000.ob_base.ob_base, + &_Py_STR(empty), + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _collections_abc_toplevel_consts_13.ob_base.ob_base, + & _collections_abc_toplevel_consts_14.ob_base.ob_base, + & _collections_abc_toplevel_consts_15.ob_base.ob_base, + & _collections_abc_toplevel_consts_16.ob_base.ob_base, + & _collections_abc_toplevel_consts_17.ob_base.ob_base, + & const_str_Hashable._ascii.ob_base, + & abc_toplevel_consts_17._object.ob_base.ob_base, + & _collections_abc_toplevel_consts_20.ob_base.ob_base, + & const_str_Awaitable._ascii.ob_base, + & _collections_abc_toplevel_consts_22.ob_base.ob_base, + & const_str_Coroutine._ascii.ob_base, + & _collections_abc_toplevel_consts_24.ob_base.ob_base, + & const_str_AsyncIterable._ascii.ob_base, + & _collections_abc_toplevel_consts_26.ob_base.ob_base, + & const_str_AsyncIterator._ascii.ob_base, + & _collections_abc_toplevel_consts_28.ob_base.ob_base, + & const_str_AsyncGenerator._ascii.ob_base, + & _collections_abc_toplevel_consts_30.ob_base.ob_base, + & const_str_Iterable._ascii.ob_base, + & _collections_abc_toplevel_consts_32.ob_base.ob_base, + & const_str_Iterator._ascii.ob_base, + & _collections_abc_toplevel_consts_34.ob_base.ob_base, + & const_str_Reversible._ascii.ob_base, + & _collections_abc_toplevel_consts_36.ob_base.ob_base, + & const_str_Generator._ascii.ob_base, + & _collections_abc_toplevel_consts_38.ob_base.ob_base, + & const_str_Sized._ascii.ob_base, + & _collections_abc_toplevel_consts_40.ob_base.ob_base, + & const_str_Container._ascii.ob_base, + & _collections_abc_toplevel_consts_42.ob_base.ob_base, + & const_str_Collection._ascii.ob_base, + & _collections_abc_toplevel_consts_44.ob_base.ob_base, + & const_str__CallableGenericAlias._ascii.ob_base, + & _collections_abc_toplevel_consts_46.ob_base.ob_base, + & _collections_abc_toplevel_consts_47.ob_base.ob_base, + & _collections_abc_toplevel_consts_48.ob_base.ob_base, + & const_str_Callable._ascii.ob_base, + & _collections_abc_toplevel_consts_50.ob_base.ob_base, + & const_str_Set._ascii.ob_base, + & _collections_abc_toplevel_consts_52.ob_base.ob_base, + & const_str_MutableSet._ascii.ob_base, + & _collections_abc_toplevel_consts_54.ob_base.ob_base, + & const_str_Mapping._ascii.ob_base, + & _collections_abc_toplevel_consts_56.ob_base.ob_base, + & const_str_MappingView._ascii.ob_base, + & _collections_abc_toplevel_consts_58.ob_base.ob_base, + & const_str_KeysView._ascii.ob_base, + & _collections_abc_toplevel_consts_60.ob_base.ob_base, + & const_str_ItemsView._ascii.ob_base, + & _collections_abc_toplevel_consts_62.ob_base.ob_base, + & const_str_ValuesView._ascii.ob_base, + & _collections_abc_toplevel_consts_64.ob_base.ob_base, + & const_str_MutableMapping._ascii.ob_base, + & _collections_abc_toplevel_consts_66.ob_base.ob_base, + & const_str_Sequence._ascii.ob_base, + & _collections_abc_toplevel_consts_68.ob_base.ob_base, + & const_str_ByteString._ascii.ob_base, + & _collections_abc_toplevel_consts_70.ob_base.ob_base, + & const_str_MutableSequence._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_EllipsisType = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "EllipsisType", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_bytes_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bytes_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_bytearray_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bytearray_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_dict_keyiterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dict_keyiterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_dict_valueiterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dict_valueiterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_dict_itemiterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dict_itemiterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_list_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "list_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str_list_reverseiterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "list_reverseiterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_range_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "range_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_longrange_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "longrange_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_set_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_str_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "str_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_tuple_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "tuple_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_zip = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zip", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_zip_iterator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "zip_iterator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_dict_keys = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dict_keys", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_dict_values = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dict_values", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_dict_items = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dict_items", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_mappingproxy = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mappingproxy", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_generator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "generator", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_coroutine = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "coroutine", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_async_generator = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "async_generator", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[83]; + }_object; + } +_collections_abc_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 83, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_abc._ascii.ob_base, + & const_str_ABCMeta._ascii.ob_base, + & const_str_abstractmethod._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_type._ascii.ob_base, + & const_str_list._ascii.ob_base, + & const_str_int._ascii.ob_base, + & const_str_GenericAlias._ascii.ob_base, + & const_str_EllipsisType._ascii.ob_base, + & const_str__f._ascii.ob_base, + & const_str_FunctionType._ascii.ob_base, + &_Py_ID(__all__), + &_Py_ID(__name__), + &_Py_ID(iter), + & const_str_bytes_iterator._ascii.ob_base, + & const_str_bytearray._ascii.ob_base, + & const_str_bytearray_iterator._ascii.ob_base, + &_Py_ID(keys), + & const_str_dict_keyiterator._ascii.ob_base, + &_Py_ID(values), + & const_str_dict_valueiterator._ascii.ob_base, + &_Py_ID(items), + & const_str_dict_itemiterator._ascii.ob_base, + & const_str_list_iterator._ascii.ob_base, + &_Py_ID(reversed), + & const_str_list_reverseiterator._ascii.ob_base, + & const_str_range._ascii.ob_base, + & const_str_range_iterator._ascii.ob_base, + & const_str_longrange_iterator._ascii.ob_base, + & const_str_set._ascii.ob_base, + & const_str_set_iterator._ascii.ob_base, + & const_str_str_iterator._ascii.ob_base, + & const_str_tuple_iterator._ascii.ob_base, + & const_str_zip._ascii.ob_base, + & const_str_zip_iterator._ascii.ob_base, + & const_str_dict_keys._ascii.ob_base, + & const_str_dict_values._ascii.ob_base, + & const_str_dict_items._ascii.ob_base, + &_Py_ID(__dict__), + & const_str_mappingproxy._ascii.ob_base, + & const_str_generator._ascii.ob_base, + & const_str__coro._ascii.ob_base, + & const_str_coroutine._ascii.ob_base, + &_Py_ID(close), + & const_str__ag._ascii.ob_base, + & const_str_async_generator._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_Hashable._ascii.ob_base, + & const_str_Awaitable._ascii.ob_base, + & const_str_Coroutine._ascii.ob_base, + & const_str_register._ascii.ob_base, + & const_str_AsyncIterable._ascii.ob_base, + & const_str_AsyncIterator._ascii.ob_base, + & const_str_AsyncGenerator._ascii.ob_base, + & const_str_Iterable._ascii.ob_base, + & const_str_Iterator._ascii.ob_base, + & const_str_Reversible._ascii.ob_base, + & const_str_Generator._ascii.ob_base, + & const_str_Sized._ascii.ob_base, + & const_str_Container._ascii.ob_base, + & const_str_Collection._ascii.ob_base, + & const_str__CallableGenericAlias._ascii.ob_base, + & const_str__is_param_expr._ascii.ob_base, + & const_str__type_repr._ascii.ob_base, + & const_str_Callable._ascii.ob_base, + & const_str_Set._ascii.ob_base, + & const_str_frozenset._ascii.ob_base, + & const_str_MutableSet._ascii.ob_base, + & const_str_Mapping._ascii.ob_base, + & const_str_MappingView._ascii.ob_base, + & const_str_KeysView._ascii.ob_base, + & const_str_ItemsView._ascii.ob_base, + & const_str_ValuesView._ascii.ob_base, + & const_str_MutableMapping._ascii.ob_base, + & const_str_dict._ascii.ob_base, + & const_str_Sequence._ascii.ob_base, + & const_str_tuple._ascii.ob_base, + & const_str_str._ascii.ob_base, + & const_str_memoryview._ascii.ob_base, + & const_str_ByteString._ascii.ob_base, + & const_str_bytes._ascii.ob_base, + & const_str_MutableSequence._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[2598]; + } +_collections_abc_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2597, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x08\x03\x01\x04\xf0\x00\x03\x01\x04\xf0\x0a\x00\x01\x28\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xe0\x0f\x13\x88\x74\x90\x44\x98\x13\x94\x49\x89\x7f\x8c\x7f\x80\x0c\xd8\x0f\x13\x88\x74\x90\x43\x89\x79\x8c\x79\x80\x0c\xd8\x00\x0e\x80\x0e\x80\x0e\xd8\x0f\x13\x88\x74\x90\x42\x89\x78\x8c\x78\x80\x0c\xd8\x04\x06\xf0\x04\x09\x0b\x0d\xf0\x00\x09\x0b\x0d\xf0\x00\x09\x0b\x0d\x80\x07\xf0\x1e\x00\x0c\x1d\x80\x08\xf0\x12\x00\x12\x16\x90\x14\x90\x64\x90\x64\x98\x33\x91\x69\x94\x69\x91\x1f\x94\x1f\x80\x0e\xd8\x15\x19\x90\x54\x98\x24\x98\x24\x98\x79\x98\x79\x99\x7b\x9c\x7b\xd1\x1a\x2b\xd4\x1a\x2b\xd1\x15\x2c\xd4\x15\x2c\xd0\x00\x12\xe0\x13\x17\x90\x34\x98\x04\x98\x04\x98\x52\x9f\x57\x9a\x57\x99\x59\x9c\x59\x99\x0f\x9c\x0f\xd1\x13\x28\xd4\x13\x28\xd0\x00\x10\xd8\x15\x19\x90\x54\x98\x24\x98\x24\x98\x72\x9f\x79\x9a\x79\x99\x7b\x9c\x7b\xd1\x1a\x2b\xd4\x1a\x2b\xd1\x15\x2c\xd4\x15\x2c\xd0\x00\x12\xd8\x14\x18\x90\x44\x98\x14\x98\x14\x98\x62\x9f\x68\x9a\x68\x99\x6a\x9c\x6a\xd1\x19\x29\xd4\x19\x29\xd1\x14\x2a\xd4\x14\x2a\xd0\x00\x11\xd8\x10\x14\x90\x04\x90\x54\x90\x54\x98\x22\x91\x58\x94\x58\x91\x0e\x94\x0e\x80\x0d\xd8\x17\x1b\x90\x74\x98\x44\x98\x44\xa0\x18\xa0\x18\xa8\x22\xa1\x1c\xa4\x1c\xd1\x1c\x2e\xd4\x1c\x2e\xd1\x17\x2f\xd4\x17\x2f\xd0\x00\x14\xd8\x11\x15\x90\x14\x90\x64\x90\x64\x98\x35\x98\x35\xa0\x11\x99\x38\x9c\x38\x91\x6e\x94\x6e\xd1\x11\x25\xd4\x11\x25\x80\x0e\xd8\x15\x19\x90\x54\x98\x24\x98\x24\x98\x75\x98\x75\xa0\x51\xa8\x24\xa1\x59\xd1\x1f\x2f\xd4\x1f\x2f\xd1\x1a\x30\xd4\x1a\x30\xd1\x15\x31\xd4\x15\x31\xd0\x00\x12\xd8\x0f\x13\x88\x74\x90\x44\x90\x44\x98\x13\x98\x13\x99\x15\x9c\x15\x91\x4b\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\x80\x0c\xd8\x0f\x13\x88\x74\x90\x44\x90\x44\x98\x12\x91\x48\x94\x48\x89\x7e\x8c\x7e\x80\x0c\xd8\x11\x15\x90\x14\x90\x64\x90\x64\x98\x32\x91\x68\x94\x68\x91\x1e\x94\x1e\x80\x0e\xd8\x0f\x13\x88\x74\x90\x44\x90\x44\x98\x13\x98\x13\x99\x15\x9c\x15\x91\x4b\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\x80\x0c\xe0\x0c\x10\x88\x44\x90\x12\x97\x17\x92\x17\x91\x19\x94\x19\x89\x4f\x8c\x4f\x80\x09\xd8\x0e\x12\x88\x64\x90\x32\x97\x39\x92\x39\x91\x3b\x94\x3b\xd1\x0e\x1f\xd4\x0e\x1f\x80\x0b\xd8\x0d\x11\x88\x54\x90\x22\x97\x28\x92\x28\x91\x2a\x94\x2a\xd1\x0d\x1d\xd4\x0d\x1d\x80\x0a\xe0\x0f\x13\x88\x74\x90\x44\x94\x4d\xd1\x0f\x22\xd4\x0f\x22\x80\x0c\xd8\x0c\x10\x88\x44\x90\x2f\x90\x2f\x90\x2f\xd1\x11\x24\xd4\x11\x24\xd1\x0c\x25\xd4\x0c\x25\x80\x09\xe0\x00\x17\xd0\x00\x17\xd0\x00\x17\xd8\x08\x0d\x88\x05\x89\x07\x8c\x07\x80\x05\xd8\x0c\x10\x88\x44\x90\x15\x89\x4b\x8c\x4b\x80\x09\xd8\x00\x05\x87\x0b\x82\x0b\x81\x0d\x84\x0d\x80\x0d\xd8\x04\x09\xe0\x00\x16\xd0\x00\x16\xd0\x00\x16\xd8\x06\x09\x80\x63\x81\x65\x84\x65\x80\x03\xd8\x12\x16\x90\x24\x90\x73\x91\x29\x94\x29\x80\x0f\xd8\x04\x07\xf0\x0a\x0a\x01\x10\xf0\x00\x0a\x01\x10\xf0\x00\x0a\x01\x10\xf0\x18\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\x98\x17\xf0\x00\x0c\x01\x1e\xf1\x00\x0c\x01\x1e\xf4\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x1e\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\x98\x27\xf0\x00\x0e\x01\x32\xf1\x00\x0e\x01\x32\xf4\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x22\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\x90\x09\xf1\x00\x26\x01\x1e\xf4\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x52\x01\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x39\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x06\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\x98\x67\xf0\x00\x0e\x01\x32\xf1\x00\x0e\x01\x32\xf4\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x22\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\x90\x4d\xf1\x00\x10\x01\x1e\xf4\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x26\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\x90\x5d\xf1\x00\x2d\x01\x1e\xf4\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x60\x01\x00\x01\x0f\xd7\x00\x17\xd2\x00\x17\x98\x0f\xd1\x00\x28\xd4\x00\x28\xd0\x00\x28\xf0\x06\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\x98\x17\xf0\x00\x0f\x01\x32\xf1\x00\x0f\x01\x32\xf4\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x24\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\x88\x78\xf1\x00\x10\x01\x1e\xf4\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x26\x00\x01\x09\xd7\x00\x11\xd2\x00\x11\x90\x2e\xd1\x00\x21\xd4\x00\x21\xd0\x00\x21\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x24\xd1\x00\x25\xd4\x00\x25\xd0\x00\x25\xe0\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x22\xd1\x00\x23\xd4\x00\x23\xd0\x00\x23\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x24\xd1\x00\x25\xd4\x00\x25\xd0\x00\x25\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x23\xd1\x00\x24\xd4\x00\x24\xd0\x00\x24\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2d\xd1\x00\x20\xd4\x00\x20\xd0\x00\x20\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x26\xd1\x00\x27\xd4\x00\x27\xd0\x00\x27\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2e\xd1\x00\x21\xd4\x00\x21\xd0\x00\x21\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x24\xd1\x00\x25\xd4\x00\x25\xd0\x00\x25\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2c\xd1\x00\x1f\xd4\x00\x1f\xd0\x00\x1f\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2c\xd1\x00\x1f\xd4\x00\x1f\xd0\x00\x1f\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2e\xd1\x00\x21\xd4\x00\x21\xd0\x00\x21\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2c\xd1\x00\x1f\xd4\x00\x1f\xd0\x00\x1f\xf0\x06\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\x90\x18\xf1\x00\x0d\x01\x1e\xf4\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x20\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\x90\x08\xf1\x00\x2d\x01\x1e\xf4\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x60\x01\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x39\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x06\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\x90\x67\xf0\x00\x0c\x01\x1e\xf1\x00\x0c\x01\x1e\xf4\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x1e\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\x98\x27\xf0\x00\x0e\x01\x32\xf1\x00\x0e\x01\x32\xf4\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x22\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\x90\x15\x98\x08\xa0\x29\xf1\x00\x08\x01\x1e\xf4\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x16\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\x98\x4c\xf1\x00\x3b\x01\x40\x01\xf4\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x7a\x01\x0a\x01\x56\x01\xf0\x00\x0a\x01\x56\x01\xf0\x00\x0a\x01\x56\x01\xf0\x18\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x26\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\x98\x17\xf0\x00\x0e\x01\x3b\xf1\x00\x0e\x01\x3b\xf4\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x28\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\x88\x2a\xf1\x00\x47\x02\x01\x11\xf4\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x54\x04\x00\x01\x04\x87\x0c\x82\x0c\x88\x59\xd1\x00\x17\xd4\x00\x17\xd0\x00\x17\xf0\x06\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\x90\x13\xf1\x00\x4d\x01\x01\x14\xf4\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x60\x02\x00\x01\x0b\xd7\x00\x13\xd2\x00\x13\x90\x43\xd1\x00\x18\xd4\x00\x18\xd0\x00\x18\xf0\x0a\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x00\x31\x01\x18\x88\x6a\xf1\x00\x31\x01\x18\xf4\x00\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x66\x01\x00\x01\x08\xd7\x00\x10\xd2\x00\x10\x90\x1c\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xf0\x06\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\x90\x25\xf1\x00\x0d\x01\x32\xf4\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x20\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\x88\x7b\x98\x43\xf1\x00\x0c\x01\x21\xf4\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x1e\x00\x01\x09\xd7\x00\x11\xd2\x00\x11\x90\x29\xd1\x00\x1c\xd4\x00\x1c\xd0\x00\x1c\xf0\x06\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\x90\x0b\x98\x53\xf1\x00\x13\x01\x2c\xf4\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x2c\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x3a\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xf0\x06\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\x90\x1b\x98\x6a\xf1\x00\x0d\x01\x25\xf4\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x20\x00\x01\x0b\xd7\x00\x13\xd2\x00\x13\x90\x4b\xd1\x00\x20\xd4\x00\x20\xd0\x00\x20\xf0\x06\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\x90\x57\xf1\x00\x4f\x01\x01\x17\xf4\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x64\x02\x00\x01\x0f\xd7\x00\x17\xd2\x00\x17\x98\x04\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x0a\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\x88\x7a\x98\x3a\xf1\x00\x3d\x01\x40\x01\xf4\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x7e\x01\x00\x01\x09\xd7\x00\x11\xd2\x00\x11\x90\x25\xd1\x00\x18\xd4\x00\x18\xd0\x00\x18\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x23\xd1\x00\x16\xd4\x00\x16\xd0\x00\x16\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x25\xd1\x00\x18\xd4\x00\x18\xd0\x00\x18\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2a\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x06\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x00\x06\x01\x13\x90\x18\xf1\x00\x06\x01\x13\xf4\x00\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x10\x00\x01\x0b\xd7\x00\x13\xd2\x00\x13\x90\x45\xd1\x00\x1a\xd4\x00\x1a\xd0\x00\x1a\xd8\x00\x0a\xd7\x00\x13\xd2\x00\x13\x90\x49\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xf0\x06\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\x90\x68\xf1\x00\x3f\x01\x14\xf4\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x44\x02\x00\x01\x10\xd7\x00\x18\xd2\x00\x18\x98\x14\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xd8\x00\x0f\xd7\x00\x18\xd2\x00\x18\x98\x19\xd1\x00\x23\xd4\x00\x23\xd0\x00\x23\xd0\x00\x23\xd0\x00\x23", +}; +static + struct _PyCode_DEF(3328) +_collections_abc_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 1664, + }, + .co_consts = & _collections_abc_toplevel_consts._object.ob_base.ob_base, + .co_names = & _collections_abc_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & _collections_abc_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x6d\x02\x5a\x02\x6d\x03\x5a\x03\x01\x00\x64\x01\x64\x03\x6c\x04\x5a\x04\x02\x00\x65\x05\x65\x06\x65\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x02\x00\x65\x05\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x05\x84\x00\x5a\x0a\x02\x00\x65\x05\x65\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x5b\x0a\x67\x00\x64\x06\xa2\x01\x5a\x0c\x64\x07\x5a\x0d\x02\x00\x65\x05\x02\x00\x65\x0e\x64\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0f\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x10\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x11\x02\x00\x65\x05\x02\x00\x65\x0e\x69\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x13\x02\x00\x65\x05\x02\x00\x65\x0e\x69\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x15\x02\x00\x65\x05\x02\x00\x65\x0e\x69\x00\xa0\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x17\x02\x00\x65\x05\x02\x00\x65\x0e\x67\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x18\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x19\x67\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1a\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x1b\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1c\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x1b\x64\x09\x64\x0a\x7a\x03\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1d\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x1e\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1f\x02\x00\x65\x05\x02\x00\x65\x0e\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x20\x02\x00\x65\x05\x02\x00\x65\x0e\x64\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x22\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x23\x02\x00\x65\x05\x69\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x24\x02\x00\x65\x05\x69\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x25\x02\x00\x65\x05\x69\x00\xa0\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x26\x02\x00\x65\x05\x65\x05\x6a\x27\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x28\x02\x00\x65\x05\x02\x00\x64\x0d\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x29\x64\x0e\x84\x00\x5a\x2a\x02\x00\x65\x2a\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x05\x65\x2a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2b\x65\x2a\xa0\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x5b\x2a\x64\x0f\x84\x00\x5a\x2d\x02\x00\x65\x2d\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2d\x02\x00\x65\x05\x65\x2d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2e\x5b\x2d\x64\x10\x84\x00\x5a\x2f\x02\x00\x47\x00\x64\x11\x84\x00\x64\x12\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x30\x02\x00\x47\x00\x64\x14\x84\x00\x64\x15\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x31\x02\x00\x47\x00\x64\x16\x84\x00\x64\x17\x65\x31\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x32\x65\x32\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x2b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x18\x84\x00\x64\x19\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x34\x02\x00\x47\x00\x64\x1a\x84\x00\x64\x1b\x65\x34\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x35\x02\x00\x47\x00\x64\x1c\x84\x00\x64\x1d\x65\x35\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x65\x36\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x2e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x1e\x84\x00\x64\x1f\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x37\x02\x00\x47\x00\x64\x20\x84\x00\x64\x21\x65\x37\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x38\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x13\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x15\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x17\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x18\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x20\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x21\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x23\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x22\x84\x00\x64\x23\x65\x37\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x39\x02\x00\x47\x00\x64\x24\x84\x00\x64\x25\x65\x38\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3a\x65\x3a\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x29\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x26\x84\x00\x64\x27\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3b\x02\x00\x47\x00\x64\x28\x84\x00\x64\x29\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3c\x02\x00\x47\x00\x64\x2a\x84\x00\x64\x2b\x65\x3b\x65\x37\x65\x3c\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3d\x02\x00\x47\x00\x64\x2c\x84\x00\x64\x2d\x65\x08\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3e\x64\x2e\x84\x00\x5a\x3f\x64\x2f\x84\x00\x5a\x40\x02\x00\x47\x00\x64\x30\x84\x00\x64\x31\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x41\x02\x00\x47\x00\x64\x32\x84\x00\x64\x33\x65\x3d\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x42\x65\x42\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x43\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x34\x84\x00\x64\x35\x65\x42\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x44\x65\x44\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x36\x84\x00\x64\x37\x65\x3d\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x45\x65\x45\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x28\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x38\x84\x00\x64\x39\x65\x3b\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x46\x02\x00\x47\x00\x64\x3a\x84\x00\x64\x3b\x65\x46\x65\x42\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x47\x65\x47\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x24\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x3c\x84\x00\x64\x3d\x65\x46\x65\x42\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x48\x65\x48\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x26\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x3e\x84\x00\x64\x3f\x65\x46\x65\x3d\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x49\x65\x49\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x25\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x40\x84\x00\x64\x41\x65\x45\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x4a\x65\x4a\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x42\x84\x00\x64\x43\x65\x39\x65\x3d\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x4c\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x44\x84\x00\x64\x45\x65\x4c\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x50\x65\x50\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x51\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x50\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x46\x84\x00\x64\x47\x65\x4c\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x52\x65\x52\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x52\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static void _collections_abc_do_patchups(void) { +} + +PyObject * +_Py_get__collections_abc_toplevel(void) +{ + _collections_abc_do_patchups(); + return Py_NewRef((PyObject *) &_collections_abc_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[62]; + } +_sitebuiltins_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 61, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x75\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x73\x69\x74\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x74\x6f\x20\x61\x64\x64\x20\x63\x75\x73\x74\x6f\x6d\x20\x62\x75\x69\x6c\x74\x69\x6e\x73\x2e\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_Quitter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Quitter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_eof = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "eof", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_sitebuiltins_toplevel_consts_3_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(name), + & const_str_eof._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +_sitebuiltins_toplevel_consts_3_consts_1_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +_sitebuiltins_toplevel_consts_3_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Quitter.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +_sitebuiltins_toplevel_consts_3_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x14\x18\x88\x04\x8c\x09\xd8\x13\x16\x88\x04\x8c\x08\x88\x08\x88\x08", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_sitebuiltins_toplevel_consts_3_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(name), + & const_str_eof._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(34) +_sitebuiltins_toplevel_consts_3_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_3_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 14, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _sitebuiltins_toplevel_consts_3_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & _sitebuiltins_toplevel_consts_3_consts_1_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_3_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +_sitebuiltins_toplevel_consts_3_consts_2_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Use ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +_sitebuiltins_toplevel_consts_3_consts_2_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "() or ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +_sitebuiltins_toplevel_consts_3_consts_2_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " to exit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_sitebuiltins_toplevel_consts_3_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + & _sitebuiltins_toplevel_consts_3_consts_2_consts_1._ascii.ob_base, + & _sitebuiltins_toplevel_consts_3_consts_2_consts_2._ascii.ob_base, + & _sitebuiltins_toplevel_consts_3_consts_2_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +_sitebuiltins_toplevel_consts_3_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Quitter.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[28]; + } +_sitebuiltins_toplevel_consts_3_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 27, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\xd8\x2b\x2f\xac\x39\xa8\x39\xa8\x39\xb0\x64\xb4\x68\xb0\x68\xb0\x68\xd0\x0f\x3f\xd0\x08\x3f", +}; +static + struct _PyCode_DEF(40) +_sitebuiltins_toplevel_consts_3_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 20, + }, + .co_consts = & _sitebuiltins_toplevel_consts_3_consts_2_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_3_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 17, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & _sitebuiltins_toplevel_consts_3_consts_2_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_3_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x02\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x03\x9d\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_SystemExit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SystemExit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_sitebuiltins_toplevel_consts_3_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + &_Py_ID(stdin), + &_Py_ID(close), + & const_str_SystemExit._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +_sitebuiltins_toplevel_consts_3_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Quitter.__call__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[57]; + } +_sitebuiltins_toplevel_consts_3_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 56, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x03\x09\x11\xdd\x0c\x0f\x8c\x49\x8f\x4f\x8a\x4f\xd1\x0c\x1d\xd4\x0c\x1d\xd0\x0c\x1d\xd0\x0c\x1d\xf8\xf0\x02\x01\x09\x11\xd8\x0c\x10\x88\x44\xf8\xf8\xf8\xdd\x0e\x18\x98\x14\xd1\x0e\x1e\xd4\x0e\x1e\xd0\x08\x1e", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +_sitebuiltins_toplevel_consts_3_consts_4_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = "\x82\x1e\x21\x00\xa1\x02\x25\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_sitebuiltins_toplevel_consts_3_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(code), + }, + }, +}; +static + struct _PyCode_DEF(110) +_sitebuiltins_toplevel_consts_3_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 55, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_3_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & _sitebuiltins_toplevel_consts_3_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 19, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _sitebuiltins_toplevel_consts_3_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__call__), + .co_qualname = & _sitebuiltins_toplevel_consts_3_consts_4_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_3_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x07\x23\x00\x01\x00\x59\x00\x6e\x03\x78\x03\x59\x00\x77\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_sitebuiltins_toplevel_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_Quitter._ascii.ob_base, + & _sitebuiltins_toplevel_consts_3_consts_1.ob_base.ob_base, + & _sitebuiltins_toplevel_consts_3_consts_2.ob_base.ob_base, + Py_None, + & _sitebuiltins_toplevel_consts_3_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_sitebuiltins_toplevel_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__init__), + &_Py_ID(__repr__), + &_Py_ID(__call__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[74]; + } +_sitebuiltins_toplevel_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 73, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x06\x01\x05\x40\x01\xf0\x00\x01\x05\x40\x01\xf0\x00\x01\x05\x40\x01\xf0\x04\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f", +}; +static + struct _PyCode_DEF(34) +_sitebuiltins_toplevel_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & _sitebuiltins_toplevel_consts_3_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 13, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = & const_str_Quitter._ascii.ob_base, + .co_qualname = & const_str_Quitter._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x05\x64\x04\x84\x01\x5a\x05\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__Printer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[111]; + } +_sitebuiltins_toplevel_consts_5_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 110, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x70\x72\x6f\x6d\x70\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x74\x65\x78\x74\x2c\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x63\x6f\x6e\x74\x72\x69\x62\x75\x74\x6f\x72\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6e\x6f\x74\x69\x63\x65\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_4_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(path), + &_Py_ID(join), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +_sitebuiltins_toplevel_consts_5_consts_4_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer.__init__..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[79]; + } +_sitebuiltins_toplevel_consts_5_consts_4_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 78, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xd8\x20\x23\xd8\x2c\x31\xf0\x05\x02\x1c\x33\xf0\x00\x02\x1c\x33\xe0\x20\x28\xf0\x05\x00\x1d\x1f\x9c\x47\x9f\x4c\x9a\x4c\xa8\x13\xa8\x68\xd1\x1c\x37\xd4\x1c\x37\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_dir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_os = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "os", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_4_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_dir._ascii.ob_base, + &_Py_ID(filename), + & const_str_files._ascii.ob_base, + & const_str_os._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[6]; + } +_sitebuiltins_toplevel_consts_5_consts_4_consts_2_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 5, + }, + .ob_shash = -1, + .ob_sval = "\x20\x20\x20\x80\x80", +}; +static + struct _PyCode_DEF(80) +_sitebuiltins_toplevel_consts_5_consts_4_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 40, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 40, + .co_nlocalsplus = 5, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 2, + .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x02\x97\x00\x67\x00\x7c\x00\x5d\x22\x7d\x01\x89\x03\x44\x00\x5d\x1d\x7d\x02\x89\x04\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x91\x03\x8c\x1e\x8c\x23\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & _sitebuiltins_toplevel_consts_5_consts_4_consts_2.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__Printer__name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer__name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__Printer__data = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer__data", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__Printer__lines = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer__lines", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str__Printer__filenames = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer__filenames", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str__Printer__name._ascii.ob_base, + & const_str__Printer__data._ascii.ob_base, + & const_str__Printer__lines._ascii.ob_base, + & const_str__Printer__filenames._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_sitebuiltins_toplevel_consts_5_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[89]; + } +_sitebuiltins_toplevel_consts_5_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 88, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xf8\x80\x00\xd8\x08\x11\x88\x09\x88\x09\x88\x09\xd8\x16\x1a\x88\x04\x8c\x0b\xd8\x16\x1a\x88\x04\x8c\x0b\xd8\x17\x1b\x88\x04\x8c\x0c\xf0\x02\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xd8\x27\x2b\xf0\x03\x02\x1c\x33\xf1\x00\x02\x1c\x33\xf4\x00\x02\x1c\x33\x88\x04\xd4\x08\x18\xd0\x08\x18\xd0\x08\x18", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_dirs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dirs", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(name), + & const_str_data._ascii.ob_base, + & const_str_files._ascii.ob_base, + & const_str_dirs._ascii.ob_base, + & const_str_os._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[7]; + } +_sitebuiltins_toplevel_consts_5_consts_4_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 6, + }, + .ob_shash = -1, + .ob_sval = " ` @", +}; +static + struct _PyCode_DEF(100) +_sitebuiltins_toplevel_consts_5_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 50, + }, + .co_consts = & _sitebuiltins_toplevel_consts_5_consts_4_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_5_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 5, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 35, + .co_nlocalsplus = 6, + .co_nlocals = 5, + .co_nplaincellvars = 1, + .co_ncellvars = 2, + .co_nfreevars = 0, + .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _sitebuiltins_toplevel_consts_5_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_4_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x03\x87\x05\x97\x00\x64\x01\x64\x00\x6c\x00\x8a\x05\x7c\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x88\x03\x88\x05\x66\x02\x64\x02\x84\x08\x7c\x04\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +_sitebuiltins_toplevel_consts_5_consts_5_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + &_Py_STR(utf_8), + & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_split = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "split", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__Printer__linecnt = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer__linecnt", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str__Printer__lines._ascii.ob_base, + & const_str__Printer__filenames._ascii.ob_base, + &_Py_ID(open), + &_Py_ID(read), + & const_str_OSError._ascii.ob_base, + & const_str__Printer__data._ascii.ob_base, + & const_str_split._ascii.ob_base, + &_Py_ID(len), + & const_str__Printer__linecnt._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str___setup = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__setup", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +_sitebuiltins_toplevel_consts_5_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer.__setup", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[252]; + } +_sitebuiltins_toplevel_consts_5_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 251, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0f\x8c\x3c\xf0\x00\x01\x09\x13\xd8\x0c\x12\x88\x46\xd8\x0f\x13\x88\x04\xd8\x18\x1c\xd4\x18\x28\xf0\x00\x06\x09\x15\xf0\x00\x06\x09\x15\x88\x48\xf0\x02\x05\x0d\x15\xdd\x15\x19\x98\x28\xa8\x57\xd0\x15\x35\xd1\x15\x35\xd4\x15\x35\xf0\x00\x01\x11\x25\xb8\x12\xd8\x1b\x1d\x9f\x37\x9a\x37\x99\x39\x9c\x39\x90\x44\xf0\x03\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf1\x00\x01\x11\x25\xf4\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf8\xf8\xf8\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xe0\x10\x15\x90\x05\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xe0\x0f\x13\xf0\x00\x01\x09\x1f\xd8\x13\x17\x94\x3b\x88\x44\xd8\x17\x1b\x97\x7a\x92\x7a\xa0\x24\xd1\x17\x27\xd4\x17\x27\x88\x04\x8c\x0c\xdd\x19\x1c\x98\x54\x9c\x5c\xd1\x19\x2a\xd4\x19\x2a\x88\x04\x8c\x0e\x88\x0e\x88\x0e", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[52]; + } +_sitebuiltins_toplevel_consts_5_consts_5_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 51, + }, + .ob_shash = -1, + .ob_sval = "\x96\x11\x41\x15\x02\xa7\x15\x41\x08\x05\xbc\x0c\x41\x15\x02\xc1\x08\x04\x41\x0c\x09\xc1\x0c\x03\x41\x15\x02\xc1\x0f\x01\x41\x0c\x09\xc1\x10\x03\x41\x15\x02\xc1\x15\x0a\x41\x22\x05\xc1\x21\x01\x41\x22\x05", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_data._ascii.ob_base, + &_Py_ID(filename), + & const_str_fp._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(326) +_sitebuiltins_toplevel_consts_5_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 163, + }, + .co_consts = & _sitebuiltins_toplevel_consts_5_consts_5_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_5_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = & _sitebuiltins_toplevel_consts_5_consts_5_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 44, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = & const_str___setup._ascii.ob_base, + .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_5_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x00\x53\x00\x64\x00\x7d\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x51\x7d\x02\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x03\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x01\x00\x6e\x10\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x8c\x4e\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x73\x07\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +_sitebuiltins_toplevel_consts_5_consts_6_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Type %s() to see the full %s text", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_6_consts_2._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__Printer__setup = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer__setup", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_MAXLINES = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MAXLINES", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str__Printer__setup._ascii.ob_base, + &_Py_ID(len), + & const_str__Printer__lines._ascii.ob_base, + & const_str_MAXLINES._ascii.ob_base, + &_Py_ID(join), + & const_str__Printer__name._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_sitebuiltins_toplevel_consts_5_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[79]; + } +_sitebuiltins_toplevel_consts_5_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 78, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\xdd\x0b\x0e\x88\x74\x8c\x7c\xd1\x0b\x1c\xd4\x0b\x1c\xa0\x04\xa4\x0d\xd2\x0b\x2d\xd0\x0b\x2d\xd8\x13\x17\x97\x39\x92\x39\x98\x54\x9c\x5c\xd1\x13\x2a\xd4\x13\x2a\xd0\x0c\x2a\xe0\x13\x36\xb8\x34\xbc\x3b\xb8\x2e\xc8\x11\xd1\x3a\x4a\xd1\x13\x4b\xd0\x0c\x4b", +}; +static + struct _PyCode_DEF(180) +_sitebuiltins_toplevel_consts_5_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 90, + }, + .co_consts = & _sitebuiltins_toplevel_consts_5_consts_6_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_5_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 60, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_6_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x01\x00\x00\x00\x00\x72\x1a\x64\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x02\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x66\x01\x64\x03\x7a\x05\x00\x00\x7a\x06\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[49]; + } +_sitebuiltins_toplevel_consts_5_consts_7_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 48, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Hit Return for more, or q (and Return) to quit: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_q = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "q", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_7_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_STR(empty), + & const_str_q._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + Py_None, + & _sitebuiltins_toplevel_consts_5_consts_7_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & _sitebuiltins_toplevel_consts_5_consts_7_consts_4._object.ob_base.ob_base, + & const_str_q._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__Printer__setup._ascii.ob_base, + & const_str_range._ascii.ob_base, + & const_str_MAXLINES._ascii.ob_base, + & const_str_print._ascii.ob_base, + & const_str__Printer__lines._ascii.ob_base, + & const_str_input._ascii.ob_base, + & const_str_IndexError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +_sitebuiltins_toplevel_consts_5_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Printer.__call__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[216]; + } +_sitebuiltins_toplevel_consts_5_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 215, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\xd8\x11\x43\x88\x06\xd8\x11\x12\x88\x06\xf0\x02\x0e\x09\x1a\xf0\x02\x0d\x0d\x1a\xdd\x19\x1e\x98\x76\xa0\x76\xb0\x04\xb4\x0d\xd1\x27\x3d\xd1\x19\x3e\xd4\x19\x3e\xf0\x00\x01\x11\x2b\xf0\x00\x01\x11\x2b\x90\x41\xdd\x14\x19\x98\x24\x9c\x2c\xa0\x71\x9c\x2f\xd1\x14\x2a\xd4\x14\x2a\xd0\x14\x2a\xd0\x14\x2a\xf0\x03\x01\x11\x2b\xf0\x0a\x00\x11\x17\x98\x24\x9c\x2d\xd1\x10\x27\x90\x06\xd8\x16\x1a\x90\x03\xd8\x16\x19\x90\x6b\xdd\x1a\x1f\xa0\x06\x99\x2d\x9c\x2d\x90\x43\xd8\x17\x1a\xa0\x29\xd0\x17\x2b\xd0\x17\x2b\xd8\x1e\x22\x98\x03\xf0\x07\x00\x17\x1a\x90\x6b\xf0\x08\x00\x14\x17\x98\x23\x92\x3a\x90\x3a\xd8\x14\x19\x90\x45\xf0\x03\x00\x14\x1e\xf8\xf5\x13\x00\x14\x1e\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xd8\x10\x15\x90\x05\x90\x05\xf0\x03\x01\x0d\x16\xf8\xf8\xf8\xf0\x09\x0e\x09\x1a", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +_sitebuiltins_toplevel_consts_5_consts_7_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\x9b\x35\x41\x3f\x00\xc1\x3f\x0a\x42\x0d\x03\xc2\x0c\x01\x42\x0d\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_prompt = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "prompt", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_7_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_prompt._ascii.ob_base, + &_Py_ID(lineno), + & const_str_i._ascii.ob_base, + & const_str_key._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(290) +_sitebuiltins_toplevel_consts_5_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 145, + }, + .co_consts = & _sitebuiltins_toplevel_consts_5_consts_7_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_5_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = & _sitebuiltins_toplevel_consts_5_consts_7_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 67, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__call__), + .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_7_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7d\x01\x64\x02\x7d\x02\x09\x00\x09\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1c\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x1d\x09\x00\x7c\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x7d\x02\x64\x00\x7d\x04\x7c\x04\x80\x17\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x64\x04\x76\x01\x72\x02\x64\x00\x7d\x04\x7c\x04\xae\x17\x7c\x04\x64\x05\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x00\x53\x00\x6e\x11\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x8c\x77", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts_9 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + (PyObject *)& _Py_SINGLETON(tuple_empty), + (PyObject *)& _Py_SINGLETON(tuple_empty), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +_sitebuiltins_toplevel_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & const_str__Printer._ascii.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 23], + (PyObject *)& _Py_SINGLETON(tuple_empty), + & _sitebuiltins_toplevel_consts_5_consts_4.ob_base.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_5.ob_base.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_6.ob_base.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_7.ob_base.ob_base, + Py_None, + & _sitebuiltins_toplevel_consts_5_consts_9._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_sitebuiltins_toplevel_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + & const_str_MAXLINES._ascii.ob_base, + &_Py_ID(__init__), + & const_str__Printer__setup._ascii.ob_base, + &_Py_ID(__repr__), + &_Py_ID(__call__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[106]; + } +_sitebuiltins_toplevel_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 105, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x01\x05\x2e\xf0\x00\x01\x05\x2e\xf0\x06\x00\x10\x12\x80\x48\xf0\x04\x07\x05\x33\xf0\x00\x07\x05\x33\xf0\x00\x07\x05\x33\xf0\x00\x07\x05\x33\xf0\x12\x0e\x05\x2b\xf0\x00\x0e\x05\x2b\xf0\x00\x0e\x05\x2b\xf0\x20\x05\x05\x4c\x01\xf0\x00\x05\x05\x4c\x01\xf0\x00\x05\x05\x4c\x01\xf0\x0e\x12\x05\x1a\xf0\x00\x12\x05\x1a\xf0\x00\x12\x05\x1a\xf0\x00\x12\x05\x1a\xf0\x00\x12\x05\x1a", +}; +static + struct _PyCode_DEF(48) +_sitebuiltins_toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & _sitebuiltins_toplevel_consts_5_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 29, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = & const_str__Printer._ascii.ob_base, + .co_qualname = & const_str__Printer._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x09\x64\x04\x84\x01\x5a\x05\x64\x05\x84\x00\x5a\x06\x64\x06\x84\x00\x5a\x07\x64\x07\x84\x00\x5a\x08\x64\x08\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__Helper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Helper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[308]; + } +_sitebuiltins_toplevel_consts_7_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 307, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x69\x6e\x20\x27\x68\x65\x6c\x70\x27\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x61\x20\x77\x72\x61\x70\x70\x65\x72\x20\x61\x72\x6f\x75\x6e\x64\x20\x70\x79\x64\x6f\x63\x2e\x68\x65\x6c\x70\x20\x74\x68\x61\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x20\x68\x65\x6c\x70\x66\x75\x6c\x20\x6d\x65\x73\x73\x61\x67\x65\x0a\x20\x20\x20\x20\x77\x68\x65\x6e\x20\x27\x68\x65\x6c\x70\x27\x20\x69\x73\x20\x74\x79\x70\x65\x64\x20\x61\x74\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x70\x72\x6f\x6d\x70\x74\x2e\x0a\x0a\x20\x20\x20\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x68\x65\x6c\x70\x28\x29\x20\x61\x74\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x70\x72\x6f\x6d\x70\x74\x20\x73\x74\x61\x72\x74\x73\x20\x61\x6e\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x68\x65\x6c\x70\x20\x73\x65\x73\x73\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x68\x65\x6c\x70\x28\x74\x68\x69\x6e\x67\x29\x20\x70\x72\x69\x6e\x74\x73\x20\x68\x65\x6c\x70\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x70\x79\x74\x68\x6f\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x27\x74\x68\x69\x6e\x67\x27\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[73]; + } +_sitebuiltins_toplevel_consts_7_consts_2_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 72, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Type help() for interactive help, or help(object) for help about object.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_sitebuiltins_toplevel_consts_7_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & _sitebuiltins_toplevel_consts_7_consts_2_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +_sitebuiltins_toplevel_consts_7_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Helper.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +_sitebuiltins_toplevel_consts_7_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x01\x10\x38\xf0\x00\x01\x10\x38", +}; +static + struct _PyCode_DEF(6) +_sitebuiltins_toplevel_consts_7_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & _sitebuiltins_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 98, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & _sitebuiltins_toplevel_consts_7_consts_2_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_7_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_pydoc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pydoc", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_help = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "help", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +_sitebuiltins_toplevel_consts_7_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_pydoc._ascii.ob_base, + & const_str_help._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +_sitebuiltins_toplevel_consts_7_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Helper.__call__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[35]; + } +_sitebuiltins_toplevel_consts_7_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 34, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x14\x88\x0c\x88\x0c\x88\x0c\xd8\x0f\x19\x88\x75\x8c\x7a\x98\x34\xd0\x0f\x28\xa0\x34\xd0\x0f\x28\xd0\x0f\x28\xd0\x08\x28", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +_sitebuiltins_toplevel_consts_7_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_kwds._ascii.ob_base, + & const_str_pydoc._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(36) +_sitebuiltins_toplevel_consts_7_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_7_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 15, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 101, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _sitebuiltins_toplevel_consts_7_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_ID(__call__), + .co_qualname = & _sitebuiltins_toplevel_consts_7_consts_3_qualname._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_7_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x64\x00\x6c\x00\x7d\x03\x02\x00\x7c\x03\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x69\x00\x7c\x02\xa4\x01\x8e\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +_sitebuiltins_toplevel_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__Helper._ascii.ob_base, + & _sitebuiltins_toplevel_consts_7_consts_1._ascii.ob_base, + & _sitebuiltins_toplevel_consts_7_consts_2.ob_base.ob_base, + & _sitebuiltins_toplevel_consts_7_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_sitebuiltins_toplevel_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__repr__), + &_Py_ID(__call__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[61]; + } +_sitebuiltins_toplevel_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 60, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x07\x05\x08\xf0\x00\x07\x05\x08\xf0\x12\x02\x05\x38\xf0\x00\x02\x05\x38\xf0\x00\x02\x05\x38\xf0\x06\x02\x05\x29\xf0\x00\x02\x05\x29\xf0\x00\x02\x05\x29\xf0\x00\x02\x05\x29\xf0\x00\x02\x05\x29", +}; +static + struct _PyCode_DEF(30) +_sitebuiltins_toplevel_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 15, + }, + .co_consts = & _sitebuiltins_toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 88, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = & const_str__Helper._ascii.ob_base, + .co_qualname = & const_str__Helper._ascii.ob_base, + .co_linetable = & _sitebuiltins_toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +_sitebuiltins_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & _sitebuiltins_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & _sitebuiltins_toplevel_consts_3.ob_base.ob_base, + & const_str_Quitter._ascii.ob_base, + & _sitebuiltins_toplevel_consts_5.ob_base.ob_base, + & const_str__Printer._ascii.ob_base, + & _sitebuiltins_toplevel_consts_7.ob_base.ob_base, + & const_str__Helper._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +_sitebuiltins_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_sys._ascii.ob_base, + & const_str_object._ascii.ob_base, + & const_str_Quitter._ascii.ob_base, + & const_str__Printer._ascii.ob_base, + & const_str__Helper._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[164]; + } +_sitebuiltins_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 163, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x02\x01\x04\xf0\x00\x02\x01\x04\xf0\x14\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xf0\x04\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\x88\x66\xf1\x00\x0d\x01\x1f\xf4\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x20\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\x88\x76\xf1\x00\x38\x01\x1a\xf4\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x76\x01\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\x88\x66\xf1\x00\x0f\x01\x29\xf4\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29", +}; +static + struct _PyCode_DEF(102) +_sitebuiltins_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 51, + }, + .co_consts = & _sitebuiltins_toplevel_consts._object.ob_base.ob_base, + .co_names = & _sitebuiltins_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & _sitebuiltins_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x02\x00\x47\x00\x64\x03\x84\x00\x64\x04\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x03\x02\x00\x47\x00\x64\x05\x84\x00\x64\x06\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x04\x02\x00\x47\x00\x64\x07\x84\x00\x64\x08\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void _sitebuiltins_do_patchups(void) { +} + +PyObject * +_Py_get__sitebuiltins_toplevel(void) +{ + _sitebuiltins_do_patchups(); + return Py_NewRef((PyObject *) &_sitebuiltins_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[153]; + } +genericpath_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 152, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x50\x61\x74\x68\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x63\x6f\x6d\x6d\x6f\x6e\x20\x74\x6f\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x6f\x6e\x65\x20\x4f\x53\x0a\x44\x6f\x20\x6e\x6f\x74\x20\x75\x73\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2e\x20\x20\x54\x68\x65\x20\x4f\x53\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x6d\x70\x6f\x72\x74\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x0a\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x74\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x2e\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_commonprefix = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "commonprefix", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_exists = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exists", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_getatime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getatime", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_getctime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getctime", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_getmtime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getmtime", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_getsize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getsize", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_isdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "isdir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_isfile = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "isfile", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_samefile = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "samefile", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_sameopenfile = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sameopenfile", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_samestat = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "samestat", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +genericpath_toplevel_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_commonprefix._ascii.ob_base, + & const_str_exists._ascii.ob_base, + & const_str_getatime._ascii.ob_base, + & const_str_getctime._ascii.ob_base, + & const_str_getmtime._ascii.ob_base, + & const_str_getsize._ascii.ob_base, + & const_str_isdir._ascii.ob_base, + & const_str_isfile._ascii.ob_base, + & const_str_samefile._ascii.ob_base, + & const_str_sameopenfile._ascii.ob_base, + & const_str_samestat._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[69]; + } +genericpath_toplevel_consts_4_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 68, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether a path exists. Returns False for broken symbolic links", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +genericpath_toplevel_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & genericpath_toplevel_consts_4_consts_0._ascii.ob_base, + Py_False, + Py_True, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +genericpath_toplevel_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +genericpath_toplevel_consts_4_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[67]; + } +genericpath_toplevel_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 66, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x08\x0a\x8c\x07\x90\x04\x89\x0d\x8c\x0d\x88\x0d\x88\x0d\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe0\x0b\x0f\x88\x34", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +genericpath_toplevel_consts_4_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x14\x17\x00\x97\x11\x2c\x03\xab\x01\x2c\x03", +}; +static + struct _PyCode_DEF(98) +genericpath_toplevel_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & genericpath_toplevel_consts_4_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 16, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_exists._ascii.ob_base, + .co_qualname = & const_str_exists._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +genericpath_toplevel_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether a path is a regular file", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +genericpath_toplevel_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & genericpath_toplevel_consts_5_consts_0._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISREG = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISREG", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +genericpath_toplevel_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_S_ISREG._ascii.ob_base, + & const_str_st_mode._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[80]; + } +genericpath_toplevel_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 79, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x57\x90\x54\x89\x5d\x8c\x5d\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +genericpath_toplevel_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(path), + & const_str_st._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(144) +genericpath_toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 72, + }, + .co_consts = & genericpath_toplevel_consts_5_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 27, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_isfile._ascii.ob_base, + .co_qualname = & const_str_isfile._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[61]; + } +genericpath_toplevel_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 60, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return true if the pathname refers to an existing directory.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +genericpath_toplevel_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & genericpath_toplevel_consts_6_consts_0._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISDIR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISDIR", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +genericpath_toplevel_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_S_ISDIR._ascii.ob_base, + & const_str_st_mode._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[80]; + } +genericpath_toplevel_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 79, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x57\x90\x51\x89\x5a\x8c\x5a\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +genericpath_toplevel_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_s._ascii.ob_base, + & const_str_st._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(144) +genericpath_toplevel_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 72, + }, + .co_consts = & genericpath_toplevel_consts_6_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 39, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_isdir._ascii.ob_base, + .co_qualname = & const_str_isdir._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[50]; + } +genericpath_toplevel_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 49, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the size of a file, reported by os.stat().", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +genericpath_toplevel_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & genericpath_toplevel_consts_7_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +genericpath_toplevel_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_st_size._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[22]; + } +genericpath_toplevel_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 21, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x37\x90\x38\xd1\x0b\x1c\xd4\x0b\x1c\xd4\x0b\x24\xd0\x04\x24", +}; +static + struct _PyCode_DEF(52) +genericpath_toplevel_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & genericpath_toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 48, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_getsize._ascii.ob_base, + .co_qualname = & const_str_getsize._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[68]; + } +genericpath_toplevel_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 67, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the last modification time of a file, reported by os.stat().", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +genericpath_toplevel_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & genericpath_toplevel_consts_8_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +genericpath_toplevel_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_st_mtime._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[22]; + } +genericpath_toplevel_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 21, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x37\x90\x38\xd1\x0b\x1c\xd4\x0b\x1c\xd4\x0b\x25\xd0\x04\x25", +}; +static + struct _PyCode_DEF(52) +genericpath_toplevel_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & genericpath_toplevel_consts_8_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 53, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_getmtime._ascii.ob_base, + .co_qualname = & const_str_getmtime._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[62]; + } +genericpath_toplevel_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 61, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the last access time of a file, reported by os.stat().", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +genericpath_toplevel_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & genericpath_toplevel_consts_9_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_st_atime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "st_atime", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +genericpath_toplevel_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_st_atime._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(52) +genericpath_toplevel_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & genericpath_toplevel_consts_9_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 58, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_getatime._ascii.ob_base, + .co_qualname = & const_str_getatime._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[66]; + } +genericpath_toplevel_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 65, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the metadata change time of a file, reported by os.stat().", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +genericpath_toplevel_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & genericpath_toplevel_consts_10_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_st_ctime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "st_ctime", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +genericpath_toplevel_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_st_ctime._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(52) +genericpath_toplevel_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & genericpath_toplevel_consts_10_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 63, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_getctime._ascii.ob_base, + .co_qualname = & const_str_getctime._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[72]; + } +genericpath_toplevel_consts_11_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 71, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Given a list of pathnames, returns the longest common leading component", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +genericpath_toplevel_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & genericpath_toplevel_consts_11_consts_0._ascii.ob_base, + &_Py_STR(empty), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_min = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "min", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_enumerate = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "enumerate", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +genericpath_toplevel_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_list._ascii.ob_base, + & const_str_tuple._ascii.ob_base, + & const_str_map._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str_min._ascii.ob_base, + & const_str_max._ascii.ob_base, + & const_str_enumerate._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[153]; + } +genericpath_toplevel_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 152, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0c\xd0\x04\x17\x90\x52\x90\x52\xf5\x0a\x00\x0c\x16\x90\x61\x98\x01\x94\x64\x9d\x54\xa5\x35\x98\x4d\xd1\x0b\x2a\xd4\x0b\x2a\xf0\x00\x01\x05\x25\xdd\x0c\x11\x95\x23\x95\x62\x94\x69\xa0\x11\xd1\x12\x23\xd4\x12\x23\xd1\x0c\x24\xd4\x0c\x24\x88\x01\xdd\x09\x0c\x88\x51\x89\x16\x8c\x16\x80\x42\xdd\x09\x0c\x88\x51\x89\x16\x8c\x16\x80\x42\xdd\x10\x19\x98\x22\x91\x0d\x94\x0d\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\x89\x04\x88\x01\x88\x31\xd8\x0b\x0c\x90\x02\x90\x31\x94\x05\x8a\x3a\x88\x3a\xd8\x13\x15\x90\x62\x90\x71\x90\x62\x94\x36\x88\x4d\x88\x4d\x88\x4d\xf0\x03\x00\x0c\x16\xe0\x0b\x0d\x80\x49", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_s1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "s1", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_s2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "s2", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +genericpath_toplevel_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_m._ascii.ob_base, + & const_str_s1._ascii.ob_base, + & const_str_s2._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_c._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(310) +genericpath_toplevel_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 155, + }, + .co_consts = & genericpath_toplevel_consts_11_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 69, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_commonprefix._ascii.ob_base, + .co_qualname = & const_str_commonprefix._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x73\x02\x64\x01\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x27\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1d\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x7c\x02\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0c\x7c\x01\x64\x03\x7c\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x01\x00\x53\x00\x8c\x1e\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[54]; + } +genericpath_toplevel_consts_12_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 53, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether two stat buffers reference the same file", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +genericpath_toplevel_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & genericpath_toplevel_consts_12_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_st_ino = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "st_ino", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_st_dev = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "st_dev", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +genericpath_toplevel_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_st_ino._ascii.ob_base, + & const_str_st_dev._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[37]; + } +genericpath_toplevel_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 36, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0c\x0e\x8c\x49\x98\x12\x9c\x19\xd2\x0c\x22\xf0\x00\x01\x0d\x23\xd8\x0c\x0e\x8c\x49\x98\x12\x9c\x19\xd2\x0c\x22\xf0\x03\x01\x05\x24", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +genericpath_toplevel_consts_12_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_s1._ascii.ob_base, + & const_str_s2._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(66) +genericpath_toplevel_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & genericpath_toplevel_consts_12_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 87, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_12_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_samestat._ascii.ob_base, + .co_qualname = & const_str_samestat._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x0f\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[214]; + } +genericpath_toplevel_consts_13_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 213, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x54\x65\x73\x74\x20\x77\x68\x65\x74\x68\x65\x72\x20\x74\x77\x6f\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x73\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x61\x63\x74\x75\x61\x6c\x20\x66\x69\x6c\x65\x20\x6f\x72\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x64\x65\x76\x69\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x61\x6e\x64\x20\x69\x2d\x6e\x6f\x64\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x72\x61\x69\x73\x65\x73\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x66\x20\x61\x6e\x20\x6f\x73\x2e\x73\x74\x61\x74\x28\x29\x20\x63\x61\x6c\x6c\x20\x6f\x6e\x20\x65\x69\x74\x68\x65\x72\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x66\x61\x69\x6c\x73\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +genericpath_toplevel_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & genericpath_toplevel_consts_13_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +genericpath_toplevel_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_samestat._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[47]; + } +genericpath_toplevel_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 46, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0c\x00\x0a\x0c\x8c\x17\x90\x12\x89\x1b\x8c\x1b\x80\x42\xdd\x09\x0b\x8c\x17\x90\x12\x89\x1b\x8c\x1b\x80\x42\xdd\x0b\x13\x90\x42\x98\x02\xd1\x0b\x1b\xd4\x0b\x1b\xd0\x04\x1b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_f1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "f1", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_f2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "f2", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +genericpath_toplevel_consts_13_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_f1._ascii.ob_base, + & const_str_f2._ascii.ob_base, + & const_str_s1._ascii.ob_base, + & const_str_s2._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(114) +genericpath_toplevel_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 57, + }, + .co_consts = & genericpath_toplevel_consts_13_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 94, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_13_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_samefile._ascii.ob_base, + .co_qualname = & const_str_samefile._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[59]; + } +genericpath_toplevel_consts_14_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 58, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether two open file objects reference the same file", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +genericpath_toplevel_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & genericpath_toplevel_consts_14_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_fstat = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fstat", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +genericpath_toplevel_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fstat._ascii.ob_base, + & const_str_samestat._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[45]; + } +genericpath_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 44, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x09\x0b\x8c\x18\x90\x23\x89\x1d\x8c\x1d\x80\x42\xdd\x09\x0b\x8c\x18\x90\x23\x89\x1d\x8c\x1d\x80\x42\xdd\x0b\x13\x90\x42\x98\x02\xd1\x0b\x1b\xd4\x0b\x1b\xd0\x04\x1b", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_fp1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fp1", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_fp2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fp2", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +genericpath_toplevel_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_fp1._ascii.ob_base, + & const_str_fp2._ascii.ob_base, + & const_str_s1._ascii.ob_base, + & const_str_s2._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(114) +genericpath_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 57, + }, + .co_consts = & genericpath_toplevel_consts_14_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 107, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str_sameopenfile._ascii.ob_base, + .co_qualname = & const_str_sameopenfile._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[165]; + } +genericpath_toplevel_consts_15_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 164, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x70\x6c\x69\x74\x20\x74\x68\x65\x20\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x66\x72\x6f\x6d\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x69\x73\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x6f\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x65\x6e\x64\x2c\x20\x69\x67\x6e\x6f\x72\x69\x6e\x67\x0a\x20\x20\x20\x20\x6c\x65\x61\x64\x69\x6e\x67\x20\x64\x6f\x74\x73\x2e\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x22\x28\x72\x6f\x6f\x74\x2c\x20\x65\x78\x74\x29\x22\x3b\x20\x65\x78\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +genericpath_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & genericpath_toplevel_consts_15_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +genericpath_toplevel_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_rfind._ascii.ob_base, + & const_str_max._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__splitext = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_splitext", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[198]; + } +genericpath_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 197, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0e\x00\x10\x11\x8f\x77\x8a\x77\x90\x73\x89\x7c\x8c\x7c\x80\x48\xd8\x07\x0d\xf0\x00\x02\x05\x2e\xd8\x16\x17\x97\x67\x92\x67\x98\x66\x91\x6f\x94\x6f\x88\x0b\xdd\x13\x16\x90\x78\xa0\x1b\xd1\x13\x2d\xd4\x13\x2d\x88\x08\xe0\x0f\x10\x8f\x77\x8a\x77\x90\x76\x89\x7f\x8c\x7f\x80\x48\xd8\x07\x0f\x90\x28\xd2\x07\x1a\xd0\x07\x1a\xe0\x18\x20\xa0\x31\x99\x0c\x88\x0d\xd8\x0e\x1b\x98\x68\xd2\x0e\x26\xd0\x0e\x26\xd8\x0f\x10\x90\x1d\x98\x7d\xa8\x51\x99\x7f\xd0\x11\x2e\xd4\x0f\x2f\xb0\x36\xd2\x0f\x39\xd0\x0f\x39\xd8\x17\x18\x98\x19\x98\x28\x98\x19\x94\x7c\xa0\x51\xa0\x78\xa0\x79\xa0\x79\xa4\x5c\xd0\x17\x31\xd0\x10\x31\xd8\x0c\x19\x98\x51\xd1\x0c\x1e\x88\x4d\xf0\x07\x00\x0f\x1c\x98\x68\xd2\x0e\x26\xd0\x0e\x26\xf0\x0a\x00\x0c\x0d\x88\x61\x90\x02\x90\x11\x90\x02\x8c\x65\x88\x38\x80\x4f", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_altsep = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "altsep", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_extsep = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "extsep", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_sepIndex = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sepIndex", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_altsepIndex = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "altsepIndex", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_dotIndex = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dotIndex", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_filenameIndex = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "filenameIndex", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +genericpath_toplevel_consts_15_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + & const_str_sepIndex._ascii.ob_base, + & const_str_altsepIndex._ascii.ob_base, + & const_str_dotIndex._ascii.ob_base, + & const_str_filenameIndex._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(318) +genericpath_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 159, + }, + .co_consts = & genericpath_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 121, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str__splitext._ascii.ob_base, + .co_qualname = & const_str__splitext._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x72\x25\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x7c\x04\x6b\x04\x00\x00\x00\x00\x72\x3b\x7c\x04\x64\x01\x7a\x00\x00\x00\x7d\x07\x7c\x07\x7c\x06\x6b\x00\x00\x00\x00\x00\x72\x30\x7c\x00\x7c\x07\x7c\x07\x64\x01\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x6b\x03\x00\x00\x00\x00\x72\x14\x7c\x00\x64\x02\x7c\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x06\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x07\x64\x01\x7a\x0d\x00\x00\x7d\x07\x7c\x07\x7c\x06\x6b\x00\x00\x00\x00\x00\xb0\x30\x7c\x00\x7c\x00\x64\x02\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[60]; + } +genericpath_toplevel_consts_16_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 59, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "() argument must be str, bytes, or os.PathLike object, not ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[47]; + } +genericpath_toplevel_consts_16_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 46, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Can't mix strings and bytes in path components", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +genericpath_toplevel_consts_16_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + Py_False, + Py_True, + & genericpath_toplevel_consts_16_consts_3._ascii.ob_base, + & genericpath_toplevel_consts_16_consts_4._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +genericpath_toplevel_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_str._ascii.ob_base, + & const_str_bytes._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + &_Py_ID(__class__), + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__check_arg_types = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_check_arg_types", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[198]; + } +genericpath_toplevel_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 197, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x18\x1d\xd0\x04\x1d\x80\x46\x88\x58\xd8\x0d\x11\xf0\x00\x07\x05\x5b\x01\xf0\x00\x07\x05\x5b\x01\x88\x01\xdd\x0b\x15\x90\x61\x9d\x13\xd1\x0b\x1d\xd4\x0b\x1d\xf0\x00\x06\x09\x5b\x01\xd8\x15\x19\x88\x46\x88\x46\xdd\x0d\x17\x98\x01\x9d\x35\xd1\x0d\x21\xd4\x0d\x21\xf0\x00\x04\x09\x5b\x01\xd8\x17\x1b\x88\x48\x88\x48\xe5\x12\x1b\x98\x78\xf0\x00\x01\x1d\x50\x01\xf0\x00\x01\x1d\x50\x01\xd8\x37\x38\xb4\x7b\xd4\x37\x4b\xf0\x03\x01\x1d\x50\x01\xf0\x00\x01\x1d\x50\x01\xf1\x00\x01\x13\x51\x01\xf4\x00\x01\x13\x51\x01\xd8\x56\x5a\xf0\x03\x01\x0d\x5b\x01\xe0\x07\x0d\xf0\x00\x01\x05\x54\x01\x90\x28\xf0\x00\x01\x05\x54\x01\xdd\x0e\x17\xd0\x18\x48\xd1\x0e\x49\xd4\x0e\x49\xc8\x74\xd0\x08\x53\xf0\x03\x01\x05\x54\x01\xf0\x00\x01\x05\x54\x01\xf0\x00\x01\x05\x54\x01\xf0\x00\x01\x05\x54\x01", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_funcname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "funcname", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_hasstr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "hasstr", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_hasbytes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "hasbytes", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +genericpath_toplevel_consts_16_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_funcname._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_hasstr._ascii.ob_base, + & const_str_hasbytes._ascii.ob_base, + & const_str_s._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(224) +genericpath_toplevel_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 112, + }, + .co_consts = & genericpath_toplevel_consts_16_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 144, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = & const_str__check_arg_types._ascii.ob_base, + .co_qualname = & const_str__check_arg_types._ascii.ob_base, + .co_linetable = & genericpath_toplevel_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x78\x01\x7d\x02\x7d\x03\x7c\x01\x44\x00\x5d\x50\x7d\x04\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x02\x7d\x02\x8c\x1a\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x02\x7d\x03\x8c\x32\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x9b\x00\x64\x03\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x7c\x02\x72\x12\x7c\x03\x72\x12\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x64\x00\x53\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +genericpath_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + & genericpath_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & genericpath_toplevel_consts_3._object.ob_base.ob_base, + & genericpath_toplevel_consts_4.ob_base.ob_base, + & genericpath_toplevel_consts_5.ob_base.ob_base, + & genericpath_toplevel_consts_6.ob_base.ob_base, + & genericpath_toplevel_consts_7.ob_base.ob_base, + & genericpath_toplevel_consts_8.ob_base.ob_base, + & genericpath_toplevel_consts_9.ob_base.ob_base, + & genericpath_toplevel_consts_10.ob_base.ob_base, + & genericpath_toplevel_consts_11.ob_base.ob_base, + & genericpath_toplevel_consts_12.ob_base.ob_base, + & genericpath_toplevel_consts_13.ob_base.ob_base, + & genericpath_toplevel_consts_14.ob_base.ob_base, + & genericpath_toplevel_consts_15.ob_base.ob_base, + & genericpath_toplevel_consts_16.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +genericpath_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_os._ascii.ob_base, + & const_str_stat._ascii.ob_base, + &_Py_ID(__all__), + & const_str_exists._ascii.ob_base, + & const_str_isfile._ascii.ob_base, + & const_str_isdir._ascii.ob_base, + & const_str_getsize._ascii.ob_base, + & const_str_getmtime._ascii.ob_base, + & const_str_getatime._ascii.ob_base, + & const_str_getctime._ascii.ob_base, + & const_str_commonprefix._ascii.ob_base, + & const_str_samestat._ascii.ob_base, + & const_str_samefile._ascii.ob_base, + & const_str_sameopenfile._ascii.ob_base, + & const_str__splitext._ascii.ob_base, + & const_str__check_arg_types._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[263]; + } +genericpath_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 262, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x04\x01\x04\xf0\x00\x04\x01\x04\xf0\x0a\x00\x01\x0a\x80\x09\x80\x09\x80\x09\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xf0\x04\x02\x0b\x17\xf0\x00\x02\x0b\x17\xf0\x00\x02\x0b\x17\x80\x07\xf0\x0e\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x16\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x18\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x12\x02\x01\x25\xf0\x00\x02\x01\x25\xf0\x00\x02\x01\x25\xf0\x0a\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x0a\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x0a\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x0c\x0e\x01\x0e\xf0\x00\x0e\x01\x0e\xf0\x00\x0e\x01\x0e\xf0\x24\x03\x01\x24\xf0\x00\x03\x01\x24\xf0\x00\x03\x01\x24\xf0\x0e\x08\x01\x1c\xf0\x00\x08\x01\x1c\xf0\x00\x08\x01\x1c\xf0\x1a\x04\x01\x1c\xf0\x00\x04\x01\x1c\xf0\x00\x04\x01\x1c\xf0\x1c\x15\x01\x14\xf0\x00\x15\x01\x14\xf0\x00\x15\x01\x14\xf0\x2e\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01", +}; +static + struct _PyCode_DEF(112) +genericpath_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 56, + }, + .co_consts = & genericpath_toplevel_consts._object.ob_base.ob_base, + .co_names = & genericpath_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & genericpath_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x67\x00\x64\x03\xa2\x01\x5a\x03\x64\x04\x84\x00\x5a\x04\x64\x05\x84\x00\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x84\x00\x5a\x09\x64\x0a\x84\x00\x5a\x0a\x64\x0b\x84\x00\x5a\x0b\x64\x0c\x84\x00\x5a\x0c\x64\x0d\x84\x00\x5a\x0d\x64\x0e\x84\x00\x5a\x0e\x64\x0f\x84\x00\x5a\x0f\x64\x10\x84\x00\x5a\x10\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void genericpath_do_patchups(void) { +} + +PyObject * +_Py_get_genericpath_toplevel(void) +{ + genericpath_do_patchups(); + return Py_NewRef((PyObject *) &genericpath_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[145]; + } +ntpath_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 144, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x6f\x6d\x6d\x6f\x6e\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x6d\x61\x6e\x69\x70\x75\x6c\x61\x74\x69\x6f\x6e\x73\x2c\x20\x57\x69\x6e\x64\x6f\x77\x73\x4e\x54\x2f\x39\x35\x20\x76\x65\x72\x73\x69\x6f\x6e\x2e\x0a\x0a\x49\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x20\x61\x6e\x64\x20\x72\x65\x66\x65\x72\x20\x74\x6f\x20\x74\x68\x69\x73\x0a\x6d\x6f\x64\x75\x6c\x65\x20\x61\x73\x20\x6f\x73\x2e\x70\x61\x74\x68\x2e\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +ntpath_toplevel_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "..", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +ntpath_toplevel_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ";", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +ntpath_toplevel_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ".;C:\\bin", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_nul = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "nul", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_normcase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "normcase", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_isabs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "isabs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_splitdrive = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "splitdrive", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_splitext = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "splitext", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_islink = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "islink", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_lexists = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lexists", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_ismount = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ismount", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_expanduser = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "expanduser", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_expandvars = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "expandvars", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_normpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "normpath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_abspath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abspath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_curdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "curdir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_pardir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pardir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_pathsep = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pathsep", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_defpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "defpath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_devnull = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "devnull", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_realpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "realpath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +const_str_supports_unicode_filenames = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "supports_unicode_filenames", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_relpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "relpath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_commonpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "commonpath", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[38]; + }_object; + } +ntpath_toplevel_consts_11 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 38, + }, + .ob_item = { + & const_str_normcase._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + &_Py_ID(join), + & const_str_splitdrive._ascii.ob_base, + & const_str_split._ascii.ob_base, + & const_str_splitext._ascii.ob_base, + & const_str_basename._ascii.ob_base, + & const_str_dirname._ascii.ob_base, + & const_str_commonprefix._ascii.ob_base, + & const_str_getsize._ascii.ob_base, + & const_str_getmtime._ascii.ob_base, + & const_str_getatime._ascii.ob_base, + & const_str_getctime._ascii.ob_base, + & const_str_islink._ascii.ob_base, + & const_str_exists._ascii.ob_base, + & const_str_lexists._ascii.ob_base, + & const_str_isdir._ascii.ob_base, + & const_str_isfile._ascii.ob_base, + & const_str_ismount._ascii.ob_base, + & const_str_expanduser._ascii.ob_base, + & const_str_expandvars._ascii.ob_base, + & const_str_normpath._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + & const_str_devnull._ascii.ob_base, + & const_str_realpath._ascii.ob_base, + & const_str_supports_unicode_filenames._ascii.ob_base, + & const_str_relpath._ascii.ob_base, + & const_str_samefile._ascii.ob_base, + & const_str_sameopenfile._ascii.ob_base, + & const_str_samestat._ascii.ob_base, + & const_str_commonpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +ntpath_toplevel_consts_12_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "\\/", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +ntpath_toplevel_consts_12_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\\/", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & ntpath_toplevel_consts_12_consts_1.ob_base.ob_base, + & ntpath_toplevel_consts_12_consts_2._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +ntpath_toplevel_consts_12_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__get_bothseps = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_bothseps", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[31]; + } +ntpath_toplevel_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 30, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x15\xd8\x0f\x15\x88\x76\xe0\x0f\x14\x88\x75", +}; +static + struct _PyCode_DEF(52) +ntpath_toplevel_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & ntpath_toplevel_consts_12_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 35, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str__get_bothseps._ascii.ob_base, + .co_qualname = & const_str__get_bothseps._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_LCMapStringEx = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LCMapStringEx", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_LOCALE_NAME_INVARIANT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LOCALE_NAME_INVARIANT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_LCMAP_LOWERCASE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LCMAP_LOWERCASE", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_13 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_LCMapStringEx._ascii.ob_base, + & const_str_LOCALE_NAME_INVARIANT._ascii.ob_base, + & const_str_LCMAP_LOWERCASE._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[111]; + } +ntpath_toplevel_consts_14_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 110, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x4e\x6f\x72\x6d\x61\x6c\x69\x7a\x65\x20\x63\x61\x73\x65\x20\x6f\x66\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4d\x61\x6b\x65\x73\x20\x61\x6c\x6c\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x73\x20\x6c\x6f\x77\x65\x72\x63\x61\x73\x65\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x73\x6c\x61\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_surrogateescape = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "surrogateescape", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +ntpath_toplevel_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & ntpath_toplevel_consts_14_consts_0._ascii.ob_base, + & const_str_surrogateescape._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_getfilesystemencoding = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getfilesystemencoding", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__LCMapStringEx = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_LCMapStringEx", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str__LOCALE_NAME_INVARIANT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_LOCALE_NAME_INVARIANT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__LCMAP_LOWERCASE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_LCMAP_LOWERCASE", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +ntpath_toplevel_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_getfilesystemencoding._ascii.ob_base, + &_Py_ID(decode), + &_Py_ID(replace), + & const_str__LCMapStringEx._ascii.ob_base, + & const_str__LOCALE_NAME_INVARIANT._ascii.ob_base, + & const_str__LCMAP_LOWERCASE._ascii.ob_base, + &_Py_ID(encode), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[184]; + } +ntpath_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 183, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x0d\x0f\x8c\x49\x90\x61\x89\x4c\x8c\x4c\x88\x01\xd8\x0f\x10\xf0\x00\x01\x09\x15\xd8\x13\x14\x88\x48\xdd\x0b\x15\x90\x61\x9d\x15\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x09\x09\x38\xdd\x17\x1a\xd4\x17\x30\xd1\x17\x32\xd4\x17\x32\x88\x48\xd8\x10\x11\x97\x08\x92\x08\x98\x18\xd0\x23\x34\xd1\x10\x35\xd4\x10\x35\xd7\x10\x3d\xd2\x10\x3d\xb8\x63\xc0\x34\xd1\x10\x48\xd4\x10\x48\x88\x41\xdd\x10\x1e\xd5\x1f\x35\xdd\x1f\x2f\xb0\x11\xf1\x03\x01\x11\x34\xf4\x00\x01\x11\x34\x88\x41\xe0\x13\x14\x97\x38\x92\x38\x98\x48\xd0\x26\x37\xd1\x13\x38\xd4\x13\x38\xd0\x0c\x38\xe5\x13\x21\xd5\x22\x38\xdd\x22\x32\xd8\x22\x23\xa7\x29\xa2\x29\xa8\x43\xb0\x14\xd1\x22\x36\xd4\x22\x36\xf1\x05\x02\x14\x38\xf4\x00\x02\x14\x38\xf0\x00\x02\x0d\x38", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_s._ascii.ob_base, + &_Py_ID(encoding), + }, + }, +}; +static + struct _PyCode_DEF(406) +ntpath_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 203, + }, + .co_consts = & ntpath_toplevel_consts_14_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 51, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_normcase._ascii.ob_base, + .co_qualname = & const_str_normcase._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x73\x02\x7c\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x6e\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & ntpath_toplevel_consts_14_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_fsencode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fsencode", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_fsdecode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fsdecode", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +ntpath_toplevel_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + &_Py_ID(replace), + & const_str_lower._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[121]; + } +ntpath_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 120, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x0d\x0f\x8c\x49\x90\x61\x89\x4c\x8c\x4c\x88\x01\xdd\x0b\x15\x90\x61\x9d\x15\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x01\x09\x4a\x01\xdd\x13\x15\x94\x3b\x9d\x72\x9c\x7b\xa8\x31\x99\x7e\x9c\x7e\xd7\x1f\x35\xd2\x1f\x35\xb0\x63\xb8\x34\xd1\x1f\x40\xd4\x1f\x40\xd7\x1f\x46\xd2\x1f\x46\xd1\x1f\x48\xd4\x1f\x48\xd1\x13\x49\xd4\x13\x49\xd0\x0c\x49\xd8\x0f\x10\x8f\x79\x8a\x79\x98\x13\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xd7\x0f\x29\xd2\x0f\x29\xd1\x0f\x2b\xd4\x0f\x2b\xd0\x08\x2b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_15_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_s._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(316) +ntpath_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 158, + }, + .co_consts = & ntpath_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 70, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_normcase._ascii.ob_base, + .co_qualname = & const_str_normcase._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x4c\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +ntpath_toplevel_consts_16_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether a path is absolute", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +ntpath_toplevel_consts_16_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = ":\\", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +ntpath_toplevel_consts_16_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ":\\", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +ntpath_toplevel_consts_16_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & ntpath_toplevel_consts_16_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[92]), + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + & ntpath_toplevel_consts_16_consts_3.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & ntpath_toplevel_consts_16_consts_6._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_True, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +ntpath_toplevel_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + &_Py_ID(replace), + & const_str_startswith._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[146]; + } +ntpath_toplevel_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 145, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x11\x90\x21\x95\x55\xd1\x07\x1b\xd4\x07\x1b\xf0\x00\x07\x05\x1a\xd8\x0e\x13\x88\x03\xd8\x11\x15\x88\x06\xd8\x14\x1a\x88\x09\x88\x09\xe0\x0e\x12\x88\x03\xd8\x11\x14\x88\x06\xd8\x14\x19\x88\x09\xd8\x08\x09\x88\x22\x88\x31\x88\x22\x8c\x05\x8f\x0d\x8a\x0d\x90\x66\x98\x63\xd1\x08\x22\xd4\x08\x22\x80\x41\xf0\x06\x00\x08\x09\x87\x7c\x82\x7c\x90\x43\xd1\x07\x18\xd4\x07\x18\xf0\x00\x01\x05\x14\x98\x41\x9f\x4c\x9a\x4c\xa8\x19\xb0\x41\xd1\x1c\x36\xd4\x1c\x36\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\xd8\x0b\x10\x88\x35", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_colon_sep = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "colon_sep", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +ntpath_toplevel_consts_16_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_s._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_colon_sep._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(264) +ntpath_toplevel_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 132, + }, + .co_consts = & ntpath_toplevel_consts_16_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 87, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_isabs._ascii.ob_base, + .co_qualname = & const_str_isabs._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x01\x64\x02\x7d\x02\x64\x03\x7d\x03\x6e\x06\x64\x04\x7d\x01\x64\x05\x7d\x02\x64\x06\x7d\x03\x7c\x00\x64\x07\x64\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x16\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x0a\x53\x00\x64\x0b\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +ntpath_toplevel_consts_17_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + Py_None, + (PyObject *)&_Py_SINGLETON(bytes_characters[92]), + & ntpath_toplevel_consts_12_consts_1.ob_base.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[58]), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & ntpath_toplevel_consts_12_consts_2._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_8_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + &_Py_ID(join), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_BytesWarning = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "BytesWarning", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_genericpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "genericpath", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +ntpath_toplevel_consts_17_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_splitdrive._ascii.ob_base, + & const_str_map._ascii.ob_base, + & const_str_lower._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_BytesWarning._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + & const_str__check_arg_types._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[458]; + } +ntpath_toplevel_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 457, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x14\xd8\x0e\x13\x88\x03\xd8\x0f\x15\x88\x04\xd8\x10\x14\x88\x05\x88\x05\xe0\x0e\x12\x88\x03\xd8\x0f\x14\x88\x04\xd8\x10\x13\x88\x05\xf0\x02\x1f\x05\x0e\xd8\x0f\x14\xf0\x00\x01\x09\x1b\xd8\x0c\x10\x90\x12\x90\x21\x90\x12\x8c\x48\x90\x73\x89\x4e\x88\x4e\xdd\x24\x2e\xa8\x74\xd1\x24\x34\xd4\x24\x34\xd1\x08\x21\x88\x0c\x90\x6b\xdd\x11\x14\x95\x52\x94\x59\xa0\x05\xd1\x11\x26\xd4\x11\x26\xf0\x00\x13\x09\x2f\xf0\x00\x13\x09\x2f\x88\x41\xdd\x1e\x28\xa8\x11\x99\x6d\x9c\x6d\x89\x4f\x88\x47\x90\x56\xd8\x0f\x15\xf0\x00\x0d\x0d\x27\x98\x26\xa0\x11\x9c\x29\xa0\x74\xd0\x1a\x2b\xd0\x1a\x2b\xe0\x13\x1a\xf0\x00\x01\x11\x2b\xa0\x2c\xf0\x00\x01\x11\x2b\xd8\x23\x2a\x90\x4c\xd8\x1e\x24\x90\x0b\xd8\x10\x18\xd8\x11\x18\xf0\x00\x07\x0d\x27\x98\x57\xa8\x0c\xd2\x1d\x34\xd0\x1d\x34\xd8\x13\x1a\x97\x3d\x92\x3d\x91\x3f\x94\x3f\xa0\x6c\xd7\x26\x38\xd2\x26\x38\xd1\x26\x3a\xd4\x26\x3a\xd2\x13\x3a\xd0\x13\x3a\xe0\x23\x2a\x90\x4c\xd8\x22\x28\x90\x4b\xd8\x14\x1c\xe0\x1f\x26\x90\x0c\xe0\x0f\x1a\xf0\x00\x01\x0d\x30\x98\x7b\xa8\x32\x9c\x7f\xb0\x64\xd0\x1f\x3a\xd0\x1f\x3a\xd8\x1e\x29\xa8\x43\xd1\x1e\x2f\x90\x0b\xd8\x1a\x25\xa8\x06\xd1\x1a\x2e\x88\x4b\x88\x4b\xe0\x0c\x17\xf0\x00\x02\x09\x34\x98\x4b\xa8\x01\x9c\x4e\xb0\x24\xd0\x1c\x36\xd0\x1c\x36\xd8\x0c\x18\xf0\x03\x00\x1d\x37\xd8\x1d\x29\xa8\x22\xa8\x23\xa8\x23\xd4\x1d\x2e\xb0\x25\xd2\x1d\x37\xd0\x1d\x37\xd8\x13\x1f\xa0\x23\xd1\x13\x25\xa8\x0b\xd1\x13\x33\xd0\x0c\x33\xd8\x0f\x1b\x98\x6b\xd1\x0f\x29\xd0\x08\x29\xf8\xdd\x0c\x15\x95\x7e\xa5\x7c\xd0\x0b\x34\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x56\xa8\x54\xd0\x08\x3a\xb0\x45\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +ntpath_toplevel_consts_17_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xb8\x43\x17\x44\x15\x00\xc4\x10\x04\x44\x15\x00\xc4\x15\x2c\x45\x01\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_paths = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "paths", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_seps = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "seps", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_colon = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "colon", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_result_drive = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "result_drive", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_result_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "result_path", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_p_drive = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "p_drive", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_p_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "p_path", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +ntpath_toplevel_consts_17_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(path), + & const_str_paths._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_seps._ascii.ob_base, + & const_str_colon._ascii.ob_base, + & const_str_result_drive._ascii.ob_base, + & const_str_result_path._ascii.ob_base, + & const_str_p._ascii.ob_base, + & const_str_p_drive._ascii.ob_base, + & const_str_p_path._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(648) +ntpath_toplevel_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 324, + }, + .co_consts = & ntpath_toplevel_consts_17_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_17_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_17_exceptiontable.ob_base.ob_base, + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 107, + .co_nlocalsplus = 10, + .co_nlocals = 10, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_ID(join), + .co_qualname = &_Py_ID(join), + .co_linetable = & ntpath_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x02\x64\x02\x7d\x03\x64\x03\x7d\x04\x6e\x06\x64\x04\x7d\x02\x64\x05\x7d\x03\x64\x06\x7d\x04\x09\x00\x7c\x01\x73\x0d\x7c\x00\x64\x00\x64\x07\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7a\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x05\x7d\x06\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x78\x7d\x07\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x08\x7d\x09\x7c\x09\x72\x13\x7c\x09\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x76\x00\x72\x09\x7c\x08\x73\x02\x7c\x05\x73\x02\x7c\x08\x7d\x05\x7c\x09\x7d\x06\x8c\x29\x7c\x08\x72\x37\x7c\x08\x7c\x05\x6b\x03\x00\x00\x00\x00\x72\x31\x7c\x08\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x05\x7c\x08\x7d\x05\x7c\x09\x7d\x06\x8c\x60\x7c\x08\x7d\x05\x7c\x06\x72\x0f\x7c\x06\x64\x08\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x76\x01\x72\x05\x7c\x06\x7c\x02\x7a\x00\x00\x00\x7d\x06\x7c\x06\x7c\x09\x7a\x00\x00\x00\x7d\x06\x8c\x79\x7c\x06\x72\x22\x7c\x06\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x76\x01\x72\x18\x7c\x05\x72\x16\x7c\x05\x64\x08\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x03\x00\x00\x00\x00\x72\x08\x7c\x05\x7c\x02\x7a\x00\x00\x00\x7c\x06\x7a\x00\x00\x00\x53\x00\x7c\x05\x7c\x06\x7a\x00\x00\x00\x53\x00\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x15\x01\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x00\x67\x02\x7c\x01\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[731]; + } +ntpath_toplevel_consts_18_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 730, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x69\x6e\x74\x6f\x20\x64\x72\x69\x76\x65\x2f\x55\x4e\x43\x20\x73\x68\x61\x72\x65\x70\x6f\x69\x6e\x74\x20\x61\x6e\x64\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x70\x61\x74\x68\x20\x73\x70\x65\x63\x69\x66\x69\x65\x72\x73\x2e\x0a\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x32\x2d\x74\x75\x70\x6c\x65\x20\x28\x64\x72\x69\x76\x65\x5f\x6f\x72\x5f\x75\x6e\x63\x2c\x20\x70\x61\x74\x68\x29\x3b\x20\x65\x69\x74\x68\x65\x72\x20\x70\x61\x72\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x79\x6f\x75\x20\x61\x73\x73\x69\x67\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x73\x75\x6c\x74\x20\x3d\x20\x73\x70\x6c\x69\x74\x64\x72\x69\x76\x65\x28\x70\x29\x0a\x20\x20\x20\x20\x49\x74\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x74\x72\x75\x65\x20\x74\x68\x61\x74\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x73\x75\x6c\x74\x5b\x30\x5d\x20\x2b\x20\x72\x65\x73\x75\x6c\x74\x5b\x31\x5d\x20\x3d\x3d\x20\x70\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x64\x20\x61\x20\x64\x72\x69\x76\x65\x20\x6c\x65\x74\x74\x65\x72\x2c\x20\x64\x72\x69\x76\x65\x5f\x6f\x72\x5f\x75\x6e\x63\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x0a\x20\x20\x20\x20\x75\x70\x20\x74\x6f\x20\x61\x6e\x64\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x6e\x2e\x20\x20\x65\x2e\x67\x2e\x20\x73\x70\x6c\x69\x74\x64\x72\x69\x76\x65\x28\x22\x63\x3a\x2f\x64\x69\x72\x22\x29\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x28\x22\x63\x3a\x22\x2c\x20\x22\x2f\x64\x69\x72\x22\x29\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x64\x20\x61\x20\x55\x4e\x43\x20\x70\x61\x74\x68\x2c\x20\x74\x68\x65\x20\x64\x72\x69\x76\x65\x5f\x6f\x72\x5f\x75\x6e\x63\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x74\x68\x65\x20\x68\x6f\x73\x74\x20\x6e\x61\x6d\x65\x0a\x20\x20\x20\x20\x61\x6e\x64\x20\x73\x68\x61\x72\x65\x20\x75\x70\x20\x74\x6f\x20\x62\x75\x74\x20\x6e\x6f\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x66\x6f\x75\x72\x74\x68\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x2e\x0a\x20\x20\x20\x20\x65\x2e\x67\x2e\x20\x73\x70\x6c\x69\x74\x64\x72\x69\x76\x65\x28\x22\x2f\x2f\x68\x6f\x73\x74\x2f\x63\x6f\x6d\x70\x75\x74\x65\x72\x2f\x64\x69\x72\x22\x29\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x28\x22\x2f\x2f\x68\x6f\x73\x74\x2f\x63\x6f\x6d\x70\x75\x74\x65\x72\x22\x2c\x20\x22\x2f\x64\x69\x72\x22\x29\x0a\x0a\x20\x20\x20\x20\x50\x61\x74\x68\x73\x20\x63\x61\x6e\x6e\x6f\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x62\x6f\x74\x68\x20\x61\x20\x64\x72\x69\x76\x65\x20\x6c\x65\x74\x74\x65\x72\x20\x61\x6e\x64\x20\x61\x20\x55\x4e\x43\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +ntpath_toplevel_consts_18_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = "\\\\?\\UNC\\", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +ntpath_toplevel_consts_18_consts_9 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\\\\?\\UNC\\", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +ntpath_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & ntpath_toplevel_consts_18_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_Py_SINGLETON(bytes_characters[92]), + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_characters[58]), + & ntpath_toplevel_consts_18_consts_5.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_8_consts_0._ascii.ob_base, + & ntpath_toplevel_consts_18_consts_9._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_upper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "upper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_find = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "find", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +ntpath_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(len), + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + &_Py_ID(replace), + & const_str_upper._ascii.ob_base, + & const_str_find._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[357]; + } +ntpath_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 356, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x26\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x0a\x88\x31\x81\x76\x84\x76\x90\x11\x82\x7b\x80\x7b\xdd\x0b\x15\x90\x61\x9d\x15\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x09\x09\x28\xd8\x12\x17\x88\x43\xd8\x15\x19\x88\x46\xd8\x14\x18\x88\x45\xd8\x19\x28\x88\x4a\x88\x4a\xe0\x12\x16\x88\x43\xd8\x15\x18\x88\x46\xd8\x14\x17\x88\x45\xd8\x19\x27\x88\x4a\xd8\x10\x11\x97\x09\x92\x09\x98\x26\xa0\x23\xd1\x10\x26\xd4\x10\x26\x88\x05\xd8\x0b\x10\x90\x11\x90\x31\x90\x13\x8c\x3a\x98\x13\x98\x71\x99\x17\xd2\x0b\x20\xd0\x0b\x20\xf0\x06\x00\x1a\x1f\x98\x72\xa0\x01\x98\x72\x9c\x19\x9f\x1f\x9a\x1f\xd1\x19\x2a\xd4\x19\x2a\xa8\x6a\xd2\x19\x38\xd0\x19\x38\x90\x41\x90\x41\xb8\x61\x88\x45\xd8\x14\x19\x97\x4a\x92\x4a\x98\x73\xa0\x45\xd1\x14\x2a\xd4\x14\x2a\x88\x45\xd8\x0f\x14\x98\x02\x8a\x7b\x88\x7b\xd8\x17\x18\x98\x21\x98\x42\x98\x51\x98\x42\x9c\x25\x90\x78\x90\x0f\xd8\x15\x1a\x97\x5a\x92\x5a\xa0\x03\xa0\x55\xa8\x51\xa1\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x0f\x15\x98\x12\x8a\x7c\x88\x7c\xd8\x17\x18\x98\x21\x98\x42\x98\x51\x98\x42\x9c\x25\x90\x78\x90\x0f\xd8\x13\x14\x90\x57\x90\x66\x90\x57\x94\x3a\x98\x71\xa0\x16\xa0\x17\xa0\x17\x9c\x7a\xd0\x13\x29\xd0\x0c\x29\xd8\x0b\x10\x90\x11\x90\x31\x90\x13\x8c\x3a\x98\x15\xd2\x0b\x1e\xd0\x0b\x1e\xe0\x13\x14\x90\x52\x90\x61\x90\x52\x94\x35\x98\x21\x98\x41\x98\x42\x98\x42\x9c\x25\x90\x3c\xd0\x0c\x1f\xd8\x0b\x0c\x88\x52\x88\x61\x88\x52\x8c\x35\x90\x21\x88\x38\x80\x4f", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_unc_prefix = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "unc_prefix", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_normp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "normp", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_index2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "index2", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +ntpath_toplevel_consts_18_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_colon._ascii.ob_base, + & const_str_unc_prefix._ascii.ob_base, + & const_str_normp._ascii.ob_base, + & const_str_start._ascii.ob_base, + & const_str_index._ascii.ob_base, + & const_str_index2._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(604) +ntpath_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 302, + }, + .co_consts = & ntpath_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 154, + .co_nlocalsplus = 9, + .co_nlocals = 9, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_splitdrive._ascii.ob_base, + .co_qualname = & const_str_splitdrive._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x05\x00\x00\x00\x00\x72\xfa\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x09\x64\x02\x7d\x01\x64\x03\x7d\x02\x64\x04\x7d\x03\x64\x05\x7d\x04\x6e\x08\x64\x06\x7d\x01\x64\x07\x7d\x02\x64\x08\x7d\x03\x64\x09\x7d\x04\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x64\x0a\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x7a\x05\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x8b\x7c\x05\x64\x0b\x64\x0c\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x0c\x6e\x01\x64\x01\x7d\x06\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x64\x0d\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x00\x7c\x00\x64\x0b\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x07\x64\x0e\x7a\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x64\x0d\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x00\x7c\x00\x64\x0b\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x00\x64\x0b\x7c\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x08\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x05\x64\x0e\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x14\x7c\x00\x64\x0b\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x00\x64\x0b\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[127]; + } +ntpath_toplevel_consts_19_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 126, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x74\x75\x70\x6c\x65\x20\x28\x68\x65\x61\x64\x2c\x20\x74\x61\x69\x6c\x29\x20\x77\x68\x65\x72\x65\x20\x74\x61\x69\x6c\x20\x69\x73\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x66\x69\x6e\x61\x6c\x20\x73\x6c\x61\x73\x68\x2e\x0a\x20\x20\x20\x20\x45\x69\x74\x68\x65\x72\x20\x70\x61\x72\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_19_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & ntpath_toplevel_consts_19_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +ntpath_toplevel_consts_19_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str__get_bothseps._ascii.ob_base, + & const_str_splitdrive._ascii.ob_base, + &_Py_ID(len), + & const_str_rstrip._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[181]; + } +ntpath_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 180, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0b\x18\x98\x11\xd1\x0b\x1b\xd4\x0b\x1b\x80\x44\xdd\x0b\x15\x90\x61\x89\x3d\x8c\x3d\x81\x44\x80\x41\x80\x71\xe5\x08\x0b\x88\x41\x89\x06\x8c\x06\x80\x41\xd8\x0a\x0b\xf0\x00\x01\x05\x0f\x90\x01\x90\x21\x90\x41\x91\x23\x94\x06\x98\x64\xd0\x10\x22\xd0\x10\x22\xd8\x08\x09\x88\x51\x89\x06\x88\x01\xf0\x03\x00\x0b\x0c\xf0\x00\x01\x05\x0f\x90\x01\x90\x21\x90\x41\x91\x23\x94\x06\x98\x64\xd0\x10\x22\xd0\x10\x22\xe0\x11\x12\x90\x32\x90\x41\x90\x32\x94\x15\x98\x01\x98\x21\x98\x22\x98\x22\x9c\x05\x88\x24\x80\x44\xe0\x0b\x0f\x8f\x3b\x8a\x3b\x90\x74\xd1\x0b\x1c\xd4\x0b\x1c\xd0\x0b\x24\xa0\x04\x80\x44\xd8\x0b\x0c\x88\x74\x89\x38\x90\x54\x88\x3e\xd0\x04\x19", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +ntpath_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + & const_str_seps._ascii.ob_base, + & const_str_d._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_head._ascii.ob_base, + & const_str_tail._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(308) +ntpath_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 154, + }, + .co_consts = & ntpath_toplevel_consts_19_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 208, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_split._ascii.ob_base, + .co_qualname = & const_str_split._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x72\x21\x7c\x00\x7c\x03\x64\x01\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x01\x72\x14\x7c\x03\x64\x01\x7a\x17\x00\x00\x7d\x03\x7c\x03\x72\x0d\x7c\x00\x7c\x03\x64\x01\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x01\xb0\x14\x7c\x00\x64\x02\x7c\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7d\x04\x7c\x04\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x7c\x04\x7d\x04\x7c\x02\x7c\x04\x7a\x00\x00\x00\x7c\x05\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +ntpath_toplevel_consts_20_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + Py_None, + (PyObject *)&_Py_SINGLETON(bytes_characters[92]), + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + &_Py_STR(dot), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +ntpath_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + & const_str__splitext._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[80]; + } +ntpath_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 79, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x11\x90\x21\x95\x55\xd1\x07\x1b\xd4\x07\x1b\xf0\x00\x03\x05\x38\xdd\x0f\x1a\xd4\x0f\x24\xa0\x51\xa8\x05\xa8\x74\xb0\x54\xd1\x0f\x3a\xd4\x0f\x3a\xd0\x08\x3a\xe5\x0f\x1a\xd4\x0f\x24\xa0\x51\xa8\x04\xa8\x63\xb0\x33\xd1\x0f\x37\xd4\x0f\x37\xd0\x08\x37", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_20_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(176) +ntpath_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 88, + }, + .co_consts = & ntpath_toplevel_consts_20_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 231, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_splitext._ascii.ob_base, + .co_qualname = & const_str_splitext._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x17\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x02\x64\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x04\x64\x05\x64\x06\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[42]; + } +ntpath_toplevel_consts_21_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 41, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Returns the final component of a pathname", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_21_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & ntpath_toplevel_consts_21_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_21_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_split._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +ntpath_toplevel_consts_21_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x10\x90\x11\x89\x38\x8c\x38\x90\x41\x8c\x3b\xd0\x04\x16", +}; +static + struct _PyCode_DEF(44) +ntpath_toplevel_consts_21 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & ntpath_toplevel_consts_21_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 242, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_basename._ascii.ob_base, + .co_qualname = & const_str_basename._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_21_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[46]; + } +ntpath_toplevel_consts_22_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 45, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Returns the directory component of a pathname", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & ntpath_toplevel_consts_22_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct _PyCode_DEF(44) +ntpath_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & ntpath_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 249, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_dirname._ascii.ob_base, + .co_qualname = & const_str_dirname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_21_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[105]; + } +ntpath_toplevel_consts_23_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 104, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x54\x65\x73\x74\x20\x77\x68\x65\x74\x68\x65\x72\x20\x61\x20\x70\x61\x74\x68\x20\x69\x73\x20\x61\x20\x73\x79\x6d\x62\x6f\x6c\x69\x63\x20\x6c\x69\x6e\x6b\x2e\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x72\x65\x74\x75\x72\x6e\x20\x66\x61\x6c\x73\x65\x20\x66\x6f\x72\x20\x57\x69\x6e\x64\x6f\x77\x73\x20\x70\x72\x69\x6f\x72\x20\x74\x6f\x20\x36\x2e\x30\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_23_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & ntpath_toplevel_consts_23_consts_0._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_lstat = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lstat", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISLNK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISLNK", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +ntpath_toplevel_consts_23_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_lstat._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_S_ISLNK._ascii.ob_base, + & const_str_st_mode._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[82]; + } +ntpath_toplevel_consts_23_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 81, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xa5\x1e\xd0\x0b\x30\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +ntpath_toplevel_consts_23_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x14\x17\x00\x97\x17\x32\x03\xb1\x01\x32\x03", +}; +static + struct _PyCode_DEF(156) +ntpath_toplevel_consts_23 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 78, + }, + .co_consts = & ntpath_toplevel_consts_23_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_23_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 256, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_islink._ascii.ob_base, + .co_qualname = & const_str_islink._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_23_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x1e\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[68]; + } +ntpath_toplevel_consts_24_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 67, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether a path exists. Returns True for broken symbolic links", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & ntpath_toplevel_consts_24_consts_0._ascii.ob_base, + Py_False, + Py_True, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +ntpath_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_lstat._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[67]; + } +ntpath_toplevel_consts_24_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 66, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe0\x0b\x0f\x88\x34", +}; +static + struct _PyCode_DEF(98) +ntpath_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & ntpath_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 268, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_lexists._ascii.ob_base, + .co_qualname = & const_str_lexists._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_24_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str__getvolumepathname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_getvolumepathname", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_25 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__getvolumepathname._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[98]; + } +ntpath_toplevel_consts_26_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 97, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x54\x65\x73\x74\x20\x77\x68\x65\x74\x68\x65\x72\x20\x61\x20\x70\x61\x74\x68\x20\x69\x73\x20\x61\x20\x6d\x6f\x75\x6e\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x61\x20\x64\x72\x69\x76\x65\x20\x72\x6f\x6f\x74\x2c\x20\x74\x68\x65\x20\x72\x6f\x6f\x74\x20\x6f\x66\x20\x61\x0a\x20\x20\x20\x20\x73\x68\x61\x72\x65\x2c\x20\x6f\x72\x20\x61\x20\x6d\x6f\x75\x6e\x74\x65\x64\x20\x76\x6f\x6c\x75\x6d\x65\x29", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +ntpath_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & ntpath_toplevel_consts_26_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_True, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +ntpath_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str__get_bothseps._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str_splitdrive._ascii.ob_base, + & const_str__getvolumepathname._ascii.ob_base, + & const_str_rstrip._ascii.ob_base, + & const_str_casefold._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[201]; + } +ntpath_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 200, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x0b\x18\x98\x14\xd1\x0b\x1e\xd4\x0b\x1e\x80\x44\xdd\x0b\x12\x90\x34\x89\x3d\x8c\x3d\x80\x44\xdd\x11\x1b\x98\x44\xd1\x11\x21\xd4\x11\x21\x81\x4a\x80\x44\x88\x24\xd8\x07\x0b\xf0\x00\x01\x05\x2c\x90\x04\x90\x51\x94\x07\x98\x34\x90\x0f\x90\x0f\xd8\x14\x18\x90\x08\xd0\x0f\x2b\x98\x64\xa0\x64\x98\x6c\xd0\x08\x2b\xd8\x07\x0b\xf0\x00\x01\x05\x14\x90\x04\x98\x04\x90\x0c\x90\x0c\xd8\x0f\x13\x88\x74\xe5\x07\x19\xf0\x00\x05\x05\x15\xd8\x0c\x10\x8f\x4b\x8a\x4b\x98\x04\xd1\x0c\x1d\xd4\x0c\x1d\x88\x01\xdd\x0b\x1d\x98\x64\xd1\x0b\x23\xd4\x0b\x23\xd7\x0b\x2a\xd2\x0b\x2a\xa8\x34\xd1\x0b\x30\xd4\x0b\x30\x88\x01\xd8\x0f\x10\x8f\x7a\x8a\x7a\x89\x7c\x8c\x7c\x98\x71\x9f\x7a\x9a\x7a\x99\x7c\x9c\x7c\xd2\x0f\x2b\xd0\x08\x2b\xe0\x0f\x14\x88\x75", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_y = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "y", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +ntpath_toplevel_consts_26_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(path), + & const_str_seps._ascii.ob_base, + & const_str_root._ascii.ob_base, + & const_str_rest._ascii.ob_base, + & const_str_x._ascii.ob_base, + & const_str_y._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(404) +ntpath_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 202, + }, + .co_consts = & ntpath_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 290, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_ismount._ascii.ob_base, + .co_qualname = & const_str_ismount._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x72\x11\x7c\x02\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x00\x72\x07\x7c\x03\x0c\x00\x70\x03\x7c\x03\x7c\x01\x76\x00\x53\x00\x7c\x03\x72\x06\x7c\x03\x7c\x01\x76\x00\x72\x02\x64\x02\x53\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x61\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x04\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[77]; + } +ntpath_toplevel_consts_27_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 76, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x78\x70\x61\x6e\x64\x20\x7e\x20\x61\x6e\x64\x20\x7e\x75\x73\x65\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x73\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x75\x73\x65\x72\x20\x6f\x72\x20\x24\x48\x4f\x4d\x45\x20\x69\x73\x20\x75\x6e\x6b\x6e\x6f\x77\x6e\x2c\x20\x64\x6f\x20\x6e\x6f\x74\x68\x69\x6e\x67\x2e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +ntpath_toplevel_consts_27_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "~", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_USERPROFILE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "USERPROFILE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_HOMEPATH = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HOMEPATH", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_HOMEDRIVE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HOMEDRIVE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_USERNAME = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "USERNAME", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +ntpath_toplevel_consts_27_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & ntpath_toplevel_consts_27_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[126]), + & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & const_str_USERPROFILE._ascii.ob_base, + & const_str_HOMEPATH._ascii.ob_base, + & const_str_HOMEDRIVE._ascii.ob_base, + &_Py_STR(empty), + & const_str_USERNAME._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +ntpath_toplevel_consts_27_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + &_Py_ID(len), + & const_str__get_bothseps._ascii.ob_base, + & const_str_environ._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + &_Py_ID(join), + & const_str_fsdecode._ascii.ob_base, + &_Py_ID(get), + & const_str_basename._ascii.ob_base, + & const_str_dirname._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[471]; + } +ntpath_toplevel_consts_27_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 470, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x08\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x14\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x13\x88\x05\xd8\x0b\x0f\x8f\x3f\x8a\x3f\x98\x35\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x0b\xd8\x0b\x0c\x8d\x63\x90\x24\x89\x69\x8c\x69\x80\x71\x80\x41\xd8\x0a\x0b\x88\x61\x8a\x25\x88\x25\x90\x44\x98\x11\x94\x47\xa5\x3d\xb0\x14\xd1\x23\x36\xd4\x23\x36\xd0\x14\x36\xd0\x14\x36\xd8\x08\x09\x88\x51\x89\x06\x88\x01\xf0\x03\x00\x0b\x0c\x88\x61\x8a\x25\x88\x25\x90\x44\x98\x11\x94\x47\xa5\x3d\xb0\x14\xd1\x23\x36\xd4\x23\x36\xd0\x14\x36\xd0\x14\x36\xf0\x06\x00\x08\x15\x9d\x02\x9c\x0a\xd0\x07\x22\xd0\x07\x22\xdd\x13\x15\x94\x3a\x98\x6d\xd4\x13\x2c\x88\x08\x88\x08\xd8\x0d\x17\x9d\x32\x9c\x3a\xd0\x0d\x25\xd0\x0d\x25\xd8\x0f\x13\x88\x0b\xf0\x04\x03\x09\x17\xdd\x14\x16\x94\x4a\x98\x7b\xd4\x14\x2b\x88\x45\x88\x45\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x17\xf0\x00\x01\x09\x17\xf0\x00\x01\x09\x17\xd8\x14\x16\x88\x45\x88\x45\x88\x45\xf0\x03\x01\x09\x17\xf8\xf8\xf8\xe5\x13\x17\x98\x05\x9d\x72\x9c\x7a\xa8\x2a\xd4\x1f\x35\xd1\x13\x36\xd4\x13\x36\x88\x08\xe0\x07\x08\x88\x41\x82\x76\x80\x76\xd8\x16\x1a\x98\x31\x98\x51\x98\x33\x94\x69\x88\x0b\xdd\x0b\x15\x90\x6b\xa5\x35\xd1\x0b\x29\xd4\x0b\x29\xf0\x00\x01\x09\x33\xdd\x1a\x1c\x9c\x2b\xa0\x6b\xd1\x1a\x32\xd4\x1a\x32\x88\x4b\xdd\x17\x19\x94\x7a\x97\x7e\x92\x7e\xa0\x6a\xd1\x17\x31\xd4\x17\x31\x88\x0c\xe0\x0b\x16\x98\x2c\xd2\x0b\x26\xd0\x0b\x26\xf0\x0c\x00\x10\x1c\x9d\x78\xa8\x08\xd1\x1f\x31\xd4\x1f\x31\xd2\x0f\x31\xd0\x0f\x31\xd8\x17\x1b\x90\x0b\xdd\x17\x1b\x9d\x47\xa0\x48\xd1\x1c\x2d\xd4\x1c\x2d\xa8\x7b\xd1\x17\x3b\xd4\x17\x3b\x88\x48\xe5\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x01\x05\x29\xdd\x13\x15\x94\x3b\x98\x78\xd1\x13\x28\xd4\x13\x28\x88\x08\xe0\x0b\x13\x90\x64\x98\x31\x98\x32\x98\x32\x94\x68\xd1\x0b\x1e\xd0\x04\x1e", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +ntpath_toplevel_consts_27_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc3\x08\x12\x43\x1b\x00\xc3\x1b\x0c\x43\x2a\x03\xc3\x29\x01\x43\x2a\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_tilde = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "tilde", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_userhome = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "userhome", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_drive = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "drive", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_target_user = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "target_user", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_current_user = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "current_user", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +ntpath_toplevel_consts_27_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(path), + & const_str_tilde._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_n._ascii.ob_base, + & const_str_userhome._ascii.ob_base, + & const_str_drive._ascii.ob_base, + & const_str_target_user._ascii.ob_base, + & const_str_current_user._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(934) +ntpath_toplevel_consts_27 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 467, + }, + .co_consts = & ntpath_toplevel_consts_27_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_27_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_27_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 319, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_expanduser._ascii.ob_base, + .co_qualname = & const_str_expanduser._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_27_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x01\x7d\x01\x6e\x02\x64\x02\x7d\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x64\x03\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7d\x02\x7c\x02\x7c\x03\x6b\x00\x00\x00\x00\x00\x72\x39\x7c\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x22\x7c\x02\x64\x03\x7a\x0d\x00\x00\x7d\x02\x7c\x02\x7c\x03\x6b\x00\x00\x00\x00\x00\x72\x17\x7c\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\xb0\x22\x64\x04\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x13\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x56\x64\x05\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x12\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x07\x7d\x05\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x64\x03\x6b\x03\x00\x00\x00\x00\x72\x8a\x7c\x00\x64\x03\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x06\x7c\x07\x6b\x03\x00\x00\x00\x00\x72\x32\x7c\x07\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x7c\x00\x53\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x00\x7c\x02\x64\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[103]; + } +ntpath_toplevel_consts_28_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 102, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x78\x70\x61\x6e\x64\x20\x73\x68\x65\x6c\x6c\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x66\x6f\x72\x6d\x73\x20\x24\x76\x61\x72\x2c\x20\x24\x7b\x76\x61\x72\x7d\x20\x61\x6e\x64\x20\x25\x76\x61\x72\x25\x2e\x0a\x0a\x20\x20\x20\x20\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x61\x72\x65\x20\x6c\x65\x66\x74\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +ntpath_toplevel_consts_28_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_-", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_environb = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "environb", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +ntpath_toplevel_consts_28_consts_11 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "$", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +ntpath_toplevel_consts_28_consts_13 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "'", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[18]; + }_object; + } +ntpath_toplevel_consts_28_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 18, + }, + .ob_item = { + & ntpath_toplevel_consts_28_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[36]), + (PyObject *)&_Py_SINGLETON(bytes_characters[37]), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & ntpath_toplevel_consts_28_consts_5._ascii.ob_base, + & const_str_ascii._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[39]), + (PyObject *)&_Py_SINGLETON(bytes_characters[123]), + (PyObject *)&_Py_SINGLETON(bytes_characters[125]), + & const_str_environb._ascii.ob_base, + & ntpath_toplevel_consts_28_consts_11._ascii.ob_base, + &_Py_STR(percent), + & ntpath_toplevel_consts_28_consts_13._ascii.ob_base, + &_Py_STR(open_br), + &_Py_STR(close_br), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_string = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "string", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_ascii_letters = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ascii_letters", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_digits = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "digits", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +ntpath_toplevel_consts_28_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_string._ascii.ob_base, + & const_str_ascii_letters._ascii.ob_base, + & const_str_digits._ascii.ob_base, + &_Py_ID(getattr), + & const_str_environ._ascii.ob_base, + &_Py_ID(len), + & const_str_index._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[1317]; + } +ntpath_toplevel_consts_28_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 1316, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x08\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x15\x05\x1d\xd8\x0b\x0f\x90\x74\xd0\x0b\x1b\xd0\x0b\x1b\xa0\x04\xa8\x44\xd0\x20\x30\xd0\x20\x30\xd8\x13\x17\x88\x4b\xd8\x08\x15\x88\x0d\x88\x0d\x88\x0d\xdd\x13\x18\x98\x16\xd4\x19\x2d\xb0\x06\xb4\x0d\xd1\x19\x3d\xc0\x04\xd1\x19\x44\xc0\x67\xd1\x13\x4e\xd4\x13\x4e\x88\x08\xd8\x10\x15\x88\x05\xd8\x12\x16\x88\x07\xd8\x10\x14\x88\x05\xd8\x11\x15\x88\x06\xd8\x11\x15\x88\x06\xdd\x12\x19\x9d\x22\x98\x6a\xa8\x24\xd1\x12\x2f\xd4\x12\x2f\x88\x07\x88\x07\xe0\x0b\x0e\x90\x64\x88\x3f\x88\x3f\x98\x73\xa8\x24\x98\x7f\x98\x7f\xd8\x13\x17\x88\x4b\xd8\x08\x15\x88\x0d\x88\x0d\x88\x0d\xd8\x13\x19\xd4\x13\x27\xa8\x26\xac\x2d\xd1\x13\x37\xb8\x24\xd1\x13\x3e\x88\x08\xd8\x10\x14\x88\x05\xd8\x12\x15\x88\x07\xd8\x10\x13\x88\x05\xd8\x11\x14\x88\x06\xd8\x11\x14\x88\x06\xdd\x12\x14\x94\x2a\x88\x07\xd8\x0a\x0e\x88\x72\x90\x01\x88\x72\x8c\x28\x80\x43\xd8\x0c\x0d\x80\x45\xdd\x0e\x11\x90\x24\x89\x69\x8c\x69\x80\x47\xd8\x0a\x0f\x90\x27\x8a\x2f\x89\x2f\xd8\x0c\x10\x90\x15\x90\x75\x98\x51\x91\x77\x90\x1d\xd4\x0c\x1f\x88\x01\xd8\x0b\x0c\x90\x05\x8a\x3a\x88\x3a\xd8\x13\x17\x98\x05\xa0\x01\x99\x09\x98\x0a\x98\x0a\xd4\x13\x23\x88\x44\xdd\x16\x19\x98\x24\x91\x69\x94\x69\x88\x47\xf0\x02\x05\x0d\x24\xd8\x18\x1c\x9f\x0a\x9a\x0a\xa0\x31\x99\x0d\x9c\x0d\x90\x05\xd8\x10\x13\x90\x71\x98\x34\xa0\x0a\xa0\x15\xa8\x11\xa1\x19\xa0\x0a\xd4\x1b\x2b\xd1\x17\x2b\xd1\x10\x2b\x90\x03\x91\x03\xf8\xdd\x13\x1d\xf0\x00\x02\x0d\x24\xf0\x00\x02\x0d\x24\xf0\x00\x02\x0d\x24\xd8\x10\x13\x90\x71\x98\x34\x91\x78\x91\x0f\x90\x03\xd8\x18\x1f\xa0\x21\x99\x0b\x90\x05\x90\x05\x91\x05\xf0\x05\x02\x0d\x24\xf8\xf8\xf8\xf0\x06\x00\x0e\x0f\x90\x27\x8a\x5c\x88\x5c\xd8\x0f\x13\x90\x45\x98\x41\x91\x49\x98\x65\xa0\x61\x99\x69\xd0\x14\x27\xd4\x0f\x28\xa8\x47\xd2\x0f\x33\xd0\x0f\x33\xd8\x10\x13\x90\x71\x91\x08\x90\x03\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\x91\x05\xe0\x17\x1b\x98\x45\xa0\x21\x99\x47\x98\x48\x98\x48\x94\x7e\x90\x04\xdd\x1a\x1d\x98\x64\x99\x29\x9c\x29\x90\x07\xf0\x02\x0e\x11\x21\xd8\x1c\x20\x9f\x4a\x9a\x4a\xa0\x77\xd1\x1c\x2f\xd4\x1c\x2f\x90\x45\xf0\x0a\x00\x1b\x1f\x98\x76\xa0\x05\x98\x76\x9c\x2c\x90\x43\xf0\x02\x06\x15\x38\xd8\x1b\x22\x98\x3f\xdd\x24\x26\xa4\x4b\xb5\x02\xb4\x0a\xbd\x32\xbc\x3b\xc0\x73\xd1\x3b\x4b\xd4\x3b\x4b\xd4\x30\x4c\xd1\x24\x4d\xd4\x24\x4d\x98\x45\x98\x45\xe0\x24\x2b\xa8\x43\xa4\x4c\x98\x45\xf8\xf8\xdd\x1b\x23\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xd8\x20\x27\xa8\x23\xa1\x0d\xb0\x07\xd1\x20\x37\x98\x05\x98\x05\x98\x05\xf0\x03\x01\x15\x38\xf8\xf8\xf8\xe0\x14\x17\x98\x35\x91\x4c\x90\x43\x91\x43\xf8\xf5\x19\x00\x18\x22\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xd8\x14\x17\x98\x37\xa0\x54\x99\x3e\xd1\x14\x29\x90\x43\xd8\x1c\x23\xa0\x61\x99\x4b\x90\x45\x90\x45\x91\x45\xf0\x05\x02\x11\x28\xf8\xf8\xf8\xf0\x1a\x00\x0e\x0f\x90\x26\x8a\x5b\x89\x5b\xd8\x0f\x13\x90\x45\x98\x41\x91\x49\x98\x65\xa0\x61\x99\x69\xd0\x14\x27\xd4\x0f\x28\xa8\x46\xd2\x0f\x32\xd0\x0f\x32\xd8\x10\x13\x90\x71\x91\x08\x90\x03\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\x91\x05\xd8\x11\x15\x90\x65\x98\x61\x91\x69\xa0\x05\xa8\x01\xa1\x09\xd0\x16\x29\xd4\x11\x2a\xa8\x65\xd2\x11\x33\xd0\x11\x33\xd8\x17\x1b\x98\x45\xa0\x21\x99\x47\x98\x48\x98\x48\x94\x7e\x90\x04\xdd\x1a\x1d\x98\x64\x99\x29\x9c\x29\x90\x07\xf0\x02\x0e\x11\x21\xd8\x1c\x20\x9f\x4a\x9a\x4a\xa0\x76\xd1\x1c\x2e\xd4\x1c\x2e\x90\x45\xf0\x0a\x00\x1b\x1f\x98\x76\xa0\x05\x98\x76\x9c\x2c\x90\x43\xf0\x02\x06\x15\x3e\xd8\x1b\x22\x98\x3f\xdd\x24\x26\xa4\x4b\xb5\x02\xb4\x0a\xbd\x32\xbc\x3b\xc0\x73\xd1\x3b\x4b\xd4\x3b\x4b\xd4\x30\x4c\xd1\x24\x4d\xd4\x24\x4d\x98\x45\x98\x45\xe0\x24\x2b\xa8\x43\xa4\x4c\x98\x45\xf8\xf8\xdd\x1b\x23\xf0\x00\x01\x15\x3e\xf0\x00\x01\x15\x3e\xf0\x00\x01\x15\x3e\xd8\x20\x26\xa8\x15\xa1\x0e\xb0\x13\xd1\x20\x34\xb0\x76\xd1\x20\x3d\x98\x05\x98\x05\x98\x05\xf0\x03\x01\x15\x3e\xf8\xf8\xf8\xe0\x14\x17\x98\x35\x91\x4c\x90\x43\x90\x43\xf8\xf5\x19\x00\x18\x22\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xd8\x14\x17\x98\x36\xa0\x45\x99\x3e\xa8\x44\xd1\x1b\x30\xd1\x14\x30\x90\x43\xd8\x1c\x23\xa0\x61\x99\x4b\x90\x45\x90\x45\x90\x45\xf0\x05\x02\x11\x28\xf8\xf8\xf8\xf0\x1c\x00\x17\x1b\x98\x32\x98\x41\x98\x32\x94\x68\x90\x03\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\xd8\x14\x18\x98\x15\x98\x75\xa0\x71\x99\x79\x98\x1f\xd4\x14\x29\x90\x01\xd8\x16\x17\xf0\x00\x03\x11\x2e\x98\x41\xa0\x18\x98\x4d\x98\x4d\xd8\x14\x17\x98\x31\x91\x48\x90\x43\xd8\x14\x19\x98\x51\x91\x4a\x90\x45\xd8\x18\x1c\x98\x55\xa0\x35\xa8\x31\xa1\x39\x98\x5f\xd4\x18\x2d\x90\x41\xf0\x07\x00\x17\x18\xf0\x00\x03\x11\x2e\x98\x41\xa0\x18\x98\x4d\x98\x4d\xf0\x08\x06\x11\x29\xd8\x17\x1e\x90\x7f\xdd\x20\x22\xa4\x0b\xad\x42\xac\x4a\xb5\x72\xb4\x7b\xc0\x33\xd1\x37\x47\xd4\x37\x47\xd4\x2c\x48\xd1\x20\x49\xd4\x20\x49\x98\x05\x98\x05\xe0\x20\x27\xa8\x03\xa4\x0c\x98\x05\xf8\xf8\xdd\x17\x1f\xf0\x00\x01\x11\x29\xf0\x00\x01\x11\x29\xf0\x00\x01\x11\x29\xd8\x1c\x22\xa0\x53\x99\x4c\x90\x45\x90\x45\x90\x45\xf0\x03\x01\x11\x29\xf8\xf8\xf8\xe0\x10\x13\x90\x75\x91\x0c\x90\x03\xd8\x13\x14\xf0\x00\x01\x11\x1f\xd8\x14\x19\x98\x51\x91\x4a\x90\x45\xf8\xe0\x0c\x0f\x90\x31\x89\x48\x88\x43\xd8\x08\x0d\x90\x11\x89\x0a\x88\x05\xf0\x57\x02\x00\x0b\x10\x90\x27\x8a\x2f\x89\x2f\xf0\x58\x02\x00\x0c\x0f\x80\x4a", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[112]; + } +ntpath_toplevel_consts_28_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 111, + }, + .ob_shash = -1, + .ob_sval = "\xc4\x01\x28\x44\x2b\x00\xc4\x2b\x17\x45\x06\x03\xc5\x05\x01\x45\x06\x03\xc6\x0c\x15\x48\x0d\x00\xc6\x2c\x41\x01\x47\x2e\x00\xc7\x2e\x12\x48\x03\x03\xc8\x02\x01\x48\x03\x03\xc8\x0d\x17\x48\x28\x03\xc8\x27\x01\x48\x28\x03\xca\x03\x15\x4c\x06\x00\xca\x23\x41\x01\x4b\x25\x00\xcb\x25\x15\x4b\x3d\x03\xcb\x3c\x01\x4b\x3d\x03\xcc\x06\x1a\x4c\x23\x03\xcc\x22\x01\x4c\x23\x03\xcd\x26\x41\x01\x4e\x28\x00\xce\x28\x0f\x4e\x3a\x03\xce\x39\x01\x4e\x3a\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_varchars = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "varchars", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_quote = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "quote", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_percent = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "percent", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_brace = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "brace", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_rbrace = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "rbrace", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_dollar = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dollar", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_res = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "res", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_pathlen = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pathlen", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_var = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "var", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +ntpath_toplevel_consts_28_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + &_Py_ID(path), + & const_str_string._ascii.ob_base, + & const_str_varchars._ascii.ob_base, + & const_str_quote._ascii.ob_base, + & const_str_percent._ascii.ob_base, + & const_str_brace._ascii.ob_base, + & const_str_rbrace._ascii.ob_base, + & const_str_dollar._ascii.ob_base, + & const_str_environ._ascii.ob_base, + & const_str_res._ascii.ob_base, + & const_str_index._ascii.ob_base, + & const_str_pathlen._ascii.ob_base, + & const_str_c._ascii.ob_base, + & const_str_var._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(1978) +ntpath_toplevel_consts_28 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 989, + }, + .co_consts = & ntpath_toplevel_consts_28_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_28_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_28_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 380, + .co_nlocalsplus = 15, + .co_nlocals = 15, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_28_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_57_consts_9_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_expandvars._ascii.ob_base, + .co_qualname = & const_str_expandvars._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_28_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x4f\x64\x01\x7c\x00\x76\x01\x72\x06\x64\x02\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x64\x03\x64\x04\x6c\x04\x7d\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x64\x05\x7a\x00\x00\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x07\x7d\x03\x64\x02\x7d\x04\x64\x08\x7d\x05\x64\x09\x7d\x06\x64\x01\x7d\x07\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x64\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x6e\x36\x64\x0b\x7c\x00\x76\x01\x72\x06\x64\x0c\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x64\x03\x64\x04\x6c\x04\x7d\x01\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x64\x05\x7a\x00\x00\x00\x7d\x02\x64\x0d\x7d\x03\x64\x0c\x7d\x04\x64\x0e\x7d\x05\x64\x0f\x7d\x06\x64\x0b\x7d\x07\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x00\x64\x04\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x64\x03\x7d\x0a\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x0a\x7c\x0b\x6b\x00\x00\x00\x00\x00\x90\x03\x72\x0a\x7c\x00\x7c\x0a\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0c\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x65\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x64\x04\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x09\x7c\x0c\x7c\x00\x64\x04\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x90\x02\x6e\xa4\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x7c\x09\x7c\x0c\x7c\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x7c\x0b\x64\x10\x7a\x0a\x00\x00\x7d\x0a\x59\x00\x90\x02\x6e\x8a\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\xdc\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x09\x7c\x0c\x7a\x0d\x00\x00\x7d\x09\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x90\x02\x6e\x60\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x64\x04\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x64\x04\x7c\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x09\x00\x7c\x08\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x08\x7c\x08\x7c\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x18\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0b\x01\x00\x7c\x04\x7c\x0d\x7a\x00\x00\x00\x7c\x04\x7a\x00\x00\x00\x7d\x0e\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x09\x7c\x0e\x7a\x0d\x00\x00\x7d\x09\x90\x01\x6e\xc2\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x7c\x09\x7c\x04\x7c\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x7c\x0b\x64\x10\x7a\x0a\x00\x00\x7d\x0a\x59\x00\x90\x01\x6e\xa8\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x7c\x07\x6b\x02\x00\x00\x00\x00\x90\x01\x72\x98\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x09\x7c\x0c\x7a\x0d\x00\x00\x7d\x09\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x90\x01\x6e\x7d\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6b\x02\x00\x00\x00\x00\x72\xc0\x7c\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x64\x04\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x64\x04\x7c\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x09\x00\x7c\x08\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x08\x7c\x08\x7c\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x1b\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0e\x01\x00\x7c\x07\x7c\x05\x7a\x00\x00\x00\x7c\x0d\x7a\x00\x00\x00\x7c\x06\x7a\x00\x00\x00\x7d\x0e\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x09\x7c\x0e\x7a\x0d\x00\x00\x7d\x09\x6e\xc9\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x13\x01\x00\x7c\x09\x7c\x07\x7c\x05\x7a\x00\x00\x00\x7c\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x7c\x0b\x64\x10\x7a\x0a\x00\x00\x7d\x0a\x59\x00\x6e\xad\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x64\x04\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x7c\x00\x7c\x0a\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0c\x72\x21\x7c\x0c\x7c\x02\x76\x00\x72\x1d\x7c\x0d\x7c\x0c\x7a\x0d\x00\x00\x7d\x0d\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x7c\x00\x7c\x0a\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0c\x72\x04\x7c\x0c\x7c\x02\x76\x00\xb0\x1d\x09\x00\x7c\x08\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x08\x7c\x08\x7c\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x15\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x08\x01\x00\x7c\x07\x7c\x0d\x7a\x00\x00\x00\x7d\x0e\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x09\x7c\x0e\x7a\x0d\x00\x00\x7d\x09\x7c\x0c\x72\x05\x7c\x0a\x64\x10\x7a\x17\x00\x00\x7d\x0a\x6e\x05\x7c\x09\x7c\x0c\x7a\x0d\x00\x00\x7d\x09\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x7c\x0a\x7c\x0b\x6b\x00\x00\x00\x00\x00\x90\x03\xb0\x0a\x7c\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__path_normpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_path_normpath", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_29 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__path_normpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[49]; + } +ntpath_toplevel_consts_30_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 48, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Normalize path, eliminating double slashes, etc.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_30_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & ntpath_toplevel_consts_30_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + &_Py_STR(dot), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +ntpath_toplevel_consts_30_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str__path_normpath._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[93]; + } +ntpath_toplevel_consts_30_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 92, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x11\x8c\x79\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x01\x09\x4a\x01\xdd\x13\x15\x94\x3b\x9d\x7e\xad\x62\xac\x6b\xb8\x24\xd1\x2e\x3f\xd4\x2e\x3f\xd1\x1f\x40\xd4\x1f\x40\xd1\x13\x41\xd4\x13\x41\xd0\x13\x49\xc0\x54\xd0\x0c\x49\xdd\x0f\x1d\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xd0\x0f\x2a\xa0\x73\xd0\x08\x2a", +}; +static + struct _PyCode_DEF(224) +ntpath_toplevel_consts_30 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 112, + }, + .co_consts = & ntpath_toplevel_consts_30_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_30_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 538, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_normpath._ascii.ob_base, + .co_qualname = & const_str_normpath._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_30_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x35\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x01\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +ntpath_toplevel_consts_31_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "..", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +ntpath_toplevel_consts_31_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & ntpath_toplevel_consts_30_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[92]), + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + &_Py_STR(dot), + & ntpath_toplevel_consts_2._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +ntpath_toplevel_consts_31_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + &_Py_ID(replace), + & const_str_splitdrive._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str_lstrip._ascii.ob_base, + & const_str_split._ascii.ob_base, + &_Py_ID(len), + & const_str_endswith._ascii.ob_base, + &_Py_ID(append), + &_Py_ID(join), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[429]; + } +ntpath_toplevel_consts_31_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 428, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x11\x8c\x79\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x09\x09\x1a\xd8\x12\x17\x88\x43\xd8\x15\x19\x88\x46\xd8\x15\x19\x88\x46\xd8\x15\x1a\x88\x46\x88\x46\xe0\x12\x16\x88\x43\xd8\x15\x18\x88\x46\xd8\x15\x18\x88\x46\xd8\x15\x19\x88\x46\xd8\x0f\x13\x8f\x7c\x8a\x7c\x98\x46\xa0\x43\xd1\x0f\x28\xd4\x0f\x28\x88\x04\xdd\x17\x21\xa0\x24\xd1\x17\x27\xd4\x17\x27\x89\x0c\x88\x06\x90\x04\xf0\x06\x00\x0c\x10\x8f\x3f\x8a\x3f\x98\x33\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x02\x09\x24\xd8\x0c\x12\x90\x63\x89\x4d\x88\x46\xd8\x13\x17\x97\x3b\x92\x3b\x98\x73\xd1\x13\x23\xd4\x13\x23\x88\x44\xe0\x10\x14\x97\x0a\x92\x0a\x98\x33\x91\x0f\x94\x0f\x88\x05\xd8\x0c\x0d\x88\x01\xd8\x0e\x0f\x95\x23\x90\x65\x91\x2a\x94\x2a\x8a\x6e\x88\x6e\xd8\x13\x18\x98\x11\x94\x38\xf0\x00\x0b\x0d\x17\x98\x75\xa0\x51\x9c\x78\xa8\x36\xd2\x1f\x31\xd0\x1f\x31\xd8\x14\x19\x98\x21\x90\x48\x90\x48\xd8\x11\x16\x90\x71\x94\x18\x98\x56\xd2\x11\x23\xd0\x11\x23\xd8\x13\x14\x90\x71\x92\x35\x90\x35\x98\x55\xa0\x31\xa0\x51\xa1\x33\x9c\x5a\xa8\x36\xd2\x1d\x31\xd0\x1d\x31\xd8\x18\x1d\x98\x61\xa0\x01\x99\x63\xa0\x21\xa0\x41\xa1\x23\x98\x67\x98\x0e\xd8\x14\x15\x98\x11\x91\x46\x90\x41\x90\x41\xd8\x15\x16\x98\x21\x92\x56\x90\x56\xa0\x06\xa7\x0f\xa2\x0f\xb0\x03\xd1\x20\x34\xd4\x20\x34\x90\x56\xd8\x18\x1d\x98\x61\x98\x08\x98\x08\xe0\x14\x15\x98\x11\x91\x46\x90\x41\x90\x41\xe0\x10\x11\x90\x51\x91\x06\x90\x01\xf0\x19\x00\x0f\x10\x95\x23\x90\x65\x91\x2a\x94\x2a\x8a\x6e\x88\x6e\xf0\x1c\x00\x10\x16\xf0\x00\x01\x09\x21\x98\x65\xf0\x00\x01\x09\x21\xd8\x0c\x11\x8f\x4c\x8a\x4c\x98\x16\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd8\x0f\x15\x98\x03\x9f\x08\x9a\x08\xa0\x15\x99\x0f\x9c\x0f\xd1\x0f\x27\xd0\x08\x27", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_comps = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "comps", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +ntpath_toplevel_consts_31_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(path), + & const_str_sep._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_prefix._ascii.ob_base, + & const_str_comps._ascii.ob_base, + & const_str_i._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(744) +ntpath_toplevel_consts_31 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 372, + }, + .co_consts = & ntpath_toplevel_consts_31_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_31_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 496, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_normpath._ascii.ob_base, + .co_qualname = & const_str_normpath._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_31_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x09\x64\x01\x7d\x01\x64\x02\x7d\x02\x64\x03\x7d\x03\x64\x04\x7d\x04\x6e\x08\x64\x05\x7d\x01\x64\x06\x7d\x02\x64\x07\x7d\x03\x64\x08\x7d\x04\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x05\x7d\x00\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x05\x7c\x01\x7a\x0d\x00\x00\x7d\x05\x7c\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x64\x09\x7d\x07\x7c\x07\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\x72\x87\x7c\x06\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x7c\x06\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x04\x7c\x06\x7c\x07\x3d\x00\x6e\x5c\x7c\x06\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x4b\x7c\x07\x64\x09\x6b\x04\x00\x00\x00\x00\x72\x20\x7c\x06\x7c\x07\x64\x0a\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x03\x00\x00\x00\x00\x72\x11\x7c\x06\x7c\x07\x64\x0a\x7a\x0a\x00\x00\x7c\x07\x64\x0a\x7a\x00\x00\x00\x85\x02\x3d\x00\x7c\x07\x64\x0a\x7a\x17\x00\x00\x7d\x07\x6e\x2a\x7c\x07\x64\x09\x6b\x02\x00\x00\x00\x00\x72\x19\x7c\x05\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x04\x7c\x06\x7c\x07\x3d\x00\x6e\x0b\x7c\x07\x64\x0a\x7a\x0d\x00\x00\x7d\x07\x6e\x05\x7c\x07\x64\x0a\x7a\x0d\x00\x00\x7d\x07\x7c\x07\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\xb0\x87\x7c\x05\x73\x17\x7c\x06\x73\x15\x7c\x06\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x05\x7c\x01\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[165]; + } +ntpath_toplevel_consts_32_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 164, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x61\x20\x70\x61\x74\x68\x20\x61\x73\x20\x61\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x6e\x20\x63\x61\x73\x65\x0a\x20\x20\x20\x20\x60\x6e\x74\x2e\x5f\x67\x65\x74\x66\x75\x6c\x6c\x70\x61\x74\x68\x6e\x61\x6d\x65\x60\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x73\x20\x4f\x53\x45\x72\x72\x6f\x72\x2e\x20\x53\x65\x65\x20\x62\x70\x6f\x2d\x33\x31\x30\x34\x37\x20\x66\x6f\x72\x0a\x20\x20\x20\x20\x6d\x6f\x72\x65\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_32_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & ntpath_toplevel_consts_32_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_getcwdb = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getcwdb", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +ntpath_toplevel_consts_32_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_getcwdb._ascii.ob_base, + & const_str_getcwd._ascii.ob_base, + &_Py_ID(join), + & const_str_normpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__abspath_fallback = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_abspath_fallback", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[99]; + } +ntpath_toplevel_consts_32_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 98, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0e\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x0b\x10\x90\x14\x89\x3b\x8c\x3b\xf0\x00\x05\x05\x1f\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x03\x09\x1e\xdd\x12\x14\x94\x2a\x91\x2c\x94\x2c\x88\x43\x88\x43\xe5\x12\x14\x94\x29\x91\x2b\x94\x2b\x88\x43\xdd\x0f\x13\x90\x43\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x13\x90\x44\x89\x3e\x8c\x3e\xd0\x04\x19", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_cwd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cwd", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_32_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(path), + & const_str_cwd._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(254) +ntpath_toplevel_consts_32 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 127, + }, + .co_consts = & ntpath_toplevel_consts_32_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_32_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 546, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str__abspath_fallback._ascii.ob_base, + .co_qualname = & const_str__abspath_fallback._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_32_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x4c\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x13\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__getfullpathname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_getfullpathname", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_33 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__getfullpathname._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +ntpath_toplevel_consts_34_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the absolute version of a path.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_34_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & ntpath_toplevel_consts_34_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +ntpath_toplevel_consts_34_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__getfullpathname._ascii.ob_base, + & const_str_normpath._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str__abspath_fallback._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[80]; + } +ntpath_toplevel_consts_34_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 79, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x09\x2b\xdd\x13\x23\xa5\x48\xa8\x54\xa1\x4e\xa4\x4e\xd1\x13\x33\xd4\x13\x33\xd0\x0c\x33\xf8\xdd\x10\x17\x9d\x1a\xd0\x0f\x24\xf0\x00\x01\x09\x2b\xf0\x00\x01\x09\x2b\xf0\x00\x01\x09\x2b\xdd\x13\x24\xa0\x54\xd1\x13\x2a\xd4\x13\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xf0\x03\x01\x09\x2b\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +ntpath_toplevel_consts_34_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x82\x1b\x1e\x00\x9e\x20\x41\x01\x03\xc1\x00\x01\x41\x01\x03", +}; +static + struct _PyCode_DEF(136) +ntpath_toplevel_consts_34 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 68, + }, + .co_consts = & ntpath_toplevel_consts_34_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_34_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_34_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 570, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_abspath._ascii.ob_base, + .co_qualname = & const_str_abspath._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_34_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x12\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__getfinalpathname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_getfinalpathname", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_readlink = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "readlink", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_35 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__getfinalpathname._ascii.ob_base, + & const_str_readlink._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_4390 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 4390 }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_4392 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 4392 }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_4393 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 4393 }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +ntpath_toplevel_consts_36_consts_1 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 21], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 50], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 67], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 87], + & const_int_4390.ob_base.ob_base, + & const_int_4392.ob_base.ob_base, + & const_int_4393.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_36_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & ntpath_toplevel_consts_36_consts_1._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str__nt_readlink = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_nt_readlink", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_winerror = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "winerror", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +ntpath_toplevel_consts_36_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str_set._ascii.ob_base, + & const_str_normcase._ascii.ob_base, + &_Py_ID(add), + & const_str__nt_readlink._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + & const_str_islink._ascii.ob_base, + & const_str_normpath._ascii.ob_base, + &_Py_ID(join), + & const_str_dirname._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_winerror._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__readlink_deep = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_readlink_deep", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[268]; + } +ntpath_toplevel_consts_36_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 267, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x1e\x00\x1c\x4c\x01\xd0\x08\x18\xe5\x0f\x12\x89\x75\x8c\x75\x88\x04\xdd\x0e\x16\x90\x74\x89\x6e\x8c\x6e\xa0\x44\xd0\x0e\x28\xd0\x0e\x28\xd8\x0c\x10\x8f\x48\x8a\x48\x95\x58\x98\x64\x91\x5e\x94\x5e\xd1\x0c\x24\xd4\x0c\x24\xd0\x0c\x24\xf0\x02\x13\x0d\x16\xd8\x1b\x1f\x90\x08\xdd\x17\x23\xa0\x44\xd1\x17\x29\xd4\x17\x29\x90\x04\xf5\x06\x00\x18\x1d\x98\x54\x91\x7b\x94\x7b\xf0\x00\x07\x11\x43\x01\xf5\x08\x00\x1c\x22\xa0\x28\xd1\x1b\x2b\xd4\x1b\x2b\xf0\x00\x02\x15\x1e\xd8\x1f\x27\x98\x04\xd8\x18\x1d\xdd\x1b\x23\xa5\x44\xad\x17\xb0\x18\xd1\x29\x3a\xd4\x29\x3a\xb8\x44\xd1\x24\x41\xd4\x24\x41\xd1\x1b\x42\xd4\x1b\x42\x90\x44\xf8\xf8\xdd\x13\x1a\xf0\x00\x03\x0d\x16\xf0\x00\x03\x0d\x16\xf0\x00\x03\x0d\x16\xd8\x13\x15\x94\x3b\xd0\x22\x32\xd0\x13\x32\xd0\x13\x32\xd8\x14\x19\x90\x45\x90\x45\x90\x45\x90\x45\xd8\x10\x15\xf8\xf8\xf8\xf8\xdd\x13\x1d\xf0\x00\x02\x0d\x16\xf0\x00\x02\x0d\x16\xf0\x00\x02\x0d\x16\xe0\x10\x15\x90\x05\xf0\x05\x02\x0d\x16\xf8\xf8\xf8\xf5\x27\x00\x0f\x17\x90\x74\x89\x6e\x8c\x6e\xa0\x44\xd0\x0e\x28\xd0\x0e\x28\xf0\x2c\x00\x10\x14\x88\x0b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[43]; + } +ntpath_toplevel_consts_36_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 42, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x05\x31\x42\x22\x00\xc1\x37\x2a\x42\x22\x00\xc2\x22\x0a\x43\x0b\x03\xc2\x2c\x09\x42\x3b\x03\xc2\x3a\x01\x42\x3b\x03\xc2\x3b\x0d\x43\x0b\x03\xc3\x0a\x01\x43\x0b\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_allowed_winerror = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "allowed_winerror", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_old_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "old_path", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_ex = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ex", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +ntpath_toplevel_consts_36_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(path), + & const_str_allowed_winerror._ascii.ob_base, + & const_str_seen._ascii.ob_base, + & const_str_old_path._ascii.ob_base, + & const_str_ex._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(450) +ntpath_toplevel_consts_36 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 225, + }, + .co_consts = & ntpath_toplevel_consts_36_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_36_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_36_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 583, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_36_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str__readlink_deep._ascii.ob_base, + .co_qualname = & const_str__readlink_deep._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_36_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x76\x01\x72\xbd\x7c\x02\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x3c\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x03\x7c\x03\x7d\x00\x6e\x68\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x6e\x2c\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x14\x7d\x04\x7c\x04\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x00\x72\x05\x59\x00\x64\x00\x7d\x04\x7e\x04\x6e\x25\x82\x00\x64\x00\x7d\x04\x7e\x04\x77\x01\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x15\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x76\x01\xb0\xbd\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_1920 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 1920 }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_1921 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 1921 }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +ntpath_toplevel_consts_37_consts_1 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 21], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 50], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 53], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 65], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 67], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 87], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 123], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 161], + & const_int_1920.ob_base.ob_base, + & const_int_1921.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_37_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & ntpath_toplevel_consts_37_consts_1._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +ntpath_toplevel_consts_37_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str__getfinalpathname._ascii.ob_base, + &_Py_ID(join), + & const_str_OSError._ascii.ob_base, + & const_str_winerror._ascii.ob_base, + & const_str__readlink_deep._ascii.ob_base, + & const_str_split._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +const_str__getfinalpathname_nonstrict = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_getfinalpathname_nonstrict", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[347]; + } +ntpath_toplevel_consts_37_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 346, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x24\x00\x1c\x58\x01\xd0\x08\x18\xf0\x08\x00\x10\x14\x90\x42\x90\x51\x90\x42\x8c\x78\x88\x04\xd8\x0e\x12\xf0\x00\x17\x09\x3a\xf0\x02\x16\x0d\x3a\xdd\x17\x28\xa8\x14\xd1\x17\x2e\xd4\x17\x2e\x90\x04\xd8\x2b\x2f\xd0\x17\x39\x95\x74\x98\x44\xa0\x24\xd1\x17\x27\xd4\x17\x27\xd0\x17\x27\xb0\x54\xd0\x10\x39\xf8\xdd\x13\x1a\xf0\x00\x13\x0d\x3a\xf0\x00\x13\x0d\x3a\xf0\x00\x13\x0d\x3a\xd8\x13\x15\x94\x3b\xd0\x26\x36\xd0\x13\x36\xd0\x13\x36\xd8\x14\x19\xf0\x02\x09\x11\x19\xf5\x08\x00\x20\x2e\xa8\x64\xd1\x1f\x33\xd4\x1f\x33\x90\x48\xd8\x17\x1f\xa0\x34\xd2\x17\x27\xd0\x17\x27\xd8\x37\x3b\xd0\x1f\x49\x9d\x74\xa0\x48\xa8\x64\xd1\x1f\x33\xd4\x1f\x33\xd0\x1f\x33\xc0\x18\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xf0\x03\x00\x18\x28\xf8\xe5\x17\x1e\xf0\x00\x02\x11\x19\xf0\x00\x02\x11\x19\xf0\x00\x02\x11\x19\xe0\x14\x18\x90\x44\xf0\x05\x02\x11\x19\xf8\xf8\xf8\xf5\x06\x00\x1e\x23\xa0\x34\x99\x5b\x9c\x5b\x91\x0a\x90\x04\x90\x64\xf0\x08\x00\x14\x18\xf0\x00\x01\x11\x27\xa0\x04\xf0\x00\x01\x11\x27\xd8\x1b\x1f\xa0\x24\x99\x3b\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd8\x2b\x2f\xd0\x17\x39\x95\x74\x98\x44\xa0\x24\xd1\x17\x27\xd4\x17\x27\xd0\x17\x27\xb0\x54\x90\x04\x90\x04\x90\x04\x90\x04\x90\x04\x90\x04\xf8\xf8\xf8\xf8\xf0\x27\x13\x0d\x3a\xf8\xf8\xf8\xf0\x09\x00\x0f\x13\xf0\x00\x17\x09\x3a\xf0\x30\x00\x10\x14\x88\x0b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[75]; + } +ntpath_toplevel_consts_37_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 74, + }, + .ob_shash = -1, + .ob_sval = "\x90\x22\x33\x00\xb3\x0a\x43\x05\x03\xbd\x0a\x43\x00\x03\xc1\x08\x28\x41\x37\x02\xc1\x30\x01\x43\x05\x03\xc1\x36\x01\x43\x00\x03\xc1\x37\x0a\x42\x04\x05\xc2\x01\x02\x43\x00\x03\xc2\x03\x01\x42\x04\x05\xc2\x04\x1d\x43\x00\x03\xc2\x21\x01\x43\x05\x03\xc2\x27\x14\x43\x00\x03\xc3\x00\x05\x43\x05\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_new_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "new_path", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +ntpath_toplevel_consts_37_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(path), + & const_str_allowed_winerror._ascii.ob_base, + & const_str_tail._ascii.ob_base, + & const_str_ex._ascii.ob_base, + & const_str_new_path._ascii.ob_base, + &_Py_ID(name), + }, + }, +}; +static + struct _PyCode_DEF(408) +ntpath_toplevel_consts_37 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 204, + }, + .co_consts = & ntpath_toplevel_consts_37_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_37_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_37_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 625, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str__getfinalpathname_nonstrict._ascii.ob_base, + .co_qualname = & const_str__getfinalpathname_nonstrict._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_37_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x7c\x00\x64\x00\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x72\xbb\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x02\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x00\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x88\x7d\x03\x7c\x03\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x01\x72\x01\x82\x00\x09\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x00\x6b\x03\x00\x00\x00\x00\x72\x19\x7c\x02\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x04\x63\x02\x59\x00\x64\x00\x7d\x03\x7e\x03\x53\x00\x6e\x10\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x05\x7c\x00\x72\x0c\x7c\x05\x73\x0a\x7c\x00\x7c\x02\x7a\x00\x00\x00\x63\x02\x59\x00\x64\x00\x7d\x03\x7e\x03\x53\x00\x7c\x02\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x05\x7d\x02\x59\x00\x64\x00\x7d\x03\x7e\x03\x6e\x08\x64\x00\x7d\x03\x7e\x03\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\xb0\xbb\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +ntpath_toplevel_consts_40_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "\\\\?\\", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +ntpath_toplevel_consts_40_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "\\\\", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +ntpath_toplevel_consts_40_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\\\\.\\NUL", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +ntpath_toplevel_consts_40_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\\\\?\\", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +ntpath_toplevel_consts_40_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\\\\.\\NUL", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +ntpath_toplevel_consts_40_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + Py_None, + & ntpath_toplevel_consts_40_consts_1.ob_base.ob_base, + & ntpath_toplevel_consts_18_consts_5.ob_base.ob_base, + & ntpath_toplevel_consts_40_consts_3.ob_base.ob_base, + & ntpath_toplevel_consts_40_consts_4.ob_base.ob_base, + & ntpath_toplevel_consts_40_consts_5._ascii.ob_base, + & ntpath_toplevel_consts_18_consts_9._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_22_consts_6._ascii.ob_base, + & ntpath_toplevel_consts_40_consts_8._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[19]; + }_object; + } +ntpath_toplevel_consts_40_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 19, + }, + .ob_item = { + & const_str_normpath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_getcwdb._ascii.ob_base, + & const_str_normcase._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str_devnull._ascii.ob_base, + & const_str_getcwd._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + &_Py_ID(join), + & const_str__getfinalpathname._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_str._ascii.ob_base, + & const_str_winerror._ascii.ob_base, + & const_str__getfinalpathname_nonstrict._ascii.ob_base, + &_Py_ID(len), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[617]; + } +ntpath_toplevel_consts_40_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 616, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x17\x98\x04\x89\x7e\x8c\x7e\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x0f\x09\x24\xd8\x15\x1f\x88\x46\xd8\x19\x28\x88\x4a\xd8\x1d\x24\x88\x4e\xdd\x12\x14\x94\x2a\x91\x2c\x94\x2c\x88\x43\xe5\x0f\x17\x98\x04\x89\x7e\x8c\x7e\xa5\x18\xad\x22\xac\x2b\xb5\x67\xd1\x2a\x3e\xd4\x2a\x3e\xd1\x21\x3f\xd4\x21\x3f\xd2\x0f\x3f\xd0\x0f\x3f\xd8\x17\x24\x90\x7d\xf0\x03\x00\x10\x40\x01\xf0\x06\x00\x16\x1f\x88\x46\xd8\x19\x27\x88\x4a\xd8\x1d\x23\x88\x4e\xdd\x12\x14\x94\x29\x91\x2b\x94\x2b\x88\x43\xe5\x0f\x17\x98\x04\x89\x7e\x8c\x7e\xa5\x18\xad\x27\xd1\x21\x32\xd4\x21\x32\xd2\x0f\x32\xd0\x0f\x32\xd8\x17\x23\x90\x7c\xd8\x15\x19\x97\x5f\x92\x5f\xa0\x56\xd1\x15\x2c\xd4\x15\x2c\x88\x0a\xd8\x0f\x19\xf0\x00\x01\x09\x23\xa5\x25\xa8\x04\xa1\x2b\xa4\x2b\xf0\x00\x01\x09\x23\xdd\x13\x17\x98\x03\x98\x54\x91\x3f\x94\x3f\x88\x44\xf0\x02\x0f\x09\x35\xdd\x13\x24\xa0\x54\xd1\x13\x2a\xd4\x13\x2a\x88\x44\xd8\x1f\x20\xd0\x0c\x1c\xd0\x0c\x1c\xf8\xdd\x0f\x19\xf0\x00\x07\x09\x22\xf0\x00\x07\x09\x22\xf0\x00\x07\x09\x22\xf0\x0a\x00\x10\x16\xf0\x00\x01\x0d\x31\xdd\x16\x1d\x9d\x63\xa0\x22\x99\x67\x9c\x67\xd1\x16\x26\xd4\x16\x26\xa8\x44\xd0\x10\x30\xdd\x13\x1b\x98\x44\x91\x3e\x94\x3e\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\xf8\xf8\xf8\xf8\xdd\x0f\x16\xf0\x00\x04\x09\x35\xf0\x00\x04\x09\x35\xf0\x00\x04\x09\x35\xd8\x0f\x15\xf0\x00\x01\x0d\x16\xd8\x10\x15\xd8\x1f\x21\x9c\x7b\xd0\x0c\x1c\xdd\x13\x2e\xa8\x74\xd1\x13\x34\xd4\x13\x34\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\xf8\xf8\xf8\xf8\xf0\x09\x04\x09\x35\xf8\xf8\xf8\xf0\x10\x00\x10\x1a\xf0\x00\x13\x09\x21\x98\x64\x9f\x6f\x9a\x6f\xa8\x66\xd1\x1e\x35\xd4\x1e\x35\xf0\x00\x13\x09\x21\xf0\x06\x00\x10\x14\x8f\x7f\x8a\x7f\x98\x7a\xd1\x0f\x2a\xd4\x0f\x2a\xf0\x00\x03\x0d\x2b\xd8\x18\x26\xa8\x14\xad\x63\xb0\x2a\xa9\x6f\xac\x6f\xd0\x2e\x3e\xd0\x2e\x3e\xd4\x29\x3f\xd1\x18\x3f\x90\x05\x90\x05\xe0\x18\x1c\x9d\x53\xa0\x16\x99\x5b\x9c\x5b\x98\x5c\x98\x5c\xd4\x18\x2a\x90\x05\xf0\x04\x0b\x0d\x21\xdd\x13\x24\xa0\x55\xd1\x13\x2b\xd4\x13\x2b\xa8\x74\xd2\x13\x33\xd0\x13\x33\xd8\x1b\x20\x90\x44\xf8\xf8\xdd\x13\x1d\xf0\x00\x03\x0d\x15\xf0\x00\x03\x0d\x15\xf0\x00\x03\x0d\x15\xf0\x06\x00\x11\x15\x90\x04\x90\x04\x90\x04\x90\x04\xf8\xf8\xf8\xf8\xdd\x13\x1a\xf0\x00\x04\x0d\x21\xf0\x00\x04\x0d\x21\xf0\x00\x04\x0d\x21\xf0\x06\x00\x14\x16\x94\x3b\xd0\x22\x32\xd2\x13\x32\xd0\x13\x32\xd8\x1b\x20\x90\x44\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf0\x09\x04\x0d\x21\xf8\xf8\xf8\xf0\x0a\x00\x10\x14\x88\x0b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[67]; + } +ntpath_toplevel_consts_40_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 66, + }, + .ob_shash = -1, + .ob_sval = "\xc3\x2f\x11\x44\x01\x00\xc4\x01\x0a\x45\x2e\x03\xc4\x0b\x2e\x44\x3e\x03\xc4\x3e\x0d\x45\x2e\x03\xc5\x0b\x19\x45\x29\x03\xc5\x29\x05\x45\x2e\x03\xc7\x10\x15\x47\x26\x00\xc7\x26\x0a\x48\x19\x03\xc7\x35\x0d\x48\x19\x03\xc8\x02\x0d\x48\x14\x03\xc8\x14\x05\x48\x19\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_new_unc_prefix = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "new_unc_prefix", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_had_prefix = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "had_prefix", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_initial_winerror = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "initial_winerror", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_spath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spath", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +ntpath_toplevel_consts_40_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(path), + &_Py_ID(strict), + & const_str_prefix._ascii.ob_base, + & const_str_unc_prefix._ascii.ob_base, + & const_str_new_unc_prefix._ascii.ob_base, + & const_str_cwd._ascii.ob_base, + & const_str_had_prefix._ascii.ob_base, + & const_str_initial_winerror._ascii.ob_base, + & const_str_ex._ascii.ob_base, + & const_str_spath._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(1084) +ntpath_toplevel_consts_40 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 542, + }, + .co_consts = & ntpath_toplevel_consts_40_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_40_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_40_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 1, + .co_stacksize = 6, + .co_firstlineno = 674, + .co_nlocalsplus = 10, + .co_nlocals = 10, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_40_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_realpath._ascii.ob_base, + .co_qualname = & const_str_realpath._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_40_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x53\x64\x01\x7d\x02\x64\x02\x7d\x03\x64\x03\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x6e\x40\x64\x05\x7d\x02\x64\x06\x7d\x03\x64\x07\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x08\x53\x00\x7c\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x73\x1f\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x10\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x09\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x64\x09\x7d\x07\x6e\x70\x23\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x38\x7d\x08\x7c\x01\x72\x1d\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x33\x64\x00\x7d\x08\x7e\x08\x77\x01\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x23\x7d\x08\x7c\x01\x72\x01\x82\x00\x7c\x08\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x08\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x06\x73\xa9\x7c\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x94\x7c\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x7c\x04\x7c\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x09\x6e\x17\x7c\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x09\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x09\x7d\x00\x6e\x36\x23\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0a\x7d\x08\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x27\x64\x00\x7d\x08\x7e\x08\x77\x01\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x17\x7d\x08\x7c\x08\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x09\x7d\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x08\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_getwindowsversion = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getwindowsversion", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +ntpath_toplevel_consts_44_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return a relative version of a path", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +ntpath_toplevel_consts_44_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "no path specified", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +ntpath_toplevel_consts_44_consts_9 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path is on mount ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +ntpath_toplevel_consts_44_consts_10 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ", start on mount ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +ntpath_toplevel_consts_44_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "relpath..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[30]; + } +ntpath_toplevel_consts_44_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 29, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd0\x15\x3c\xd0\x15\x3c\xd0\x15\x3c\x98\x41\xb8\x21\xd0\x15\x3c\x90\x61\xd0\x15\x3c\xd0\x15\x3c\xd0\x15\x3c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +ntpath_toplevel_consts_44_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_x._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(22) +ntpath_toplevel_consts_44_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 11, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 769, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_44_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[30]; + } +ntpath_toplevel_consts_44_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 29, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd0\x14\x3a\xd0\x14\x3a\xd0\x14\x3a\x98\x31\xb8\x01\xd0\x14\x3a\x90\x51\xd0\x14\x3a\xd0\x14\x3a\xd0\x14\x3a", +}; +static + struct _PyCode_DEF(22) +ntpath_toplevel_consts_44_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 11, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 770, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_44_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +ntpath_toplevel_consts_44_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & ntpath_toplevel_consts_44_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[92]), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + &_Py_STR(dot), + & ntpath_toplevel_consts_2._ascii.ob_base, + Py_None, + & ntpath_toplevel_consts_44_consts_8._ascii.ob_base, + & ntpath_toplevel_consts_44_consts_9._ascii.ob_base, + & ntpath_toplevel_consts_44_consts_10._ascii.ob_base, + & ntpath_toplevel_consts_44_consts_11.ob_base.ob_base, + & ntpath_toplevel_consts_44_consts_12.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & const_str_relpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[19]; + }_object; + } +ntpath_toplevel_consts_44_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 19, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str_normpath._ascii.ob_base, + & const_str_splitdrive._ascii.ob_base, + & const_str_normcase._ascii.ob_base, + & const_str_split._ascii.ob_base, + & const_str_zip._ascii.ob_base, + &_Py_ID(len), + &_Py_ID(join), + & const_str_TypeError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_BytesWarning._ascii.ob_base, + & const_str_DeprecationWarning._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + & const_str__check_arg_types._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[517]; + } +ntpath_toplevel_consts_44_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 516, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x16\xd8\x0e\x13\x88\x03\xd8\x11\x15\x88\x06\xd8\x11\x16\x88\x06\x88\x06\xe0\x0e\x12\x88\x03\xd8\x11\x14\x88\x06\xd8\x11\x15\x88\x06\xe0\x07\x0c\x80\x7d\xd8\x10\x16\x88\x05\xe0\x0b\x0f\xf0\x00\x01\x05\x2e\xdd\x0e\x18\xd0\x19\x2c\xd1\x0e\x2d\xd4\x0e\x2d\xd0\x08\x2d\xe5\x0c\x0e\x8c\x49\x90\x65\xd1\x0c\x1c\xd4\x0c\x1c\x80\x45\xf0\x02\x18\x05\x0e\xdd\x14\x1b\x9d\x48\xa0\x55\x99\x4f\x9c\x4f\xd1\x14\x2c\xd4\x14\x2c\x88\x09\xdd\x13\x1a\x9d\x38\xa0\x44\x99\x3e\x9c\x3e\xd1\x13\x2a\xd4\x13\x2a\x88\x08\xdd\x22\x2c\xa8\x59\xd1\x22\x37\xd4\x22\x37\xd1\x08\x1f\x88\x0b\x90\x5a\xdd\x20\x2a\xa8\x38\xd1\x20\x34\xd4\x20\x34\xd1\x08\x1d\x88\x0a\x90\x49\xdd\x0b\x13\x90\x4b\xd1\x0b\x20\xd4\x0b\x20\xa5\x48\xa8\x5a\xd1\x24\x38\xd4\x24\x38\xd2\x0b\x38\xd0\x0b\x38\xdd\x12\x1c\x90\x2a\xd8\x10\x1a\x90\x0a\x90\x0a\x98\x4b\x98\x4b\xf0\x03\x01\x1e\x29\xf1\x00\x01\x13\x2a\xf4\x00\x01\x13\x2a\xf0\x00\x01\x0d\x2a\xf0\x06\x00\x16\x3d\xd0\x15\x3c\xa0\x1a\xd7\x21\x31\xd2\x21\x31\xb0\x23\xd1\x21\x36\xd4\x21\x36\xd0\x15\x3c\xd1\x15\x3c\xd4\x15\x3c\x88\x0a\xd8\x14\x3a\xd0\x14\x3a\xa0\x09\xa7\x0f\xa2\x0f\xb0\x03\xd1\x20\x34\xd4\x20\x34\xd0\x14\x3a\xd1\x14\x3a\xd4\x14\x3a\x88\x09\xe0\x0c\x0d\x88\x01\xdd\x16\x19\x98\x2a\xa0\x69\xd1\x16\x30\xd4\x16\x30\xf0\x00\x03\x09\x13\xf0\x00\x03\x09\x13\x89\x46\x88\x42\x90\x02\xdd\x0f\x17\x98\x02\x89\x7c\x8c\x7c\x9d\x78\xa8\x02\x99\x7c\x9c\x7c\xd2\x0f\x2b\xd0\x0f\x2b\xd8\x10\x15\x90\x05\xd8\x0c\x0d\x90\x11\x89\x46\x88\x41\x88\x41\xe0\x14\x1a\x90\x38\x9d\x73\xa0\x3a\x99\x7f\x9c\x7f\xa8\x71\xd1\x1f\x30\xd1\x13\x31\xb0\x49\xb8\x61\xb8\x62\xb8\x62\xb4\x4d\xd1\x13\x41\x88\x08\xd8\x0f\x17\xf0\x00\x01\x09\x1a\xd8\x13\x19\x88\x4d\xdd\x0f\x13\x90\x58\x88\x7f\xd0\x08\x1e\xf8\xdd\x0c\x15\x95\x7a\xa5\x3e\xb5\x3c\xd5\x41\x53\xd0\x0b\x54\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x59\xb0\x04\xb0\x65\xd1\x08\x3c\xd4\x08\x3c\xd0\x08\x3c\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +ntpath_toplevel_consts_44_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x21\x44\x32\x46\x1d\x00\xc6\x14\x08\x46\x1d\x00\xc6\x1d\x3b\x47\x18\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_start_abs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "start_abs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_path_abs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_abs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_start_drive = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "start_drive", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_start_rest = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "start_rest", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_path_drive = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_drive", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_path_rest = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_rest", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_start_list = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "start_list", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_path_list = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_list", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_e1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "e1", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_e2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "e2", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_rel_list = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "rel_list", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +ntpath_toplevel_consts_44_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + &_Py_ID(path), + & const_str_start._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_start_abs._ascii.ob_base, + & const_str_path_abs._ascii.ob_base, + & const_str_start_drive._ascii.ob_base, + & const_str_start_rest._ascii.ob_base, + & const_str_path_drive._ascii.ob_base, + & const_str_path_rest._ascii.ob_base, + & const_str_start_list._ascii.ob_base, + & const_str_path_list._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_e1._ascii.ob_base, + & const_str_e2._ascii.ob_base, + & const_str_rel_list._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(950) +ntpath_toplevel_consts_44 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 475, + }, + .co_consts = & ntpath_toplevel_consts_44_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_44_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_44_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 741, + .co_nlocalsplus = 17, + .co_nlocals = 17, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_44_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & zipimport_toplevel_consts_24_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_relpath._ascii.ob_base, + .co_qualname = & const_str_relpath._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_44_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x02\x64\x02\x7d\x03\x64\x03\x7d\x04\x6e\x06\x64\x04\x7d\x02\x64\x05\x7d\x03\x64\x06\x7d\x04\x7c\x01\x80\x02\x7c\x03\x7d\x01\x7c\x00\x73\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x07\x7d\x08\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x15\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x09\x9b\x02\x64\x0a\x7c\x07\x9b\x02\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x0b\x84\x00\x7c\x08\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x64\x0c\x84\x00\x7c\x0a\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x64\x0d\x7d\x0d\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x7c\x0c\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x2c\x5c\x02\x00\x00\x7d\x0e\x7d\x0f\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x01\x00\x6e\x06\x7c\x0d\x64\x0e\x7a\x0d\x00\x00\x7d\x0d\x8c\x2d\x7c\x04\x67\x01\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x7a\x0a\x00\x00\x7a\x05\x00\x00\x7c\x0c\x7c\x0d\x64\x07\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x10\x7c\x10\x73\x02\x7c\x03\x53\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x10\x8e\x00\x53\x00\x23\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x05\x24\x00\x72\x18\x01\x00\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x12\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0f\x7c\x00\x7c\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[69]; + } +ntpath_toplevel_consts_45_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 68, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Given a sequence of path names, returns the longest common sub-path.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +ntpath_toplevel_consts_45_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "commonpath() arg is an empty sequence", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_45_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_splitdrive._ascii.ob_base, + &_Py_ID(replace), + & const_str_lower._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +ntpath_toplevel_consts_45_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "commonpath..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[60]; + } +ntpath_toplevel_consts_45_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 59, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51\xc0\x61\x95\x7a\xa0\x21\xa7\x29\xa2\x29\xa8\x46\xb0\x43\xd1\x22\x38\xd4\x22\x38\xd7\x22\x3e\xd2\x22\x3e\xd1\x22\x40\xd4\x22\x40\xd1\x17\x41\xd4\x17\x41\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +ntpath_toplevel_consts_45_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_p._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_sep._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +ntpath_toplevel_consts_45_consts_9_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "\x20\x20\x80\x80", +}; +static + struct _PyCode_DEF(122) +ntpath_toplevel_consts_45_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 61, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = & ntpath_toplevel_consts_45_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 814, + .co_nlocalsplus = 4, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 2, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & ntpath_toplevel_consts_45_consts_9_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x02\x97\x00\x67\x00\x7c\x00\x5d\x37\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x02\x89\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x38\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[40]; + } +ntpath_toplevel_consts_45_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 39, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd0\x16\x3c\xd0\x16\x3c\xd0\x16\x3c\xa9\x04\xa8\x01\xa8\x31\x90\x71\x97\x77\x92\x77\x98\x73\x91\x7c\x94\x7c\xd0\x16\x3c\xd0\x16\x3c\xd0\x16\x3c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +ntpath_toplevel_consts_45_consts_10_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_d._ascii.ob_base, + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +ntpath_toplevel_consts_45_consts_10_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "\x20\x20\x20\x80", +}; +static + struct _PyCode_DEF(64) +ntpath_toplevel_consts_45_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 32, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 815, + .co_nlocalsplus = 4, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x1a\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x1b\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +ntpath_toplevel_consts_45_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "commonpath..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[52]; + } +ntpath_toplevel_consts_45_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 51, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x18\x3e\xd0\x18\x3e\xa9\x24\xa8\x21\xa8\x51\x98\x11\x98\x32\x98\x41\x98\x32\x9c\x15\xa0\x23\x9a\x1c\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e", +}; +static + struct _PyCode_DEF(58) +ntpath_toplevel_consts_45_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & zipimport_toplevel_consts_25_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 818, + .co_nlocalsplus = 4, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & ntpath_toplevel_consts_45_consts_11_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x15\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x02\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x03\x6b\x02\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x16\x64\x00\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +ntpath_toplevel_consts_45_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Can't mix absolute and relative paths", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[39]; + } +ntpath_toplevel_consts_45_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 38, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd0\x12\x2d\xd0\x12\x2d\x99\x14\x98\x11\x98\x41\x90\x31\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_45_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_d._ascii.ob_base, + & const_str_p._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(32) +ntpath_toplevel_consts_45_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 825, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & ntpath_toplevel_consts_45_consts_11_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x09\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0a\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +ntpath_toplevel_consts_45_consts_16 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Paths don't have the same drive", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +ntpath_toplevel_consts_45_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd0\x11\x39\xd0\x11\x39\xd0\x11\x39\x98\x01\xa0\x71\xd0\x11\x39\xa8\x51\xb0\x26\xaa\x5b\xa8\x5b\x90\x21\xa8\x5b\xa8\x5b\xa8\x5b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_45_consts_17_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_c._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(36) +ntpath_toplevel_consts_45_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 830, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_17_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x0c\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x89\x02\x6b\x03\x00\x00\x00\x00\xaf\x0a\x7c\x01\x91\x02\x8c\x0d\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[42]; + } +ntpath_toplevel_consts_45_consts_18_consts_0_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 41, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "commonpath...", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +ntpath_toplevel_consts_45_consts_18_consts_0_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd0\x17\x3a\xd0\x17\x3a\xd0\x17\x3a\x98\x61\xa8\x01\xd0\x17\x3a\xa8\x61\xb0\x36\xaa\x6b\xa8\x6b\x98\x01\xa8\x6b\xa8\x6b\xa8\x6b", +}; +static + struct _PyCode_DEF(36) +ntpath_toplevel_consts_45_consts_18_consts_0 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 832, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_17_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_18_consts_0_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_18_consts_0_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x0c\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x89\x02\x6b\x03\x00\x00\x00\x00\xaf\x0a\x7c\x01\x91\x02\x8c\x0d\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_45_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & ntpath_toplevel_consts_45_consts_18_consts_0.ob_base.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[47]; + } +ntpath_toplevel_consts_45_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 46, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50\xb8\x71\xd0\x17\x3a\xd0\x17\x3a\xd0\x17\x3a\xd0\x17\x3a\xa0\x31\xd0\x17\x3a\xd1\x17\x3a\xd4\x17\x3a\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +ntpath_toplevel_consts_45_consts_18_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_s._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(44) +ntpath_toplevel_consts_45_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & ntpath_toplevel_consts_45_consts_18_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 832, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x10\x7d\x01\x88\x02\x66\x01\x64\x00\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x11\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[20]; + }_object; + } +ntpath_toplevel_consts_45_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 20, + }, + .ob_item = { + & ntpath_toplevel_consts_45_consts_0._ascii.ob_base, + & ntpath_toplevel_consts_45_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_Py_SINGLETON(bytes_characters[92]), + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + &_Py_STR(dot), + & ntpath_toplevel_consts_45_consts_9.ob_base.ob_base, + & ntpath_toplevel_consts_45_consts_10.ob_base.ob_base, + & ntpath_toplevel_consts_45_consts_11.ob_base.ob_base, + & ntpath_toplevel_consts_45_consts_12._ascii.ob_base, + Py_None, + & ntpath_toplevel_consts_45_consts_14.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & ntpath_toplevel_consts_45_consts_16._ascii.ob_base, + & ntpath_toplevel_consts_45_consts_17.ob_base.ob_base, + & ntpath_toplevel_consts_45_consts_18.ob_base.ob_base, + & const_str_commonpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[20]; + }_object; + } +ntpath_toplevel_consts_45_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 20, + }, + .ob_item = { + & const_str_ValueError._ascii.ob_base, + & const_str_tuple._ascii.ob_base, + & const_str_map._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_set._ascii.ob_base, + &_Py_ID(len), + & const_str_splitdrive._ascii.ob_base, + &_Py_ID(replace), + & const_str_split._ascii.ob_base, + & const_str_min._ascii.ob_base, + & const_str_max._ascii.ob_base, + & const_str_enumerate._ascii.ob_base, + &_Py_ID(join), + & const_str_TypeError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + & const_str__check_arg_types._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[632]; + } +ntpath_toplevel_consts_45_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 631, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xf8\xf8\x80\x00\xf0\x06\x00\x0c\x11\xf0\x00\x01\x05\x42\x01\xdd\x0e\x18\xd0\x19\x40\xd1\x0e\x41\xd4\x0e\x41\xd0\x08\x41\xe5\x0c\x11\x95\x23\x95\x62\x94\x69\xa0\x15\xd1\x12\x27\xd4\x12\x27\xd1\x0c\x28\xd4\x0c\x28\x80\x45\xdd\x07\x11\x90\x25\x98\x01\x94\x28\x9d\x45\xd1\x07\x22\xd4\x07\x22\xf0\x00\x07\x05\x15\xd8\x0e\x13\x88\x03\xd8\x11\x15\x88\x06\xd8\x11\x15\x88\x06\x88\x06\xe0\x0e\x12\x88\x03\xd8\x11\x14\x88\x06\xd8\x11\x14\x88\x06\xf0\x04\x21\x05\x0e\xd8\x16\x51\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51\xc8\x35\xd0\x16\x51\xd1\x16\x51\xd4\x16\x51\x88\x0b\xd8\x16\x3c\xd0\x16\x3c\xd0\x16\x3c\xd0\x16\x3c\xb0\x0b\xd0\x16\x3c\xd1\x16\x3c\xd4\x16\x3c\x88\x0b\xf0\x04\x03\x09\x50\x01\xdd\x15\x18\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xb0\x2b\xd0\x18\x3e\xd1\x18\x3e\xd4\x18\x3e\xd1\x15\x3e\xd4\x15\x3e\x89\x46\x88\x45\x88\x45\xf8\xdd\x0f\x19\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xdd\x12\x1c\xd0\x1d\x44\xd1\x12\x45\xd4\x12\x45\xc8\x34\xd0\x0c\x4f\xf0\x03\x01\x09\x50\x01\xf8\xf8\xf8\xf5\x0c\x00\x0c\x0f\x8d\x73\xd0\x12\x2d\xd0\x12\x2d\xa0\x1b\xd0\x12\x2d\xd1\x12\x2d\xd4\x12\x2d\xd1\x0f\x2d\xd4\x0f\x2d\xd1\x0b\x2e\xd4\x0b\x2e\xb0\x21\xd2\x0b\x33\xd0\x0b\x33\xdd\x12\x1c\xd0\x1d\x3e\xd1\x12\x3f\xd4\x12\x3f\xd0\x0c\x3f\xe5\x16\x20\xa0\x15\xa0\x71\xa4\x18\xd7\x21\x31\xd2\x21\x31\xb0\x26\xb8\x23\xd1\x21\x3e\xd4\x21\x3e\xd1\x16\x3f\xd4\x16\x3f\x89\x0b\x88\x05\x88\x74\xd8\x11\x15\x97\x1a\x92\x1a\x98\x43\x91\x1f\x94\x1f\x88\x06\xd8\x11\x39\xd0\x11\x39\xd0\x11\x39\xd0\x11\x39\x98\x56\xd0\x11\x39\xd1\x11\x39\xd4\x11\x39\x88\x06\xe0\x16\x50\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50\xc0\x4b\xd0\x16\x50\xd1\x16\x50\xd4\x16\x50\x88\x0b\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xdd\x14\x1d\x98\x62\x91\x4d\x94\x4d\xf0\x00\x05\x09\x26\xf0\x00\x05\x09\x26\x89\x44\x88\x41\x88\x71\xd8\x0f\x10\x90\x42\x90\x71\x94\x45\x8a\x7a\x88\x7a\xd8\x19\x1f\xa0\x02\xa0\x11\xa0\x02\x9c\x1a\x90\x06\xd8\x10\x15\x90\x05\xf0\x05\x00\x10\x1a\xf0\x08\x00\x16\x1c\x98\x48\x9d\x53\xa0\x12\x99\x57\x9c\x57\x98\x48\xd4\x15\x25\x88\x46\xe0\x20\x25\xd0\x11\x30\x90\x15\x98\x13\x91\x1b\x90\x1b\xa8\x35\x88\x06\xd8\x0f\x15\x98\x03\x9f\x08\x9a\x08\xa0\x16\xd1\x18\x28\xd4\x18\x28\xd1\x0f\x28\xd0\x08\x28\xf8\xdd\x0c\x15\x95\x7e\xd0\x0b\x26\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x5c\xd0\x08\x3a\xb0\x45\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[38]; + } +ntpath_toplevel_consts_45_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 37, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x25\x1d\x47\x18\x00\xc2\x03\x1d\x42\x21\x00\xc2\x20\x01\x47\x18\x00\xc2\x21\x1b\x42\x3c\x03\xc2\x3c\x44\x1b\x47\x18\x00\xc7\x18\x25\x47\x3d\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_drivesplits = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "drivesplits", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_split_paths = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "split_paths", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_common = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "common", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +ntpath_toplevel_consts_45_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & const_str_paths._ascii.ob_base, + & const_str_drivesplits._ascii.ob_base, + & const_str_split_paths._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + & const_str_drive._ascii.ob_base, + &_Py_ID(path), + & const_str_common._ascii.ob_base, + & const_str_s1._ascii.ob_base, + & const_str_s2._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_c._ascii.ob_base, + & const_str_prefix._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +ntpath_toplevel_consts_45_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = " @@@", +}; +static + struct _PyCode_DEF(1024) +ntpath_toplevel_consts_45 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 512, + }, + .co_consts = & ntpath_toplevel_consts_45_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_45_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_45_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 797, + .co_nlocalsplus = 15, + .co_nlocals = 12, + .co_nplaincellvars = 3, + .co_ncellvars = 3, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_45_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & ntpath_toplevel_consts_45_localspluskinds.ob_base.ob_base, + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = & const_str_commonpath._ascii.ob_base, + .co_qualname = & const_str_commonpath._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x0c\x87\x0d\x87\x0e\x97\x00\x7c\x00\x73\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x03\x8a\x0e\x64\x04\x8a\x0c\x64\x05\x8a\x0d\x6e\x06\x64\x06\x8a\x0e\x64\x07\x8a\x0c\x64\x08\x8a\x0d\x09\x00\x88\x0c\x88\x0e\x66\x02\x64\x09\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x88\x0e\x66\x01\x64\x0a\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x0e\x66\x01\x64\x0b\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x01\x00\x00\x7d\x03\x6e\x1e\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0e\x84\x00\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0f\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x0c\x89\x0e\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x05\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x0e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x88\x0d\x66\x01\x64\x11\x84\x08\x7c\x06\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x88\x0d\x66\x01\x64\x12\x84\x08\x7c\x02\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1d\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x7c\x0a\x7c\x08\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0c\x7c\x06\x64\x0d\x7c\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x01\x00\x6e\x18\x8c\x1e\x7c\x06\x64\x0d\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x03\x72\x05\x7c\x04\x89\x0e\x7a\x00\x00\x00\x6e\x01\x7c\x04\x7d\x0b\x7c\x0b\x89\x0e\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00\x23\x00\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x14\x01\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x64\x13\x67\x01\x7c\x00\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 3, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str__isdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_isdir", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +ntpath_toplevel_consts_46 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__isdir._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[48]; + }_object; + } +ntpath_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 48, + }, + .ob_item = { + & ntpath_toplevel_consts_0._ascii.ob_base, + &_Py_STR(dot), + & ntpath_toplevel_consts_2._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & ntpath_toplevel_consts_4._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & ntpath_toplevel_consts_6._ascii.ob_base, + & const_str_nul._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & codecs_toplevel_consts_3._object.ob_base.ob_base, + & ntpath_toplevel_consts_11._object.ob_base.ob_base, + & ntpath_toplevel_consts_12.ob_base.ob_base, + & ntpath_toplevel_consts_13._object.ob_base.ob_base, + & ntpath_toplevel_consts_14.ob_base.ob_base, + & ntpath_toplevel_consts_15.ob_base.ob_base, + & ntpath_toplevel_consts_16.ob_base.ob_base, + & ntpath_toplevel_consts_17.ob_base.ob_base, + & ntpath_toplevel_consts_18.ob_base.ob_base, + & ntpath_toplevel_consts_19.ob_base.ob_base, + & ntpath_toplevel_consts_20.ob_base.ob_base, + & ntpath_toplevel_consts_21.ob_base.ob_base, + & ntpath_toplevel_consts_22.ob_base.ob_base, + & ntpath_toplevel_consts_23.ob_base.ob_base, + & ntpath_toplevel_consts_24.ob_base.ob_base, + & ntpath_toplevel_consts_25._object.ob_base.ob_base, + & ntpath_toplevel_consts_26.ob_base.ob_base, + & ntpath_toplevel_consts_27.ob_base.ob_base, + & ntpath_toplevel_consts_28.ob_base.ob_base, + & ntpath_toplevel_consts_29._object.ob_base.ob_base, + & ntpath_toplevel_consts_30.ob_base.ob_base, + & ntpath_toplevel_consts_31.ob_base.ob_base, + & ntpath_toplevel_consts_32.ob_base.ob_base, + & ntpath_toplevel_consts_33._object.ob_base.ob_base, + & ntpath_toplevel_consts_34.ob_base.ob_base, + & ntpath_toplevel_consts_35._object.ob_base.ob_base, + & ntpath_toplevel_consts_36.ob_base.ob_base, + & ntpath_toplevel_consts_37.ob_base.ob_base, + Py_False, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & ntpath_toplevel_consts_40.ob_base.ob_base, + & const_str_getwindowsversion._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & ntpath_toplevel_consts_44.ob_base.ob_base, + & ntpath_toplevel_consts_45.ob_base.ob_base, + & ntpath_toplevel_consts_46._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__winapi = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_winapi", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[57]; + }_object; + } +ntpath_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 57, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + & const_str_devnull._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + &_Py_ID(__all__), + & const_str__get_bothseps._ascii.ob_base, + & const_str__winapi._ascii.ob_base, + & const_str_LCMapStringEx._ascii.ob_base, + & const_str__LCMapStringEx._ascii.ob_base, + & const_str_LOCALE_NAME_INVARIANT._ascii.ob_base, + & const_str__LOCALE_NAME_INVARIANT._ascii.ob_base, + & const_str_LCMAP_LOWERCASE._ascii.ob_base, + & const_str__LCMAP_LOWERCASE._ascii.ob_base, + & const_str_normcase._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + &_Py_ID(join), + & const_str_splitdrive._ascii.ob_base, + & const_str_split._ascii.ob_base, + & const_str_splitext._ascii.ob_base, + & const_str__splitext._ascii.ob_base, + & const_str_basename._ascii.ob_base, + & const_str_dirname._ascii.ob_base, + & const_str_islink._ascii.ob_base, + & const_str_lexists._ascii.ob_base, + & const_str_nt._ascii.ob_base, + & const_str__getvolumepathname._ascii.ob_base, + & const_str_ismount._ascii.ob_base, + & const_str_expanduser._ascii.ob_base, + & const_str_expandvars._ascii.ob_base, + & const_str__path_normpath._ascii.ob_base, + & const_str_normpath._ascii.ob_base, + & const_str__abspath_fallback._ascii.ob_base, + & const_str__getfullpathname._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str__getfinalpathname._ascii.ob_base, + & const_str_readlink._ascii.ob_base, + & const_str__nt_readlink._ascii.ob_base, + & const_str__readlink_deep._ascii.ob_base, + & const_str__getfinalpathname_nonstrict._ascii.ob_base, + & const_str_realpath._ascii.ob_base, + & const_str_hasattr._ascii.ob_base, + & const_str_getwindowsversion._ascii.ob_base, + & const_str_supports_unicode_filenames._ascii.ob_base, + & const_str_relpath._ascii.ob_base, + & const_str_commonpath._ascii.ob_base, + & const_str__isdir._ascii.ob_base, + & const_str_isdir._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[1028]; + } +ntpath_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 1027, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x04\x04\x01\x04\xf0\x00\x04\x01\x04\xf0\x12\x00\x0a\x0d\x80\x06\xd8\x09\x0d\x80\x06\xd8\x09\x0c\x80\x06\xd8\x06\x0a\x80\x03\xd8\x0a\x0d\x80\x07\xd8\x09\x0c\x80\x06\xd8\x0a\x15\x80\x07\xd8\x0a\x0f\x80\x07\xe0\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x12\xd0\x00\x12\xd0\x00\x12\xd0\x00\x12\xd8\x00\x19\xd0\x00\x19\xd0\x00\x19\xd0\x00\x19\xf0\x06\x06\x0b\x41\x01\xf0\x00\x06\x0b\x41\x01\xf0\x00\x06\x0b\x41\x01\x80\x07\xf0\x10\x04\x01\x15\xf0\x00\x04\x01\x15\xf0\x00\x04\x01\x15\xf0\x14\x21\x01\x2c\xf0\x02\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x0a\x11\x05\x38\xf0\x00\x11\x05\x38\xf0\x00\x11\x05\x38\xf0\x00\x11\x05\x38\xf8\xf0\x24\x00\x08\x13\xf0\x00\x09\x01\x2c\xf0\x00\x09\x01\x2c\xf0\x00\x09\x01\x2c\xf0\x02\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x03\x09\x01\x2c\xf8\xf8\xf8\xf0\x24\x10\x01\x11\xf0\x00\x10\x01\x11\xf0\x00\x10\x01\x11\xf0\x28\x29\x01\x0e\xf0\x00\x29\x01\x0e\xf0\x00\x29\x01\x0e\xf0\x5e\x01\x2e\x01\x14\xf0\x00\x2e\x01\x14\xf0\x00\x2e\x01\x14\xf0\x6c\x01\x0f\x01\x1a\xf0\x00\x0f\x01\x1a\xf0\x00\x0f\x01\x1a\xf0\x2e\x05\x01\x38\xf0\x00\x05\x01\x38\xf0\x00\x05\x01\x38\xf0\x0c\x00\x14\x1f\xd4\x13\x28\xd4\x13\x30\x80\x08\xd4\x00\x10\xf0\x0a\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x0e\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x0e\x08\x01\x24\xf0\x00\x08\x01\x24\xf0\x00\x08\x01\x24\xf0\x18\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x24\x03\x01\x1e\xd8\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xf8\xd8\x07\x12\xf0\x00\x01\x01\x1e\xf0\x00\x01\x01\x1e\xf0\x00\x01\x01\x1e\xd8\x19\x1d\xd0\x04\x16\xd0\x04\x16\xd0\x04\x16\xf0\x03\x01\x01\x1e\xf8\xf8\xf8\xf0\x04\x11\x01\x15\xf0\x00\x11\x01\x15\xf0\x00\x11\x01\x15\xf0\x3a\x2d\x01\x1f\xf0\x00\x2d\x01\x1f\xf0\x00\x2d\x01\x1f\xf0\x7a\x01\x6a\x01\x01\x0f\xf0\x00\x6a\x01\x01\x0f\xf0\x00\x6a\x01\x01\x0f\xf0\x60\x03\x33\x01\x2b\xd8\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xf0\x5a\x01\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf8\xf0\x57\x01\x00\x08\x13\xf0\x00\x28\x01\x28\xf0\x00\x28\x01\x28\xf0\x00\x28\x01\x28\xf0\x02\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x03\x28\x01\x28\xf8\xf8\xf8\xf0\x66\x01\x0e\x01\x1a\xf0\x00\x0e\x01\x1a\xf0\x00\x0e\x01\x1a\xf0\x22\x0c\x01\x2b\xd8\x04\x23\xd0\x04\x23\xd0\x04\x23\xd0\x04\x23\xd0\x04\x23\xd0\x04\x23\xf0\x0c\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf8\xf0\x09\x00\x08\x13\xf0\x00\x01\x01\x20\xf0\x00\x01\x01\x20\xf0\x00\x01\x01\x20\xd8\x0e\x1f\x80\x47\x80\x47\x80\x47\xf0\x03\x01\x01\x20\xf8\xf8\xf8\xf0\x16\x5d\x02\x01\x14\xd8\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xf0\x0a\x28\x05\x14\xf0\x00\x28\x05\x14\xf0\x00\x28\x05\x14\xf0\x54\x01\x2f\x05\x14\xf0\x00\x2f\x05\x14\xf0\x00\x2f\x05\x14\xf0\x62\x01\x00\x22\x27\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf8\xf0\x7f\x02\x00\x08\x13\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xe0\x0f\x16\x80\x48\x80\x48\x80\x48\xf0\x05\x02\x01\x17\xf8\xf8\xf8\xf0\x7e\x04\x00\x1f\x26\x98\x67\xa0\x63\xd0\x2b\x3e\xd1\x1e\x3f\xd4\x1e\x3f\xf0\x00\x01\x1f\x3e\xd8\x1e\x33\x98\x63\xd4\x1e\x33\xd1\x1e\x35\xd4\x1e\x35\xb0\x61\xd4\x1e\x38\xb8\x41\xd2\x1e\x3d\xf0\x03\x00\x01\x1b\xf0\x06\x2b\x01\x0e\xf0\x00\x2b\x01\x0e\xf0\x00\x2b\x01\x0e\xf0\x00\x2b\x01\x0e\xf0\x70\x01\x31\x01\x0e\xf0\x00\x31\x01\x0e\xf0\x00\x31\x01\x0e\xf0\x68\x01\x08\x01\x09\xf0\x0a\x00\x05\x23\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xf8\xd8\x07\x12\xf0\x00\x02\x01\x09\xf0\x00\x02\x01\x09\xf0\x00\x02\x01\x09\xe0\x04\x08\x80\x44\x80\x44\xf0\x05\x02\x01\x09\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[106]; + } +ntpath_toplevel_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 105, + }, + .ob_shash = -1, + .ob_sval = "\xaf\x0d\x3d\x00\xbd\x08\x41\x08\x03\xc1\x07\x01\x41\x08\x03\xc1\x38\x06\x41\x3f\x00\xc1\x3f\x07\x42\x09\x03\xc2\x08\x01\x42\x09\x03\xc2\x16\x06\x42\x20\x00\xc2\x20\x08\x42\x2b\x03\xc2\x2a\x01\x42\x2b\x03\xc2\x32\x06\x42\x3c\x00\xc2\x3c\x07\x43\x06\x03\xc3\x05\x01\x43\x06\x03\xc3\x0a\x08\x43\x1f\x00\xc3\x1f\x07\x43\x29\x03\xc3\x28\x01\x43\x29\x03\xc4\x19\x06\x44\x21\x00\xc4\x21\x05\x44\x2a\x03\xc4\x29\x01\x44\x2a\x03", +}; +static + struct _PyCode_DEF(602) +ntpath_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 301, + }, + .co_consts = & ntpath_toplevel_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_exceptiontable.ob_base.ob_base, + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & ntpath_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x64\x02\x5a\x02\x64\x01\x5a\x03\x64\x03\x5a\x04\x64\x04\x5a\x05\x64\x05\x5a\x06\x64\x06\x5a\x07\x64\x07\x5a\x08\x64\x08\x64\x09\x6c\x09\x5a\x09\x64\x08\x64\x09\x6c\x0a\x5a\x0a\x64\x08\x64\x09\x6c\x0b\x5a\x0b\x64\x08\x64\x09\x6c\x0c\x5a\x0c\x64\x08\x64\x0a\x6c\x0c\x54\x00\x67\x00\x64\x0b\xa2\x01\x5a\x0d\x64\x0c\x84\x00\x5a\x0e\x09\x00\x64\x08\x64\x0d\x6c\x0f\x6d\x10\x5a\x11\x6d\x12\x5a\x13\x6d\x14\x5a\x15\x01\x00\x64\x0e\x84\x00\x5a\x16\x6e\x0e\x23\x00\x65\x17\x24\x00\x72\x06\x01\x00\x64\x0f\x84\x00\x5a\x16\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x10\x84\x00\x5a\x18\x64\x11\x84\x00\x5a\x19\x64\x12\x84\x00\x5a\x1a\x64\x13\x84\x00\x5a\x1b\x64\x14\x84\x00\x5a\x1c\x65\x0c\x6a\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1c\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x15\x84\x00\x5a\x1e\x64\x16\x84\x00\x5a\x1f\x64\x17\x84\x00\x5a\x20\x64\x18\x84\x00\x5a\x21\x09\x00\x64\x08\x64\x19\x6c\x22\x6d\x23\x5a\x23\x01\x00\x6e\x0d\x23\x00\x65\x17\x24\x00\x72\x05\x01\x00\x64\x09\x5a\x23\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x1a\x84\x00\x5a\x24\x64\x1b\x84\x00\x5a\x25\x64\x1c\x84\x00\x5a\x26\x09\x00\x64\x08\x64\x1d\x6c\x22\x6d\x27\x5a\x27\x01\x00\x64\x1e\x84\x00\x5a\x28\x6e\x0e\x23\x00\x65\x17\x24\x00\x72\x06\x01\x00\x64\x1f\x84\x00\x5a\x28\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x20\x84\x00\x5a\x29\x09\x00\x64\x08\x64\x21\x6c\x22\x6d\x2a\x5a\x2a\x01\x00\x64\x22\x84\x00\x5a\x2b\x6e\x0d\x23\x00\x65\x17\x24\x00\x72\x05\x01\x00\x65\x29\x5a\x2b\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x08\x64\x23\x6c\x22\x6d\x2c\x5a\x2c\x6d\x2d\x5a\x2e\x01\x00\x64\x24\x84\x00\x5a\x2f\x64\x25\x84\x00\x5a\x30\x64\x26\x64\x27\x9c\x01\x64\x28\x84\x02\x5a\x31\x6e\x0d\x23\x00\x65\x17\x24\x00\x72\x05\x01\x00\x65\x2b\x5a\x31\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x65\x32\x65\x0a\x64\x29\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x18\x02\x00\x65\x0a\x6a\x33\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x2a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x2b\x6b\x05\x00\x00\x00\x00\x5a\x34\x64\x2f\x64\x2c\x84\x01\x5a\x35\x64\x2d\x84\x00\x5a\x36\x09\x00\x64\x08\x64\x2e\x6c\x22\x6d\x37\x5a\x38\x01\x00\x64\x09\x53\x00\x23\x00\x65\x17\x24\x00\x72\x04\x01\x00\x59\x00\x64\x09\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static void ntpath_do_patchups(void) { +} + +PyObject * +_Py_get_ntpath_toplevel(void) +{ + ntpath_do_patchups(); + return Py_NewRef((PyObject *) &ntpath_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[474]; + } +posixpath_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 473, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x6f\x6d\x6d\x6f\x6e\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x6f\x6e\x20\x50\x6f\x73\x69\x78\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x73\x2e\x0a\x0a\x49\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x20\x61\x6e\x64\x20\x72\x65\x66\x65\x72\x20\x74\x6f\x0a\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x61\x73\x20\x6f\x73\x2e\x70\x61\x74\x68\x2e\x20\x20\x54\x68\x65\x20\x22\x6f\x73\x2e\x70\x61\x74\x68\x22\x20\x6e\x61\x6d\x65\x20\x69\x73\x20\x61\x6e\x20\x61\x6c\x69\x61\x73\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x0a\x6d\x6f\x64\x75\x6c\x65\x20\x6f\x6e\x20\x50\x6f\x73\x69\x78\x20\x73\x79\x73\x74\x65\x6d\x73\x3b\x20\x6f\x6e\x20\x6f\x74\x68\x65\x72\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x28\x65\x2e\x67\x2e\x20\x57\x69\x6e\x64\x6f\x77\x73\x29\x2c\x0a\x6f\x73\x2e\x70\x61\x74\x68\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x69\x6e\x20\x61\x20\x6d\x61\x6e\x6e\x65\x72\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x74\x6f\x20\x74\x68\x61\x74\x0a\x70\x6c\x61\x74\x66\x6f\x72\x6d\x2c\x20\x61\x6e\x64\x20\x69\x73\x20\x61\x6e\x20\x61\x6c\x69\x61\x73\x20\x74\x6f\x20\x61\x6e\x6f\x74\x68\x65\x72\x20\x6d\x6f\x64\x75\x6c\x65\x20\x28\x65\x2e\x67\x2e\x20\x6e\x74\x70\x61\x74\x68\x29\x2e\x0a\x0a\x53\x6f\x6d\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x61\x63\x74\x75\x61\x6c\x6c\x79\x20\x62\x65\x20\x75\x73\x65\x66\x75\x6c\x20\x6f\x6e\x20\x6e\x6f\x6e\x2d\x50\x6f\x73\x69\x78\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x6f\x6f\x2c\x20\x65\x2e\x67\x2e\x0a\x66\x6f\x72\x20\x6d\x61\x6e\x69\x70\x75\x6c\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x20\x6f\x66\x20\x55\x52\x4c\x73\x2e\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +posixpath_toplevel_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "/bin:/usr/bin", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +posixpath_toplevel_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "/dev/null", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[38]; + }_object; + } +posixpath_toplevel_consts_10 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 38, + }, + .ob_item = { + & const_str_normcase._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + &_Py_ID(join), + & const_str_splitdrive._ascii.ob_base, + & const_str_split._ascii.ob_base, + & const_str_splitext._ascii.ob_base, + & const_str_basename._ascii.ob_base, + & const_str_dirname._ascii.ob_base, + & const_str_commonprefix._ascii.ob_base, + & const_str_getsize._ascii.ob_base, + & const_str_getmtime._ascii.ob_base, + & const_str_getatime._ascii.ob_base, + & const_str_getctime._ascii.ob_base, + & const_str_islink._ascii.ob_base, + & const_str_exists._ascii.ob_base, + & const_str_lexists._ascii.ob_base, + & const_str_isdir._ascii.ob_base, + & const_str_isfile._ascii.ob_base, + & const_str_ismount._ascii.ob_base, + & const_str_expanduser._ascii.ob_base, + & const_str_expandvars._ascii.ob_base, + & const_str_normpath._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str_samefile._ascii.ob_base, + & const_str_sameopenfile._ascii.ob_base, + & const_str_samestat._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + & const_str_devnull._ascii.ob_base, + & const_str_realpath._ascii.ob_base, + & const_str_supports_unicode_filenames._ascii.ob_base, + & const_str_relpath._ascii.ob_base, + & const_str_commonpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +posixpath_toplevel_consts_11_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__get_sep = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_sep", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[31]; + } +posixpath_toplevel_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 30, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x13\xd8\x0f\x13\x88\x74\xe0\x0f\x12\x88\x73", +}; +static + struct _PyCode_DEF(52) +posixpath_toplevel_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & posixpath_toplevel_consts_11_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 41, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str__get_sep._ascii.ob_base, + .co_qualname = & const_str__get_sep._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[55]; + } +posixpath_toplevel_consts_12_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 54, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Normalize case of pathname. Has no effect under Posix", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +posixpath_toplevel_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & posixpath_toplevel_consts_12_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +posixpath_toplevel_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[17]; + } +posixpath_toplevel_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 16, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x39\x90\x51\x89\x3c\x8c\x3c\xd0\x04\x17", +}; +static + struct _PyCode_DEF(42) +posixpath_toplevel_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & posixpath_toplevel_consts_12_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 52, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_normcase._ascii.ob_base, + .co_qualname = & const_str_normcase._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +posixpath_toplevel_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & ntpath_toplevel_consts_16_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +posixpath_toplevel_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str__get_sep._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[45]; + } +posixpath_toplevel_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 44, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x0b\x0c\x8f\x3c\x8a\x3c\x98\x03\xd1\x0b\x1c\xd4\x0b\x1c\xd0\x04\x1c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +posixpath_toplevel_consts_13_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_s._ascii.ob_base, + & const_str_sep._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(114) +posixpath_toplevel_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 57, + }, + .co_consts = & posixpath_toplevel_consts_13_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 60, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_13_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_isabs._ascii.ob_base, + .co_qualname = & const_str_isabs._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[231]; + } +posixpath_toplevel_consts_14_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 230, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x4a\x6f\x69\x6e\x20\x74\x77\x6f\x20\x6f\x72\x20\x6d\x6f\x72\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x2c\x20\x69\x6e\x73\x65\x72\x74\x69\x6e\x67\x20\x27\x2f\x27\x20\x61\x73\x20\x6e\x65\x65\x64\x65\x64\x2e\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x6e\x79\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x20\x69\x73\x20\x61\x6e\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x70\x61\x74\x68\x2c\x20\x61\x6c\x6c\x20\x70\x72\x65\x76\x69\x6f\x75\x73\x20\x70\x61\x74\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x0a\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x63\x61\x72\x64\x65\x64\x2e\x20\x20\x41\x6e\x20\x65\x6d\x70\x74\x79\x20\x6c\x61\x73\x74\x20\x70\x61\x72\x74\x20\x77\x69\x6c\x6c\x20\x72\x65\x73\x75\x6c\x74\x20\x69\x6e\x20\x61\x20\x70\x61\x74\x68\x20\x74\x68\x61\x74\x0a\x20\x20\x20\x20\x65\x6e\x64\x73\x20\x77\x69\x74\x68\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +posixpath_toplevel_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & posixpath_toplevel_consts_14_consts_0._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + &_Py_ID(join), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +posixpath_toplevel_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str__get_sep._ascii.ob_base, + & const_str_map._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str_endswith._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_BytesWarning._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + & const_str__check_arg_types._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[249]; + } +posixpath_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 248, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x0b\x0c\x80\x44\xf0\x02\x0c\x05\x0e\xd8\x0f\x10\xf0\x00\x01\x09\x1b\xd8\x0c\x10\x90\x12\x90\x21\x90\x12\x8c\x48\x90\x73\x89\x4e\x88\x4e\xdd\x11\x14\x95\x52\x94\x59\xa0\x01\xd1\x11\x22\xd4\x11\x22\xf0\x00\x06\x09\x20\xf0\x00\x06\x09\x20\x88\x41\xd8\x0f\x10\x8f\x7c\x8a\x7c\x98\x43\xd1\x0f\x20\xd4\x0f\x20\xf0\x00\x05\x0d\x20\xd8\x17\x18\x90\x04\x90\x04\xd8\x15\x19\xf0\x00\x03\x0d\x20\x98\x54\x9f\x5d\x9a\x5d\xa8\x33\xd1\x1d\x2f\xd4\x1d\x2f\xf0\x00\x03\x0d\x20\xd8\x10\x14\x98\x01\x91\x09\x90\x04\x90\x04\xe0\x10\x14\x98\x03\x98\x61\x99\x07\x91\x0f\x90\x04\x90\x04\xf0\x0d\x06\x09\x20\xf8\xf5\x0e\x00\x0d\x16\x95\x7e\xa5\x7c\xd0\x0b\x34\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x56\xa8\x51\xd0\x08\x33\xb0\x11\xd0\x08\x33\xd0\x08\x33\xd0\x08\x33\xd0\x08\x33\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8\xf0\x06\x00\x0c\x10\x80\x4b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +posixpath_toplevel_consts_14_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\xa7\x41\x29\x42\x11\x00\xc2\x11\x2c\x42\x3d\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +posixpath_toplevel_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_a._ascii.ob_base, + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + &_Py_ID(path), + & const_str_b._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(388) +posixpath_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 194, + }, + .co_consts = & posixpath_toplevel_consts_14_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_consts_14_exceptiontable.ob_base.ob_base, + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 71, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_ID(join), + .co_qualname = &_Py_ID(join), + .co_linetable = & posixpath_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x7d\x03\x09\x00\x7c\x01\x73\x0d\x7c\x03\x64\x01\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7a\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x3f\x7d\x04\x7c\x04\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x7c\x04\x7d\x03\x8c\x1a\x7c\x03\x72\x15\x7c\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x06\x7c\x03\x7c\x04\x7a\x0d\x00\x00\x7d\x03\x8c\x37\x7c\x03\x7c\x02\x7c\x04\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x03\x8c\x40\x6e\x2f\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x15\x01\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x67\x02\x7c\x01\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[129]; + } +posixpath_toplevel_consts_15_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 128, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x75\x70\x6c\x65\x20\x22\x28\x68\x65\x61\x64\x2c\x20\x74\x61\x69\x6c\x29\x22\x20\x77\x68\x65\x72\x65\x20\x22\x74\x61\x69\x6c\x22\x20\x69\x73\x0a\x20\x20\x20\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x66\x69\x6e\x61\x6c\x20\x73\x6c\x61\x73\x68\x2e\x20\x20\x45\x69\x74\x68\x65\x72\x20\x70\x61\x72\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & posixpath_toplevel_consts_15_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +posixpath_toplevel_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str__get_sep._ascii.ob_base, + & const_str_rfind._ascii.ob_base, + &_Py_ID(len), + & const_str_rstrip._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[129]; + } +posixpath_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 128, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x08\x09\x8f\x07\x8a\x07\x90\x03\x89\x0c\x8c\x0c\x90\x71\xd1\x08\x18\x80\x41\xd8\x11\x12\x90\x32\x90\x41\x90\x32\x94\x15\x98\x01\x98\x21\x98\x22\x98\x22\x9c\x05\x88\x24\x80\x44\xd8\x07\x0b\xf0\x00\x01\x05\x20\x90\x04\x98\x03\x9d\x43\xa0\x04\x99\x49\x9c\x49\x99\x0d\xd2\x10\x25\xd0\x10\x25\xd8\x0f\x13\x8f\x7b\x8a\x7b\x98\x33\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xd8\x0b\x0f\x90\x14\x88\x3a\xd0\x04\x15", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +posixpath_toplevel_consts_15_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_head._ascii.ob_base, + & const_str_tail._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(258) +posixpath_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 129, + }, + .co_consts = & posixpath_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 100, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_split._ascii.ob_base, + .co_qualname = & const_str_split._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\x7d\x02\x7c\x00\x64\x02\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7d\x03\x7c\x03\x72\x2b\x7c\x03\x7c\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x05\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x15\x7c\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x7c\x04\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +posixpath_toplevel_consts_16_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + &_Py_STR(dot), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[79]; + } +posixpath_toplevel_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 78, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x11\x90\x21\x95\x55\xd1\x07\x1b\xd4\x07\x1b\xf0\x00\x05\x05\x15\xd8\x0e\x12\x88\x03\xd8\x11\x15\x88\x06\x88\x06\xe0\x0e\x11\x88\x03\xd8\x11\x14\x88\x06\xdd\x0b\x16\xd4\x0b\x20\xa0\x11\xa0\x43\xa8\x14\xa8\x76\xd1\x0b\x36\xd4\x0b\x36\xd0\x04\x36", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_16_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(148) +posixpath_toplevel_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 74, + }, + .co_consts = & posixpath_toplevel_consts_16_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 117, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_splitext._ascii.ob_base, + .co_qualname = & const_str_splitext._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x05\x64\x01\x7d\x01\x64\x02\x7d\x02\x6e\x04\x64\x03\x7d\x01\x64\x04\x7d\x02\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x00\x7c\x02\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[75]; + } +posixpath_toplevel_consts_17_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 74, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x69\x6e\x74\x6f\x20\x64\x72\x69\x76\x65\x20\x61\x6e\x64\x20\x70\x61\x74\x68\x2e\x20\x4f\x6e\x20\x50\x6f\x73\x69\x78\x2c\x20\x64\x72\x69\x76\x65\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x0a\x20\x20\x20\x20\x65\x6d\x70\x74\x79\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_17_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & posixpath_toplevel_consts_17_consts_0._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[35]; + } +posixpath_toplevel_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 34, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xd8\x0b\x0c\x88\x52\x88\x61\x88\x52\x8c\x35\x90\x21\x88\x38\x80\x4f", +}; +static + struct _PyCode_DEF(66) +posixpath_toplevel_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & posixpath_toplevel_consts_17_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 131, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_splitdrive._ascii.ob_base, + .co_qualname = & const_str_splitdrive._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x64\x01\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & ntpath_toplevel_consts_21_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +posixpath_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str__get_sep._ascii.ob_base, + & const_str_rfind._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[60]; + } +posixpath_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 59, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x08\x09\x8f\x07\x8a\x07\x90\x03\x89\x0c\x8c\x0c\x90\x71\xd1\x08\x18\x80\x41\xd8\x0b\x0c\x88\x51\x88\x52\x88\x52\x8c\x35\x80\x4c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_18_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_i._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(140) +posixpath_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 70, + }, + .co_consts = & posixpath_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 140, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_basename._ascii.ob_base, + .co_qualname = & const_str_basename._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\x7d\x02\x7c\x00\x7c\x02\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_19_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & ntpath_toplevel_consts_22_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[110]; + } +posixpath_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 109, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x08\x09\x8f\x07\x8a\x07\x90\x03\x89\x0c\x8c\x0c\x90\x71\xd1\x08\x18\x80\x41\xd8\x0b\x0c\x88\x52\x88\x61\x88\x52\x8c\x35\x80\x44\xd8\x07\x0b\xf0\x00\x01\x05\x20\x90\x04\x98\x03\x9d\x43\xa0\x04\x99\x49\x9c\x49\x99\x0d\xd2\x10\x25\xd0\x10\x25\xd8\x0f\x13\x8f\x7b\x8a\x7b\x98\x33\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xd8\x0b\x0f\x80\x4b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +posixpath_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_head._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(234) +posixpath_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 117, + }, + .co_consts = & posixpath_toplevel_consts_19_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 150, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_dirname._ascii.ob_base, + .co_qualname = & const_str_dirname._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\x7d\x02\x7c\x00\x64\x02\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x72\x2b\x7c\x03\x7c\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x05\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x15\x7c\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +posixpath_toplevel_consts_20_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether a path is a symbolic link", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +posixpath_toplevel_consts_20_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & posixpath_toplevel_consts_20_consts_0._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[82]; + } +posixpath_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 81, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xa5\x1e\xd0\x0b\x30\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", +}; +static + struct _PyCode_DEF(156) +posixpath_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 78, + }, + .co_consts = & posixpath_toplevel_consts_20_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = & ntpath_toplevel_consts_23_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 164, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_islink._ascii.ob_base, + .co_qualname = & const_str_islink._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x1e\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[67]; + } +posixpath_toplevel_consts_21_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 66, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x08\x0a\x8c\x08\x90\x14\x89\x0e\x8c\x0e\x88\x0e\x88\x0e\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe0\x0b\x0f\x88\x34", +}; +static + struct _PyCode_DEF(98) +posixpath_toplevel_consts_21 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & ntpath_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 174, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_lexists._ascii.ob_base, + .co_qualname = & const_str_lexists._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_21_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[37]; + } +posixpath_toplevel_consts_22_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 36, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Test whether a path is a mount point", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +posixpath_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & posixpath_toplevel_consts_22_consts_0._ascii.ob_base, + Py_False, + & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, + & ntpath_toplevel_consts_2._ascii.ob_base, + Py_True, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +posixpath_toplevel_consts_22_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_lstat._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_S_ISLNK._ascii.ob_base, + & const_str_st_mode._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + &_Py_ID(join), + & const_str_realpath._ascii.ob_base, + & const_str_st_dev._ascii.ob_base, + & const_str_st_ino._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[296]; + } +posixpath_toplevel_consts_22_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 295, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x08\x05\x19\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\xf5\x0c\x00\x0c\x10\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xf0\x00\x01\x09\x19\xd8\x13\x18\x90\x35\xf0\x03\x01\x09\x19\xf8\xf5\x0b\x00\x0d\x14\x95\x5a\xd0\x0b\x20\xf0\x00\x02\x05\x15\xf0\x00\x02\x05\x15\xf0\x00\x02\x05\x15\xe0\x0f\x14\x88\x75\x88\x75\xf0\x05\x02\x05\x15\xf8\xf8\xf8\xf5\x10\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x22\xdd\x11\x15\x90\x64\x98\x45\xd1\x11\x22\xd4\x11\x22\x88\x06\x88\x06\xe5\x11\x15\x90\x64\x98\x44\xd1\x11\x21\xd4\x11\x21\x88\x06\xdd\x0d\x15\x90\x66\xd1\x0d\x1d\xd4\x0d\x1d\x80\x46\xf0\x02\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x66\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xf0\x06\x00\x0c\x0e\x8c\x39\x80\x44\xd8\x0b\x0d\x8c\x39\x80\x44\xd8\x07\x0b\x88\x74\x82\x7c\x80\x7c\xd8\x0f\x13\x88\x74\xd8\x0b\x0d\x8c\x39\x80\x44\xd8\x0b\x0d\x8c\x39\x80\x44\xd8\x07\x0b\x88\x74\x82\x7c\x80\x7c\xd8\x0f\x13\x88\x74\xd8\x0b\x10\x88\x35", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +posixpath_toplevel_consts_22_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x82\x14\x32\x00\xb2\x11\x41\x07\x03\xc1\x06\x01\x41\x07\x03\xc2\x24\x14\x42\x39\x00\xc2\x39\x11\x43\x0e\x03\xc3\x0d\x01\x43\x0e\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_dev1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dev1", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_dev2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dev2", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_ino1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ino1", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_ino2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ino2", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +posixpath_toplevel_consts_22_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(path), + & const_str_s1._ascii.ob_base, + &_Py_ID(parent), + & const_str_s2._ascii.ob_base, + & const_str_dev1._ascii.ob_base, + & const_str_dev2._ascii.ob_base, + & const_str_ino1._ascii.ob_base, + & const_str_ino2._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(510) +posixpath_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 255, + }, + .co_consts = & posixpath_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_22_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_consts_22_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 186, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_ismount._ascii.ob_base, + .co_qualname = & const_str_ismount._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_22_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x6e\x18\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x11\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x10\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x18\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x03\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x04\x7c\x05\x6b\x03\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x7c\x01\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x03\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x06\x7c\x07\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[80]; + } +posixpath_toplevel_consts_23_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 79, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x78\x70\x61\x6e\x64\x20\x7e\x20\x61\x6e\x64\x20\x7e\x75\x73\x65\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x73\x2e\x20\x20\x49\x66\x20\x75\x73\x65\x72\x20\x6f\x72\x20\x24\x48\x4f\x4d\x45\x20\x69\x73\x20\x75\x6e\x6b\x6e\x6f\x77\x6e\x2c\x0a\x20\x20\x20\x20\x64\x6f\x20\x6e\x6f\x74\x68\x69\x6e\x67\x2e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_HOME = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HOME", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_ASCII = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ASCII", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_vxworks = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "vxworks", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +posixpath_toplevel_consts_23_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & posixpath_toplevel_consts_23_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[126]), + & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & const_str_HOME._ascii.ob_base, + Py_None, + & const_str_ASCII._ascii.ob_base, + & const_str_vxworks._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_pwd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pwd", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_getpwuid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getpwuid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_getuid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getuid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_pw_dir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pw_dir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_getpwnam = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getpwnam", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[21]; + }_object; + } +posixpath_toplevel_consts_23_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 21, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str__get_sep._ascii.ob_base, + & const_str_find._ascii.ob_base, + &_Py_ID(len), + & const_str_environ._ascii.ob_base, + & const_str_pwd._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_getpwuid._ascii.ob_base, + & const_str_getuid._ascii.ob_base, + & const_str_pw_dir._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + & const_str_str._ascii.ob_base, + & const_str_getpwnam._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_platform._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str_rstrip._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[564]; + } +posixpath_toplevel_consts_23_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 563, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x14\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x13\x88\x05\xd8\x0b\x0f\x8f\x3f\x8a\x3f\x98\x35\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x0b\xdd\x0a\x12\x90\x34\x89\x2e\x8c\x2e\x80\x43\xd8\x08\x0c\x8f\x09\x8a\x09\x90\x23\x90\x71\xd1\x08\x19\xd4\x08\x19\x80\x41\xd8\x07\x08\x88\x31\x82\x75\x80\x75\xdd\x0c\x0f\x90\x04\x89\x49\x8c\x49\x88\x01\xd8\x07\x08\x88\x41\x82\x76\x80\x76\xd8\x0b\x11\x9d\x12\x9c\x1a\xd0\x0b\x23\xd0\x0b\x23\xf0\x02\x04\x0d\x1c\xd8\x10\x1a\x90\x0a\x90\x0a\x90\x0a\x90\x0a\xf8\xdd\x13\x1e\xf0\x00\x02\x0d\x1c\xf0\x00\x02\x0d\x1c\xf0\x00\x02\x0d\x1c\xe0\x17\x1b\x90\x0b\x90\x0b\x90\x0b\xf0\x05\x02\x0d\x1c\xf8\xf8\xf8\xf0\x06\x05\x0d\x1c\xd8\x1b\x1e\x9f\x3c\x9a\x3c\xad\x02\xac\x09\xa9\x0b\xac\x0b\xd1\x1b\x34\xd4\x1b\x34\xd4\x1b\x3b\x90\x08\x90\x08\xf8\xdd\x13\x1b\xf0\x00\x03\x0d\x1c\xf0\x00\x03\x0d\x1c\xf0\x00\x03\x0d\x1c\xf0\x06\x00\x18\x1c\x90\x0b\x90\x0b\x90\x0b\xf0\x07\x03\x0d\x1c\xf8\xf8\xf8\xf5\x0a\x00\x18\x1a\x94\x7a\xa0\x26\xd4\x17\x29\x88\x48\x88\x48\xf0\x04\x04\x09\x18\xd8\x0c\x16\x88\x4a\x88\x4a\x88\x4a\x88\x4a\xf8\xdd\x0f\x1a\xf0\x00\x02\x09\x18\xf0\x00\x02\x09\x18\xf0\x00\x02\x09\x18\xe0\x13\x17\x88\x4b\x88\x4b\x88\x4b\xf0\x05\x02\x09\x18\xf8\xf8\xf8\xf0\x06\x00\x10\x14\x90\x41\x90\x61\x90\x43\x8c\x79\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x01\x09\x26\xdd\x13\x16\x90\x74\x98\x57\xd1\x13\x25\xd4\x13\x25\x88\x44\xf0\x02\x05\x09\x18\xd8\x14\x17\x97\x4c\x92\x4c\xa0\x14\xd1\x14\x26\xd4\x14\x26\x88\x45\x88\x45\xf8\xdd\x0f\x17\xf0\x00\x03\x09\x18\xf0\x00\x03\x09\x18\xf0\x00\x03\x09\x18\xf0\x06\x00\x14\x18\x88\x4b\x88\x4b\x88\x4b\xf0\x07\x03\x09\x18\xf8\xf8\xf8\xf0\x08\x00\x14\x19\x94\x3c\x88\x08\xe0\x07\x0f\xd0\x07\x17\x9d\x43\x9c\x4c\xa8\x49\xd2\x1c\x35\xd0\x1c\x35\xd8\x0f\x13\x88\x0b\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x04\x05\x13\xdd\x13\x15\x94\x3b\x98\x78\xd1\x13\x28\xd4\x13\x28\x88\x08\xd8\x0f\x13\x88\x04\x88\x04\xe0\x0f\x12\x88\x04\xd8\x0f\x17\x8f\x7f\x8a\x7f\x98\x74\xd1\x0f\x24\xd4\x0f\x24\x80\x48\xd8\x0c\x14\x90\x74\x98\x41\x98\x42\x98\x42\x94\x78\xd1\x0c\x1f\xd0\x0b\x28\xa0\x44\xd0\x04\x28", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[73]; + } +posixpath_toplevel_consts_23_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 72, + }, + .ob_shash = -1, + .ob_sval = "\xc2\x15\x04\x42\x1a\x00\xc2\x1a\x0c\x42\x29\x03\xc2\x28\x01\x42\x29\x03\xc2\x2d\x2b\x43\x19\x00\xc3\x19\x0c\x43\x28\x03\xc3\x27\x01\x43\x28\x03\xc3\x3f\x04\x44\x04\x00\xc4\x04\x0c\x44\x13\x03\xc4\x12\x01\x44\x13\x03\xc5\x06\x15\x45\x1c\x00\xc5\x1c\x0c\x45\x2b\x03\xc5\x2a\x01\x45\x2b\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_pwent = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pwent", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +posixpath_toplevel_consts_23_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(path), + & const_str_tilde._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_pwd._ascii.ob_base, + & const_str_userhome._ascii.ob_base, + &_Py_ID(name), + & const_str_pwent._ascii.ob_base, + & const_str_root._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(950) +posixpath_toplevel_consts_23 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 475, + }, + .co_consts = & posixpath_toplevel_consts_23_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_consts_23_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 229, + .co_nlocalsplus = 9, + .co_nlocals = 9, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_23_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_expanduser._ascii.ob_base, + .co_qualname = & const_str_expanduser._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_23_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x01\x7d\x01\x6e\x02\x64\x02\x7d\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x64\x04\x6b\x00\x00\x00\x00\x00\x72\x0f\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x64\x03\x6b\x02\x00\x00\x00\x00\x72\x78\x64\x05\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x57\x09\x00\x64\x04\x64\x06\x6c\x09\x7d\x04\x6e\x12\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x04\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x9c\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x77\x09\x00\x64\x04\x64\x06\x6c\x09\x7d\x04\x6e\x12\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x64\x03\x7c\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x09\x00\x7c\x04\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x12\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x07\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x80\x12\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x12\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x17\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x09\x7d\x08\x6e\x02\x64\x0a\x7d\x08\x7c\x05\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x7c\x00\x7c\x03\x64\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x70\x01\x7c\x08\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[91]; + } +posixpath_toplevel_consts_24_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 90, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x78\x70\x61\x6e\x64\x20\x73\x68\x65\x6c\x6c\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x6f\x66\x20\x66\x6f\x72\x6d\x20\x24\x76\x61\x72\x20\x61\x6e\x64\x20\x24\x7b\x76\x61\x72\x7d\x2e\x20\x20\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x0a\x20\x20\x20\x20\x61\x72\x65\x20\x6c\x65\x66\x74\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +posixpath_toplevel_consts_24_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\\$(\\w+|\\{[^}]*\\})", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +posixpath_toplevel_consts_24_consts_9 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\\$(\\w+|\\{[^}]*\\})", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +posixpath_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & posixpath_toplevel_consts_24_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[36]), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & posixpath_toplevel_consts_24_consts_4.ob_base.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[123]), + (PyObject *)&_Py_SINGLETON(bytes_characters[125]), + & const_str_environb._ascii.ob_base, + & ntpath_toplevel_consts_28_consts_11._ascii.ob_base, + & posixpath_toplevel_consts_24_consts_9._ascii.ob_base, + &_Py_STR(open_br), + &_Py_STR(close_br), + Py_True, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__varprogb = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_varprogb", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_re = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "re", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__varprog = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_varprog", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_span = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "span", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_group = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "group", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[20]; + }_object; + } +posixpath_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 20, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str__varprogb._ascii.ob_base, + & const_str_re._ascii.ob_base, + & const_str_compile._ascii.ob_base, + & const_str_ASCII._ascii.ob_base, + & const_str_search._ascii.ob_base, + &_Py_ID(getattr), + & const_str__varprog._ascii.ob_base, + & const_str_environ._ascii.ob_base, + & const_str_span._ascii.ob_base, + & const_str_group._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str_endswith._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + &_Py_ID(len), + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[487]; + } +posixpath_toplevel_consts_24_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 486, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xe5\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x13\x05\x1d\xd8\x0b\x0f\x90\x74\xd0\x0b\x1b\xd0\x0b\x1b\xd8\x13\x17\x88\x4b\xdd\x0f\x18\xf0\x00\x02\x09\x44\x01\xd8\x0c\x15\x88\x49\x88\x49\x88\x49\xd8\x18\x1a\x9f\x0a\x9a\x0a\xd0\x23\x38\xb8\x22\xbc\x28\xd1\x18\x43\xd4\x18\x43\x88\x49\xdd\x11\x1a\xd4\x11\x21\x88\x06\xd8\x10\x14\x88\x05\xd8\x0e\x12\x88\x03\xdd\x12\x19\x9d\x22\x98\x6a\xa8\x24\xd1\x12\x2f\xd4\x12\x2f\x88\x07\x88\x07\xe0\x0b\x0e\x90\x64\x88\x3f\x88\x3f\xd8\x13\x17\x88\x4b\xdd\x0f\x17\xf0\x00\x02\x09\x42\x01\xd8\x0c\x15\x88\x49\x88\x49\x88\x49\xd8\x17\x19\x97\x7a\x92\x7a\xd0\x22\x36\xb8\x02\xbc\x08\xd1\x17\x41\xd4\x17\x41\x88\x48\xdd\x11\x19\x94\x1f\x88\x06\xd8\x10\x13\x88\x05\xd8\x0e\x11\x88\x03\xdd\x12\x14\x94\x2a\x88\x07\xd8\x08\x09\x80\x41\xf0\x02\x13\x05\x19\xd8\x0c\x12\x88\x46\x90\x34\x98\x11\x89\x4f\x8c\x4f\x88\x01\xd8\x0f\x10\xf0\x00\x01\x09\x12\xd8\x0c\x11\xd8\x0f\x10\x8f\x76\x8a\x76\x90\x61\x89\x79\x8c\x79\x89\x04\x88\x01\x88\x31\xd8\x0f\x10\x8f\x77\x8a\x77\x90\x71\x89\x7a\x8c\x7a\x88\x04\xd8\x0b\x0f\x8f\x3f\x8a\x3f\x98\x35\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x09\x1e\xa0\x64\xa7\x6d\xa2\x6d\xb0\x43\xd1\x26\x38\xd4\x26\x38\xf0\x00\x01\x09\x1e\xd8\x13\x17\x98\x01\x98\x22\x98\x04\x94\x3a\x88\x44\xf0\x02\x0b\x09\x19\xd8\x0f\x16\x88\x7f\xdd\x18\x1a\x9c\x0b\xa5\x42\xa4\x4a\xad\x72\xac\x7b\xb8\x34\xd1\x2f\x40\xd4\x2f\x40\xd4\x24\x41\xd1\x18\x42\xd4\x18\x42\x90\x05\x90\x05\xe0\x18\x1f\xa0\x04\x9c\x0d\x90\x05\xf0\x08\x00\x14\x18\x98\x01\x98\x02\x98\x02\x94\x38\x88\x44\xd8\x13\x17\x98\x02\x98\x11\x98\x02\x94\x38\x98\x65\xd1\x13\x23\x88\x44\xdd\x10\x13\x90\x44\x91\x09\x94\x09\x88\x41\xd8\x0c\x10\x90\x44\x89\x4c\x88\x44\x88\x44\xf8\xf5\x0d\x00\x10\x18\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xd8\x10\x11\x88\x41\x88\x41\x88\x41\xf0\x03\x01\x09\x12\xf8\xf8\xf8\xf0\x1b\x13\x05\x19\xf0\x28\x00\x0c\x10\x80\x4b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +posixpath_toplevel_consts_24_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\xc4\x39\x41\x01\x46\x26\x00\xc6\x26\x0c\x46\x35\x03\xc6\x34\x01\x46\x35\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_end = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "end", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_j = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "j", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +posixpath_toplevel_consts_24_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + &_Py_ID(path), + & const_str_re._ascii.ob_base, + & const_str_search._ascii.ob_base, + & const_str_start._ascii.ob_base, + & const_str_end._ascii.ob_base, + & const_str_environ._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_m._ascii.ob_base, + & const_str_j._ascii.ob_base, + &_Py_ID(name), + & const_str_value._ascii.ob_base, + & const_str_tail._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(886) +posixpath_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 443, + }, + .co_consts = & posixpath_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_consts_24_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 293, + .co_nlocalsplus = 12, + .co_nlocals = 12, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_24_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_36_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_expandvars._ascii.ob_base, + .co_qualname = & const_str_expandvars._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_24_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x53\x64\x01\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x64\x02\x64\x03\x6c\x05\x7d\x01\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x61\x04\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x05\x7d\x03\x64\x06\x7d\x04\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x48\x64\x08\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x64\x02\x64\x03\x6c\x05\x7d\x01\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x61\x0a\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x0a\x7d\x03\x64\x0b\x7d\x04\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x02\x7d\x06\x09\x00\x02\x00\x7c\x02\x7c\x00\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x73\x01\x6e\xe2\x7c\x07\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x08\x7c\x07\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x09\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1f\x7c\x09\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0a\x7c\x09\x64\x0d\x64\x0e\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x09\x00\x7c\x05\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x11\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x6e\x08\x7c\x05\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x7c\x08\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x00\x64\x03\x7c\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x7a\x00\x00\x00\x7d\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x00\x7c\x0b\x7a\x0d\x00\x00\x7d\x00\x6e\x12\x23\x00\x74\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x08\x7d\x06\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x8c\xf1\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct _PyCode_DEF(224) +posixpath_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 112, + }, + .co_consts = & ntpath_toplevel_consts_30_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_30_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 389, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_normpath._ascii.ob_base, + .co_qualname = & const_str_normpath._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_30_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x35\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x01\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +posixpath_toplevel_consts_27_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & ntpath_toplevel_consts_30_consts_0._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_empty), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + &_Py_STR(empty), + &_Py_STR(dot), + & ntpath_toplevel_consts_2._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +posixpath_toplevel_consts_27_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str_split._ascii.ob_base, + &_Py_ID(append), + & const_str_pop._ascii.ob_base, + &_Py_ID(join), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[361]; + } +posixpath_toplevel_consts_27_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 360, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x11\x8c\x79\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x09\x09\x1a\xd8\x12\x16\x88\x43\xd8\x14\x17\x88\x45\xd8\x12\x16\x88\x43\xd8\x15\x1a\x88\x46\x88\x46\xe0\x12\x15\x88\x43\xd8\x14\x16\x88\x45\xd8\x12\x15\x88\x43\xd8\x15\x19\x88\x46\xd8\x0b\x0f\x90\x35\x8a\x3d\x88\x3d\xd8\x13\x16\x88\x4a\xd8\x1a\x1e\x9f\x2f\x9a\x2f\xa8\x23\xd1\x1a\x2e\xd4\x1a\x2e\x88\x0f\xf0\x08\x00\x0d\x1c\xf0\x00\x02\x09\x20\xd8\x0c\x10\x8f\x4f\x8a\x4f\x98\x43\xa0\x01\x99\x45\xd1\x0c\x22\xd4\x0c\x22\xf0\x03\x02\x09\x20\xd8\x2b\x2f\xaf\x3f\xaa\x3f\xb8\x33\xb8\x71\xb9\x35\xd1\x2b\x41\xd4\x2b\x41\xf0\x03\x02\x09\x20\xe0\x1e\x1f\x88\x4f\xd8\x10\x14\x97\x0a\x92\x0a\x98\x33\x91\x0f\x94\x0f\x88\x05\xd8\x14\x16\x88\x09\xd8\x14\x19\xf0\x00\x07\x09\x20\xf0\x00\x07\x09\x20\x88\x44\xd8\x0f\x13\x98\x05\x98\x73\x90\x7c\xd0\x0f\x23\xd0\x0f\x23\xd8\x10\x18\xd8\x10\x14\x98\x06\x92\x0e\x90\x0e\xa0\x7f\x90\x0e\xb8\x79\x90\x0e\xd8\x12\x1b\xf0\x03\x00\x11\x1f\xd8\x20\x29\xa8\x22\xa4\x0d\xb0\x16\xd2\x20\x37\xd0\x20\x37\xd8\x10\x19\xd7\x10\x20\xd2\x10\x20\xa0\x14\xd1\x10\x26\xd4\x10\x26\xd0\x10\x26\xd0\x10\x26\xd8\x11\x1a\xf0\x00\x01\x0d\x20\xd8\x10\x19\x97\x0d\x92\x0d\x91\x0f\x94\x0f\x90\x0f\xf8\xd8\x10\x19\x88\x05\xd8\x0f\x12\x8f\x78\x8a\x78\x98\x05\x89\x7f\x8c\x7f\x88\x04\xd8\x0b\x1a\xf0\x00\x01\x09\x2e\xd8\x13\x16\x90\x7f\xd1\x13\x26\xa8\x14\xd1\x13\x2d\x88\x44\xd8\x0f\x13\x88\x7b\x90\x73\xd0\x08\x1a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_empty = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "empty", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_dotdot = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dotdot", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_initial_slashes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "initial_slashes", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_new_comps = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "new_comps", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_comp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "comp", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +posixpath_toplevel_consts_27_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(path), + & const_str_sep._ascii.ob_base, + & const_str_empty._ascii.ob_base, + & const_str_dot._ascii.ob_base, + & const_str_dotdot._ascii.ob_base, + & const_str_initial_slashes._ascii.ob_base, + & const_str_comps._ascii.ob_base, + & const_str_new_comps._ascii.ob_base, + & const_str_comp._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(560) +posixpath_toplevel_consts_27 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 280, + }, + .co_consts = & posixpath_toplevel_consts_27_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_27_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 350, + .co_nlocalsplus = 9, + .co_nlocals = 9, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_normpath._ascii.ob_base, + .co_qualname = & const_str_normpath._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_27_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x09\x64\x01\x7d\x01\x64\x02\x7d\x02\x64\x03\x7d\x03\x64\x04\x7d\x04\x6e\x08\x64\x05\x7d\x01\x64\x06\x7d\x02\x64\x07\x7d\x03\x64\x08\x7d\x04\x7c\x00\x7c\x02\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x03\x53\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x72\x32\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x09\x7a\x05\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x0a\x7a\x05\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x64\x09\x7d\x05\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x67\x00\x7d\x07\x7c\x06\x44\x00\x5d\x4d\x7d\x08\x7c\x08\x7c\x02\x7c\x03\x66\x02\x76\x00\x72\x01\x8c\x09\x7c\x08\x7c\x04\x6b\x03\x00\x00\x00\x00\x73\x12\x7c\x05\x73\x02\x7c\x07\x72\x0e\x7c\x07\x72\x22\x7c\x07\x64\x0b\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x16\x7c\x07\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x37\x7c\x07\x72\x14\x7c\x07\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x4e\x7c\x07\x7d\x06\x7c\x01\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x05\x72\x08\x7c\x01\x7c\x05\x7a\x05\x00\x00\x7c\x00\x7a\x00\x00\x00\x7d\x00\x7c\x00\x70\x01\x7c\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +posixpath_toplevel_consts_28_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return an absolute path.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +posixpath_toplevel_consts_28_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & posixpath_toplevel_consts_28_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[97]; + } +posixpath_toplevel_consts_28_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 96, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x0b\x10\x90\x14\x89\x3b\x8c\x3b\xf0\x00\x05\x05\x1f\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x03\x09\x1e\xdd\x12\x14\x94\x2a\x91\x2c\x94\x2c\x88\x43\x88\x43\xe5\x12\x14\x94\x29\x91\x2b\x94\x2b\x88\x43\xdd\x0f\x13\x90\x43\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x13\x90\x44\x89\x3e\x8c\x3e\xd0\x04\x19", +}; +static + struct _PyCode_DEF(254) +posixpath_toplevel_consts_28 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 127, + }, + .co_consts = & posixpath_toplevel_consts_28_consts._object.ob_base.ob_base, + .co_names = & ntpath_toplevel_consts_32_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 397, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_abspath._ascii.ob_base, + .co_qualname = & const_str_abspath._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_28_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x4c\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x13\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[109]; + } +posixpath_toplevel_consts_31_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 108, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x61\x6e\x6f\x6e\x69\x63\x61\x6c\x20\x70\x61\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x2c\x20\x65\x6c\x69\x6d\x69\x6e\x61\x74\x69\x6e\x67\x20\x61\x6e\x79\x0a\x73\x79\x6d\x62\x6f\x6c\x69\x63\x20\x6c\x69\x6e\x6b\x73\x20\x65\x6e\x63\x6f\x75\x6e\x74\x65\x72\x65\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x70\x61\x74\x68\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_31_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & posixpath_toplevel_consts_31_consts_0._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__joinrealpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_joinrealpath", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +posixpath_toplevel_consts_31_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str__joinrealpath._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[63]; + } +posixpath_toplevel_consts_31_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 62, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x10\x12\x8c\x79\x98\x18\xd1\x0f\x22\xd4\x0f\x22\x80\x48\xdd\x0f\x1c\x98\x58\xa0\x62\xa0\x71\xa0\x62\x9c\x5c\xa8\x38\xb0\x56\xb8\x52\xd1\x0f\x40\xd4\x0f\x40\x81\x48\x80\x44\x88\x22\xdd\x0b\x12\x90\x34\x89\x3d\x8c\x3d\xd0\x04\x18", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +const_str_ok = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ok", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +posixpath_toplevel_consts_31_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(filename), + &_Py_ID(strict), + &_Py_ID(path), + & const_str_ok._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(130) +posixpath_toplevel_consts_31 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 65, + }, + .co_consts = & posixpath_toplevel_consts_31_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_31_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 1, + .co_stacksize = 6, + .co_firstlineno = 412, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_realpath._ascii.ob_base, + .co_qualname = & const_str_realpath._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_31_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x69\x00\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +posixpath_toplevel_consts_32_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + Py_None, + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + &_Py_STR(dot), + & ntpath_toplevel_consts_2._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_False, + Py_True, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +posixpath_toplevel_consts_32_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + & const_str_partition._ascii.ob_base, + & const_str_split._ascii.ob_base, + &_Py_ID(join), + & const_str_os._ascii.ob_base, + & const_str_lstat._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_S_ISLNK._ascii.ob_base, + & const_str_st_mode._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str__joinrealpath._ascii.ob_base, + & const_str_readlink._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[506]; + } +posixpath_toplevel_consts_32_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 505, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x16\xd8\x0e\x12\x88\x03\xd8\x11\x15\x88\x06\xd8\x11\x16\x88\x06\x88\x06\xe0\x0e\x11\x88\x03\xd8\x11\x14\x88\x06\xd8\x11\x15\x88\x06\xe5\x07\x0c\x88\x54\x81\x7b\x84\x7b\xf0\x00\x02\x05\x13\xd8\x0f\x13\x90\x41\x90\x42\x90\x42\x8c\x78\x88\x04\xd8\x0f\x12\x88\x04\xe0\x0a\x0e\xf1\x00\x2c\x05\x1d\xd8\x18\x1c\x9f\x0e\x9a\x0e\xa0\x73\xd1\x18\x2b\xd4\x18\x2b\x89\x0d\x88\x04\x88\x61\x90\x14\xd8\x0f\x13\xf0\x00\x02\x09\x15\x90\x74\x98\x76\x92\x7e\x90\x7e\xe0\x0c\x14\xd8\x0b\x0f\x90\x36\x8a\x3e\x88\x3e\xe0\x0f\x13\xf0\x00\x05\x0d\x1e\xdd\x1d\x22\xa0\x34\x99\x5b\x9c\x5b\x91\x0a\x90\x04\x90\x64\xd8\x13\x17\x98\x36\x92\x3e\x90\x3e\xdd\x1b\x1f\xa0\x04\xa0\x66\xa8\x66\xd1\x1b\x35\xd4\x1b\x35\x90\x44\xf8\xe0\x17\x1d\x90\x04\xd8\x0c\x14\xdd\x12\x16\x90\x74\x98\x54\xd1\x12\x22\xd4\x12\x22\x88\x07\xf0\x02\x07\x09\x2f\xdd\x11\x13\x94\x18\x98\x27\xd1\x11\x22\xd4\x11\x22\x88\x42\xf5\x0c\x00\x17\x1b\x94\x6c\xa0\x32\xa4\x3a\xd1\x16\x2e\xd4\x16\x2e\x88\x47\x88\x47\xf8\xf5\x0b\x00\x10\x17\xf0\x00\x03\x09\x1c\xf0\x00\x03\x09\x1c\xf0\x00\x03\x09\x1c\xd8\x0f\x15\xf0\x00\x01\x0d\x16\xd8\x10\x15\xd8\x16\x1b\x88\x47\x88\x47\x88\x47\xf0\x07\x03\x09\x1c\xf8\xf8\xf8\xf0\x0c\x00\x10\x17\xf0\x00\x02\x09\x15\xd8\x13\x1a\x88\x44\xd8\x0c\x14\xe0\x0b\x12\x90\x64\x88\x3f\x88\x3f\xe0\x13\x17\x98\x07\x94\x3d\x88\x44\xd8\x0f\x13\xd0\x0f\x1f\xe0\x10\x18\xe0\x0f\x15\xf0\x00\x05\x0d\x32\xe5\x10\x12\x94\x07\x98\x07\xd1\x10\x20\xd4\x10\x20\xd0\x10\x20\xd0\x10\x20\xf5\x06\x00\x18\x1c\x98\x47\xa0\x54\xd1\x17\x2a\xd4\x17\x2a\xa8\x45\xd0\x17\x31\xd0\x10\x31\xd8\x18\x1c\x88\x04\x88\x57\x89\x0d\xdd\x13\x20\xa0\x14\xa5\x72\xa4\x7b\xb0\x37\xd1\x27\x3b\xd4\x27\x3b\xb8\x56\xc0\x54\xd1\x13\x4a\xd4\x13\x4a\x89\x08\x88\x04\x88\x62\xd8\x0f\x11\xf0\x00\x01\x09\x2b\xdd\x13\x17\x98\x04\x98\x64\xd1\x13\x23\xd4\x13\x23\xa0\x55\xd0\x13\x2a\xd0\x0c\x2a\xd8\x18\x1c\x88\x04\x88\x57\x89\x0d\xf0\x59\x01\x00\x0b\x0f\xf1\x00\x2c\x05\x1d\xf0\x5c\x01\x00\x0c\x10\x90\x14\x88\x3a\xd0\x04\x15", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +posixpath_toplevel_consts_32_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc2\x29\x14\x43\x17\x00\xc3\x17\x0f\x43\x29\x03\xc3\x28\x01\x43\x29\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_newpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "newpath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_is_link = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "is_link", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +posixpath_toplevel_consts_32_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + &_Py_ID(path), + & const_str_rest._ascii.ob_base, + &_Py_ID(strict), + & const_str_seen._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(_), + & const_str_newpath._ascii.ob_base, + & const_str_st._ascii.ob_base, + & const_str_is_link._ascii.ob_base, + & const_str_ok._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[14]; + } +posixpath_toplevel_consts_32_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 13, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(746) +posixpath_toplevel_consts_32 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 373, + }, + .co_consts = & posixpath_toplevel_consts_32_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_32_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_consts_32_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 421, + .co_nlocalsplus = 13, + .co_nlocals = 13, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str__joinrealpath._ascii.ob_base, + .co_qualname = & const_str__joinrealpath._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_32_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x04\x64\x02\x7d\x05\x64\x03\x7d\x06\x6e\x06\x64\x04\x7d\x04\x64\x05\x7d\x05\x64\x06\x7d\x06\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x7c\x01\x64\x07\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x04\x7d\x00\x7c\x01\x90\x01\x72\x30\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x07\x7d\x08\x7d\x01\x7c\x07\x72\x06\x7c\x07\x7c\x05\x6b\x02\x00\x00\x00\x00\x72\x01\x8c\x25\x7c\x07\x7c\x06\x6b\x02\x00\x00\x00\x00\x72\x2f\x7c\x00\x72\x2a\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x07\x7c\x07\x7c\x06\x6b\x02\x00\x00\x00\x00\x72\x11\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x06\x7c\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x6e\x02\x7c\x06\x7d\x00\x8c\x5a\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x09\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x6e\x15\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x08\x01\x00\x7c\x02\x72\x01\x82\x00\x64\x08\x7d\x0b\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0b\x73\x03\x7c\x09\x7d\x00\x8c\xb3\x7c\x09\x7c\x03\x76\x00\x72\x34\x7c\x03\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x81\x01\x8c\xc2\x7c\x02\x72\x15\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x12\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x66\x02\x53\x00\x64\x00\x7c\x03\x7c\x09\x3c\x00\x00\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x0c\x7c\x0c\x73\x12\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x66\x02\x53\x00\x7c\x00\x7c\x03\x7c\x09\x3c\x00\x00\x00\x7c\x01\x90\x01\xb0\x30\x7c\x00\x64\x09\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[30]; + } +posixpath_toplevel_consts_34_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 29, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd0\x15\x40\xd0\x15\x40\xd0\x15\x40\x98\x41\xb8\x61\xd0\x15\x40\x90\x61\xd0\x15\x40\xd0\x15\x40\xd0\x15\x40", +}; +static + struct _PyCode_DEF(22) +posixpath_toplevel_consts_34_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 11, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 508, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_34_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[30]; + } +posixpath_toplevel_consts_34_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 29, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd0\x14\x3e\xd0\x14\x3e\xd0\x14\x3e\x98\x31\xb8\x41\xd0\x14\x3e\x90\x51\xd0\x14\x3e\xd0\x14\x3e\xd0\x14\x3e", +}; +static + struct _PyCode_DEF(22) +posixpath_toplevel_consts_34_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 11, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 509, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_34_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +posixpath_toplevel_consts_34_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & ntpath_toplevel_consts_44_consts_0._ascii.ob_base, + & ntpath_toplevel_consts_44_consts_8._ascii.ob_base, + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, + &_Py_STR(dot), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & ntpath_toplevel_consts_2._ascii.ob_base, + Py_None, + & posixpath_toplevel_consts_34_consts_9.ob_base.ob_base, + & posixpath_toplevel_consts_34_consts_10.ob_base.ob_base, + & const_str_relpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +posixpath_toplevel_consts_34_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & const_str_ValueError._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str_split._ascii.ob_base, + &_Py_ID(len), + & const_str_commonprefix._ascii.ob_base, + &_Py_ID(join), + & const_str_TypeError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_BytesWarning._ascii.ob_base, + & const_str_DeprecationWarning._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + & const_str__check_arg_types._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[347]; + } +posixpath_toplevel_consts_34_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 346, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x06\x00\x0c\x10\xf0\x00\x01\x05\x2e\xdd\x0e\x18\xd0\x19\x2c\xd1\x0e\x2d\xd4\x0e\x2d\xd0\x08\x2d\xe5\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x16\xd8\x11\x15\x88\x06\xd8\x0e\x12\x88\x03\xd8\x11\x16\x88\x06\x88\x06\xe0\x11\x14\x88\x06\xd8\x0e\x11\x88\x03\xd8\x11\x15\x88\x06\xe0\x07\x0c\x80\x7d\xd8\x10\x16\x88\x05\x88\x05\xe5\x10\x12\x94\x09\x98\x25\xd1\x10\x20\xd4\x10\x20\x88\x05\xf0\x04\x0c\x05\x0e\xd8\x15\x40\xd0\x15\x40\xa5\x17\xa8\x15\xa1\x1e\xa4\x1e\xd7\x21\x35\xd2\x21\x35\xb0\x63\xd1\x21\x3a\xd4\x21\x3a\xd0\x15\x40\xd1\x15\x40\xd4\x15\x40\x88\x0a\xd8\x14\x3e\xd0\x14\x3e\xa5\x07\xa8\x04\xa1\x0d\xa4\x0d\xd7\x20\x33\xd2\x20\x33\xb0\x43\xd1\x20\x38\xd4\x20\x38\xd0\x14\x3e\xd1\x14\x3e\xd4\x14\x3e\x88\x09\xe5\x0c\x0f\x95\x0c\x98\x6a\xa8\x29\xd0\x1d\x34\xd1\x10\x35\xd4\x10\x35\xd1\x0c\x36\xd4\x0c\x36\x88\x01\xe0\x14\x1a\x90\x38\x9d\x73\xa0\x3a\x99\x7f\x9c\x7f\xa8\x71\xd1\x1f\x30\xd1\x13\x31\xb0\x49\xb8\x61\xb8\x62\xb8\x62\xb4\x4d\xd1\x13\x41\x88\x08\xd8\x0f\x17\xf0\x00\x01\x09\x1a\xd8\x13\x19\x88\x4d\xdd\x0f\x13\x90\x58\x88\x7f\xd0\x08\x1e\xf8\xdd\x0c\x15\x95\x7e\xa5\x7c\xd5\x35\x47\xd0\x0b\x48\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x59\xb0\x04\xb0\x65\xd1\x08\x3c\xd4\x08\x3c\xd0\x08\x3c\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +posixpath_toplevel_consts_34_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x22\x42\x1a\x44\x06\x00\xc3\x3d\x08\x44\x06\x00\xc4\x06\x35\x44\x3b\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +posixpath_toplevel_consts_34_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(path), + & const_str_start._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_start_list._ascii.ob_base, + & const_str_path_list._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_rel_list._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(636) +posixpath_toplevel_consts_34 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 318, + }, + .co_consts = & posixpath_toplevel_consts_34_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_34_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_consts_34_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 486, + .co_nlocalsplus = 9, + .co_nlocals = 9, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_34_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_relpath._ascii.ob_base, + .co_qualname = & const_str_relpath._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_34_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x73\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x02\x7d\x02\x64\x03\x7d\x03\x64\x04\x7d\x04\x6e\x06\x64\x05\x7d\x02\x64\x06\x7d\x03\x64\x07\x7d\x04\x7c\x01\x80\x03\x7c\x02\x7d\x01\x6e\x14\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x64\x09\x84\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x0a\x84\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x06\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x04\x67\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7a\x0a\x00\x00\x7a\x05\x00\x00\x7c\x06\x7c\x07\x64\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x08\x7c\x08\x73\x02\x7c\x02\x53\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\x8e\x00\x53\x00\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x04\x24\x00\x72\x18\x01\x00\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x7c\x00\x7c\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +posixpath_toplevel_consts_35_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd0\x16\x39\xd0\x16\x39\xd0\x16\x39\xa8\x34\x90\x74\x97\x7a\x92\x7a\xa0\x23\x91\x7f\x94\x7f\xd0\x16\x39\xd0\x16\x39\xd0\x16\x39", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_35_consts_7_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + &_Py_ID(path), + & const_str_sep._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(58) +posixpath_toplevel_consts_35_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 542, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & posixpath_toplevel_consts_35_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_35_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x17\x7d\x01\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x18\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[48]; + } +posixpath_toplevel_consts_35_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 47, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x18\x35\xd0\x18\x35\xa8\x21\x98\x11\x98\x32\x98\x41\x98\x32\x9c\x15\xa0\x23\x9a\x1c\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +posixpath_toplevel_consts_35_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_p._ascii.ob_base, + & const_str_sep._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(52) +posixpath_toplevel_consts_35_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & zipimport_toplevel_consts_25_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 545, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & posixpath_toplevel_consts_35_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & ntpath_toplevel_consts_45_consts_11_qualname._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_35_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x12\x7d\x01\x7c\x01\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x02\x6b\x02\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x13\x64\x00\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct _PyCode_DEF(36) +posixpath_toplevel_consts_35_consts_11_consts_0 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 549, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_17_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_18_consts_0_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_18_consts_0_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x0c\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x89\x02\x6b\x03\x00\x00\x00\x00\xaf\x0a\x7c\x01\x91\x02\x8c\x0d\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +posixpath_toplevel_consts_35_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & posixpath_toplevel_consts_35_consts_11_consts_0.ob_base.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(44) +posixpath_toplevel_consts_35_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & posixpath_toplevel_consts_35_consts_11_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 549, + .co_nlocalsplus = 3, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & ntpath_toplevel_consts_45_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, + .co_linetable = & ntpath_toplevel_consts_45_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x10\x7d\x01\x88\x02\x66\x01\x64\x00\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x11\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +posixpath_toplevel_consts_35_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & ntpath_toplevel_consts_45_consts_0._ascii.ob_base, + & ntpath_toplevel_consts_45_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_Py_SINGLETON(bytes_characters[47]), + (PyObject *)&_Py_SINGLETON(bytes_characters[46]), + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + &_Py_STR(dot), + & posixpath_toplevel_consts_35_consts_7.ob_base.ob_base, + & posixpath_toplevel_consts_35_consts_8.ob_base.ob_base, + & ntpath_toplevel_consts_45_consts_12._ascii.ob_base, + Py_None, + & posixpath_toplevel_consts_35_consts_11.ob_base.ob_base, + & const_str_commonpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +posixpath_toplevel_consts_35_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & const_str_ValueError._ascii.ob_base, + & const_str_tuple._ascii.ob_base, + & const_str_map._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_set._ascii.ob_base, + & const_str_min._ascii.ob_base, + & const_str_max._ascii.ob_base, + & const_str_enumerate._ascii.ob_base, + &_Py_ID(join), + & const_str_TypeError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + & const_str__check_arg_types._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[449]; + } +posixpath_toplevel_consts_35_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 448, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xf8\x80\x00\xf0\x06\x00\x0c\x11\xf0\x00\x01\x05\x42\x01\xdd\x0e\x18\xd0\x19\x40\xd1\x0e\x41\xd4\x0e\x41\xd0\x08\x41\xe5\x0c\x11\x95\x23\x95\x62\x94\x69\xa0\x15\xd1\x12\x27\xd4\x12\x27\xd1\x0c\x28\xd4\x0c\x28\x80\x45\xdd\x07\x11\x90\x25\x98\x01\x94\x28\x9d\x45\xd1\x07\x22\xd4\x07\x22\xf0\x00\x05\x05\x15\xd8\x0e\x12\x88\x03\xd8\x11\x15\x88\x06\x88\x06\xe0\x0e\x11\x88\x03\xd8\x11\x14\x88\x06\xf0\x04\x15\x05\x0e\xd8\x16\x39\xd0\x16\x39\xd0\x16\x39\xd0\x16\x39\xb0\x35\xd0\x16\x39\xd1\x16\x39\xd4\x16\x39\x88\x0b\xf0\x04\x03\x09\x50\x01\xdd\x15\x18\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xa8\x75\xd0\x18\x35\xd1\x18\x35\xd4\x18\x35\xd1\x15\x35\xd4\x15\x35\x89\x46\x88\x45\x88\x45\xf8\xdd\x0f\x19\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xdd\x12\x1c\xd0\x1d\x44\xd1\x12\x45\xd4\x12\x45\xc8\x34\xd0\x0c\x4f\xf0\x03\x01\x09\x50\x01\xf8\xf8\xf8\xf0\x06\x00\x17\x51\x01\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50\xc0\x4b\xd0\x16\x50\xd1\x16\x50\xd4\x16\x50\x88\x0b\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xd8\x11\x13\x88\x06\xdd\x14\x1d\x98\x62\x91\x4d\x94\x4d\xf0\x00\x03\x09\x16\xf0\x00\x03\x09\x16\x89\x44\x88\x41\x88\x71\xd8\x0f\x10\x90\x42\x90\x71\x94\x45\x8a\x7a\x88\x7a\xd8\x19\x1b\x98\x42\x98\x51\x98\x42\x9c\x16\x90\x06\xd8\x10\x15\x90\x05\xf0\x05\x00\x10\x1a\xf0\x08\x00\x19\x1e\xd0\x11\x2a\x90\x13\x90\x13\xa0\x33\xa0\x72\xa8\x01\xa0\x72\xa4\x37\x88\x06\xd8\x0f\x15\x98\x03\x9f\x08\x9a\x08\xa0\x16\xd1\x18\x28\xd4\x18\x28\xd1\x0f\x28\xd0\x08\x28\xf8\xdd\x0c\x15\x95\x7e\xd0\x0b\x26\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x5c\xd0\x08\x3a\xb0\x45\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[38]; + } +posixpath_toplevel_consts_35_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 37, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x20\x0e\x44\x2c\x00\xc1\x2f\x1d\x42\x0d\x00\xc2\x0c\x01\x44\x2c\x00\xc2\x0d\x1b\x42\x28\x03\xc2\x28\x42\x03\x44\x2c\x00\xc4\x2c\x25\x45\x11\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +posixpath_toplevel_consts_35_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_paths._ascii.ob_base, + & const_str_split_paths._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + & const_str_s1._ascii.ob_base, + & const_str_s2._ascii.ob_base, + & const_str_common._ascii.ob_base, + & const_str_i._ascii.ob_base, + & const_str_c._ascii.ob_base, + & const_str_prefix._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[12]; + } +posixpath_toplevel_consts_35_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 11, + }, + .ob_shash = -1, + .ob_sval = " @@", +}; +static + struct _PyCode_DEF(680) +posixpath_toplevel_consts_35 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 340, + }, + .co_consts = & posixpath_toplevel_consts_35_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_consts_35_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_consts_35_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 527, + .co_nlocalsplus = 11, + .co_nlocals = 9, + .co_nplaincellvars = 2, + .co_ncellvars = 2, + .co_nfreevars = 0, + .co_localsplusnames = & posixpath_toplevel_consts_35_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & posixpath_toplevel_consts_35_localspluskinds.ob_base.ob_base, + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_commonpath._ascii.ob_base, + .co_qualname = & const_str_commonpath._ascii.ob_base, + .co_linetable = & posixpath_toplevel_consts_35_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x09\x87\x0a\x97\x00\x7c\x00\x73\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x05\x64\x03\x8a\x0a\x64\x04\x8a\x09\x6e\x04\x64\x05\x8a\x0a\x64\x06\x8a\x09\x09\x00\x88\x0a\x66\x01\x64\x07\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x0a\x66\x01\x64\x08\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x01\x00\x00\x7d\x02\x6e\x1e\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x88\x09\x66\x01\x64\x0b\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x03\x7d\x05\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1d\x5c\x02\x00\x00\x7d\x06\x7d\x07\x7c\x07\x7c\x04\x7c\x06\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0c\x7c\x03\x64\x0a\x7c\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x01\x00\x6e\x01\x8c\x1e\x7c\x02\x72\x02\x89\x0a\x6e\x09\x89\x0a\x64\x0a\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x89\x0a\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00\x23\x00\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x14\x01\x00\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x67\x01\x7c\x00\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[37]; + }_object; + } +posixpath_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 37, + }, + .ob_item = { + & posixpath_toplevel_consts_0._ascii.ob_base, + &_Py_STR(dot), + & ntpath_toplevel_consts_2._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_8_consts_0._ascii.ob_base, + & posixpath_toplevel_consts_5._ascii.ob_base, + Py_None, + & posixpath_toplevel_consts_7._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & codecs_toplevel_consts_3._object.ob_base.ob_base, + & posixpath_toplevel_consts_10._object.ob_base.ob_base, + & posixpath_toplevel_consts_11.ob_base.ob_base, + & posixpath_toplevel_consts_12.ob_base.ob_base, + & posixpath_toplevel_consts_13.ob_base.ob_base, + & posixpath_toplevel_consts_14.ob_base.ob_base, + & posixpath_toplevel_consts_15.ob_base.ob_base, + & posixpath_toplevel_consts_16.ob_base.ob_base, + & posixpath_toplevel_consts_17.ob_base.ob_base, + & posixpath_toplevel_consts_18.ob_base.ob_base, + & posixpath_toplevel_consts_19.ob_base.ob_base, + & posixpath_toplevel_consts_20.ob_base.ob_base, + & posixpath_toplevel_consts_21.ob_base.ob_base, + & posixpath_toplevel_consts_22.ob_base.ob_base, + & posixpath_toplevel_consts_23.ob_base.ob_base, + & posixpath_toplevel_consts_24.ob_base.ob_base, + & ntpath_toplevel_consts_29._object.ob_base.ob_base, + & posixpath_toplevel_consts_26.ob_base.ob_base, + & posixpath_toplevel_consts_27.ob_base.ob_base, + & posixpath_toplevel_consts_28.ob_base.ob_base, + Py_False, + & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, + & posixpath_toplevel_consts_31.ob_base.ob_base, + & posixpath_toplevel_consts_32.ob_base.ob_base, + & const_str_darwin._ascii.ob_base, + & posixpath_toplevel_consts_34.ob_base.ob_base, + & posixpath_toplevel_consts_35.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[42]; + }_object; + } +posixpath_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 42, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_devnull._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_genericpath._ascii.ob_base, + &_Py_ID(__all__), + & const_str__get_sep._ascii.ob_base, + & const_str_normcase._ascii.ob_base, + & const_str_isabs._ascii.ob_base, + &_Py_ID(join), + & const_str_split._ascii.ob_base, + & const_str_splitext._ascii.ob_base, + & const_str__splitext._ascii.ob_base, + & const_str_splitdrive._ascii.ob_base, + & const_str_basename._ascii.ob_base, + & const_str_dirname._ascii.ob_base, + & const_str_islink._ascii.ob_base, + & const_str_lexists._ascii.ob_base, + & const_str_ismount._ascii.ob_base, + & const_str_expanduser._ascii.ob_base, + & const_str__varprog._ascii.ob_base, + & const_str__varprogb._ascii.ob_base, + & const_str_expandvars._ascii.ob_base, + & const_str_posix._ascii.ob_base, + & const_str__path_normpath._ascii.ob_base, + & const_str_normpath._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str_realpath._ascii.ob_base, + & const_str__joinrealpath._ascii.ob_base, + & const_str_platform._ascii.ob_base, + & const_str_supports_unicode_filenames._ascii.ob_base, + & const_str_relpath._ascii.ob_base, + & const_str_commonpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[589]; + } +posixpath_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 588, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x0a\x01\x04\xf0\x00\x0a\x01\x04\xf0\x1e\x00\x0a\x0d\x80\x06\xd8\x09\x0d\x80\x06\xd8\x09\x0c\x80\x06\xd8\x06\x09\x80\x03\xd8\x0a\x0d\x80\x07\xd8\x0a\x19\x80\x07\xd8\x09\x0d\x80\x06\xd8\x0a\x15\x80\x07\xe0\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x12\xd0\x00\x12\xd0\x00\x12\xd0\x00\x12\xd8\x00\x19\xd0\x00\x19\xd0\x00\x19\xd0\x00\x19\xf0\x04\x07\x0b\x19\xf0\x00\x07\x0b\x19\xf0\x00\x07\x0b\x19\x80\x07\xf0\x14\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x16\x02\x01\x18\xf0\x00\x02\x01\x18\xf0\x00\x02\x01\x18\xf0\x10\x04\x01\x1d\xf0\x00\x04\x01\x1d\xf0\x00\x04\x01\x1d\xf0\x16\x15\x01\x10\xf0\x00\x15\x01\x10\xf0\x00\x15\x01\x10\xf0\x3a\x09\x01\x16\xf0\x00\x09\x01\x16\xf0\x00\x09\x01\x16\xf0\x22\x08\x01\x37\xf0\x00\x08\x01\x37\xf0\x00\x08\x01\x37\xf0\x12\x00\x14\x1f\xd4\x13\x28\xd4\x13\x30\x80\x08\xd4\x00\x10\xf0\x0a\x04\x01\x14\xf0\x00\x04\x01\x14\xf0\x00\x04\x01\x14\xf0\x12\x05\x01\x11\xf0\x00\x05\x01\x11\xf0\x00\x05\x01\x11\xf0\x14\x08\x01\x10\xf0\x00\x08\x01\x10\xf0\x00\x08\x01\x10\xf0\x1c\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x14\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x18\x1f\x01\x11\xf0\x00\x1f\x01\x11\xf0\x00\x1f\x01\x11\xf0\x56\x01\x36\x01\x29\xf0\x00\x36\x01\x29\xf0\x00\x36\x01\x29\xf0\x7a\x01\x00\x0c\x10\x80\x08\xd8\x0c\x10\x80\x09\xf0\x04\x2e\x01\x10\xf0\x00\x2e\x01\x10\xf0\x00\x2e\x01\x10\xf0\x6a\x01\x30\x01\x2b\xd8\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xf0\x54\x01\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf8\xf0\x51\x01\x00\x08\x13\xf0\x00\x25\x01\x1b\xf0\x00\x25\x01\x1b\xf0\x00\x25\x01\x1b\xf0\x02\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x03\x25\x01\x1b\xf8\xf8\xf8\xf0\x60\x01\x09\x01\x1a\xf0\x00\x09\x01\x1a\xf0\x00\x09\x01\x1a\xf0\x1e\x00\x22\x27\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x12\x3c\x01\x16\xf0\x00\x3c\x01\x16\xf0\x00\x3c\x01\x16\xf0\x7e\x01\x00\x1f\x22\x9c\x6c\xa8\x68\xd2\x1e\x36\xd0\x00\x1a\xf0\x04\x21\x01\x0e\xf0\x00\x21\x01\x0e\xf0\x00\x21\x01\x0e\xf0\x00\x21\x01\x0e\xf0\x52\x01\x23\x01\x0e\xf0\x00\x23\x01\x0e\xf0\x00\x23\x01\x0e\xf0\x00\x23\x01\x0e\xf0\x00\x23\x01\x0e", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +posixpath_toplevel_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x2b\x06\x41\x35\x00\xc1\x35\x08\x42\x00\x03\xc1\x3f\x01\x42\x00\x03", +}; +static + struct _PyCode_DEF(326) +posixpath_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 163, + }, + .co_consts = & posixpath_toplevel_consts._object.ob_base.ob_base, + .co_names = & posixpath_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = & posixpath_toplevel_exceptiontable.ob_base.ob_base, + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & posixpath_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x64\x02\x5a\x02\x64\x01\x5a\x03\x64\x03\x5a\x04\x64\x04\x5a\x05\x64\x05\x5a\x06\x64\x06\x5a\x07\x64\x07\x5a\x08\x64\x08\x64\x06\x6c\x09\x5a\x09\x64\x08\x64\x06\x6c\x0a\x5a\x0a\x64\x08\x64\x06\x6c\x0b\x5a\x0b\x64\x08\x64\x06\x6c\x0c\x5a\x0c\x64\x08\x64\x09\x6c\x0c\x54\x00\x67\x00\x64\x0a\xa2\x01\x5a\x0d\x64\x0b\x84\x00\x5a\x0e\x64\x0c\x84\x00\x5a\x0f\x64\x0d\x84\x00\x5a\x10\x64\x0e\x84\x00\x5a\x11\x64\x0f\x84\x00\x5a\x12\x64\x10\x84\x00\x5a\x13\x65\x0c\x6a\x14\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x13\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\x84\x00\x5a\x15\x64\x12\x84\x00\x5a\x16\x64\x13\x84\x00\x5a\x17\x64\x14\x84\x00\x5a\x18\x64\x15\x84\x00\x5a\x19\x64\x16\x84\x00\x5a\x1a\x64\x17\x84\x00\x5a\x1b\x64\x06\x61\x1c\x64\x06\x61\x1d\x64\x18\x84\x00\x5a\x1e\x09\x00\x64\x08\x64\x19\x6c\x1f\x6d\x20\x5a\x20\x01\x00\x64\x1a\x84\x00\x5a\x21\x6e\x0e\x23\x00\x65\x22\x24\x00\x72\x06\x01\x00\x64\x1b\x84\x00\x5a\x21\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x1c\x84\x00\x5a\x23\x64\x1d\x64\x1e\x9c\x01\x64\x1f\x84\x02\x5a\x24\x64\x20\x84\x00\x5a\x25\x65\x0a\x6a\x26\x00\x00\x00\x00\x00\x00\x00\x00\x64\x21\x6b\x02\x00\x00\x00\x00\x5a\x27\x64\x24\x64\x22\x84\x01\x5a\x28\x64\x23\x84\x00\x5a\x29\x64\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static void posixpath_do_patchups(void) { +} + +PyObject * +_Py_get_posixpath_toplevel(void) +{ + posixpath_do_patchups(); + return Py_NewRef((PyObject *) &posixpath_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[1103]; + } +os_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1102, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x4f\x53\x20\x72\x6f\x75\x74\x69\x6e\x65\x73\x20\x66\x6f\x72\x20\x4e\x54\x20\x6f\x72\x20\x50\x6f\x73\x69\x78\x20\x64\x65\x70\x65\x6e\x64\x69\x6e\x67\x20\x6f\x6e\x20\x77\x68\x61\x74\x20\x73\x79\x73\x74\x65\x6d\x20\x77\x65\x27\x72\x65\x20\x6f\x6e\x2e\x0a\x0a\x54\x68\x69\x73\x20\x65\x78\x70\x6f\x72\x74\x73\x3a\x0a\x20\x20\x2d\x20\x61\x6c\x6c\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x66\x72\x6f\x6d\x20\x70\x6f\x73\x69\x78\x20\x6f\x72\x20\x6e\x74\x2c\x20\x65\x2e\x67\x2e\x20\x75\x6e\x6c\x69\x6e\x6b\x2c\x20\x73\x74\x61\x74\x2c\x20\x65\x74\x63\x2e\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x70\x61\x74\x68\x20\x69\x73\x20\x65\x69\x74\x68\x65\x72\x20\x70\x6f\x73\x69\x78\x70\x61\x74\x68\x20\x6f\x72\x20\x6e\x74\x70\x61\x74\x68\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x6e\x61\x6d\x65\x20\x69\x73\x20\x65\x69\x74\x68\x65\x72\x20\x27\x70\x6f\x73\x69\x78\x27\x20\x6f\x72\x20\x27\x6e\x74\x27\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x63\x75\x72\x64\x69\x72\x20\x69\x73\x20\x61\x20\x73\x74\x72\x69\x6e\x67\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x28\x61\x6c\x77\x61\x79\x73\x20\x27\x2e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x70\x61\x72\x64\x69\x72\x20\x69\x73\x20\x61\x20\x73\x74\x72\x69\x6e\x67\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x70\x61\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x28\x61\x6c\x77\x61\x79\x73\x20\x27\x2e\x2e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x28\x6f\x72\x20\x61\x20\x6d\x6f\x73\x74\x20\x63\x6f\x6d\x6d\x6f\x6e\x29\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x28\x27\x2f\x27\x20\x6f\x72\x20\x27\x5c\x5c\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x65\x78\x74\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x28\x61\x6c\x77\x61\x79\x73\x20\x27\x2e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x61\x6c\x74\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x28\x4e\x6f\x6e\x65\x20\x6f\x72\x20\x27\x2f\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x70\x61\x74\x68\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x75\x73\x65\x64\x20\x69\x6e\x20\x24\x50\x41\x54\x48\x20\x65\x74\x63\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x6c\x69\x6e\x65\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x69\x6e\x20\x74\x65\x78\x74\x20\x66\x69\x6c\x65\x73\x20\x28\x27\x5c\x72\x27\x20\x6f\x72\x20\x27\x5c\x6e\x27\x20\x6f\x72\x20\x27\x5c\x72\x5c\x6e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x64\x65\x66\x70\x61\x74\x68\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x20\x66\x6f\x72\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x73\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x64\x65\x76\x6e\x75\x6c\x6c\x20\x69\x73\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x70\x61\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x75\x6c\x6c\x20\x64\x65\x76\x69\x63\x65\x20\x28\x27\x2f\x64\x65\x76\x2f\x6e\x75\x6c\x6c\x27\x2c\x20\x65\x74\x63\x2e\x29\x0a\x0a\x50\x72\x6f\x67\x72\x61\x6d\x73\x20\x74\x68\x61\x74\x20\x69\x6d\x70\x6f\x72\x74\x20\x61\x6e\x64\x20\x75\x73\x65\x20\x27\x6f\x73\x27\x20\x73\x74\x61\x6e\x64\x20\x61\x20\x62\x65\x74\x74\x65\x72\x20\x63\x68\x61\x6e\x63\x65\x20\x6f\x66\x20\x62\x65\x69\x6e\x67\x0a\x70\x6f\x72\x74\x61\x62\x6c\x65\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x70\x6c\x61\x74\x66\x6f\x72\x6d\x73\x2e\x20\x20\x4f\x66\x20\x63\x6f\x75\x72\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x6d\x75\x73\x74\x20\x74\x68\x65\x6e\x0a\x6f\x6e\x6c\x79\x20\x75\x73\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x62\x79\x20\x61\x6c\x6c\x20\x70\x6c\x61\x74\x66\x6f\x72\x6d\x73\x20\x28\x65\x2e\x67\x2e\x2c\x20\x75\x6e\x6c\x69\x6e\x6b\x0a\x61\x6e\x64\x20\x6f\x70\x65\x6e\x64\x69\x72\x29\x2c\x20\x61\x6e\x64\x20\x6c\x65\x61\x76\x65\x20\x61\x6c\x6c\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x6d\x61\x6e\x69\x70\x75\x6c\x61\x74\x69\x6f\x6e\x20\x74\x6f\x20\x6f\x73\x2e\x70\x61\x74\x68\x0a\x28\x65\x2e\x67\x2e\x2c\x20\x73\x70\x6c\x69\x74\x20\x61\x6e\x64\x20\x6a\x6f\x69\x6e\x29\x2e\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__check_methods._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_linesep = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "linesep", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_get_exec_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "get_exec_path", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_fdopen = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fdopen", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[18]; + }_object; + } +os_toplevel_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 18, + }, + .ob_item = { + & const_str_altsep._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + & const_str_linesep._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(path), + & const_str_devnull._ascii.ob_base, + & const_str_SEEK_SET._ascii.ob_base, + & const_str_SEEK_CUR._ascii.ob_base, + & const_str_SEEK_END._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + & const_str_get_exec_path._ascii.ob_base, + & const_str_fdopen._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_globals._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +os_toplevel_consts_5_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__exists = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_exists", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[18]; + } +os_toplevel_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 17, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0f\x95\x37\x91\x39\x94\x39\xd0\x0b\x1c\xd0\x04\x1c", +}; +static + struct _PyCode_DEF(34) +os_toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 41, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__exists._ascii.ob_base, + .co_qualname = & const_str__exists._ascii.ob_base, + .co_linetable = & os_toplevel_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_6_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + &_Py_ID(_), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +os_toplevel_consts_6_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_exports_list..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +os_toplevel_consts_6_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd0\x0f\x36\xd0\x0f\x36\xd0\x0f\x36\x90\x61\xa8\x21\xa8\x41\xac\x24\xb0\x23\xaa\x2b\xa8\x2b\x90\x01\xa8\x2b\xa8\x2b\xa8\x2b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_6_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_n._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(42) +os_toplevel_consts_6_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & os_toplevel_consts_6_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 48, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_6_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & os_toplevel_consts_6_consts_1_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_6_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x10\x7d\x01\x7c\x01\x64\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x03\x00\x00\x00\x00\xaf\x0e\x7c\x01\x91\x02\x8c\x11\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_6_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_list._ascii.ob_base, + &_Py_ID(__all__), + & const_str_AttributeError._ascii.ob_base, + & const_str_dir._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str__get_exports_list = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_exports_list", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[83]; + } +os_toplevel_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 82, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x03\x05\x37\xdd\x0f\x13\x90\x46\x94\x4e\xd1\x0f\x23\xd4\x0f\x23\xd0\x08\x23\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x37\xf0\x00\x01\x05\x37\xf0\x00\x01\x05\x37\xd8\x0f\x36\xd0\x0f\x36\x9d\x33\x98\x76\x99\x3b\x9c\x3b\xd0\x0f\x36\xd1\x0f\x36\xd4\x0f\x36\xd0\x08\x36\xd0\x08\x36\xd0\x08\x36\xf0\x03\x01\x05\x37\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +os_toplevel_consts_6_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x82\x13\x16\x00\x96\x23\x3c\x03\xbb\x01\x3c\x03", +}; +static + struct _PyCode_DEF(126) +os_toplevel_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 63, + }, + .co_consts = & os_toplevel_consts_6_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_6_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 44, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_37_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__get_exports_list._ascii.ob_base, + .co_qualname = & const_str__get_exports_list._ascii.ob_base, + .co_linetable = & os_toplevel_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1c\x01\x00\x64\x01\x84\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__exit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_exit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_10 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__exit._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__have_functions = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_have_functions", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_12 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__have_functions._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +os_toplevel_consts_14 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0d\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +os_toplevel_consts_15 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "no os specific module found", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +os_toplevel_consts_16 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "os.path", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +os_toplevel_consts_17 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_devnull._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__globals = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_globals", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str__set = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_set", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_19_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__globals._ascii.ob_base, + & const_str__have_functions._ascii.ob_base, + & const_str__set._ascii.ob_base, + &_Py_ID(add), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str__add = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_add", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[63]; + } +os_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 62, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0c\x0e\x95\x28\x88\x4e\x88\x4e\xa0\x13\xad\x0f\xd0\x21\x37\xd0\x21\x37\xdd\x0c\x10\x8f\x48\x8a\x48\x95\x58\x98\x62\x94\x5c\xd1\x0c\x22\xd4\x0c\x22\xd0\x0c\x22\xd0\x0c\x22\xd0\x0c\x22\xf0\x03\x00\x0d\x1b\x88\x4e\xd0\x21\x37\xd0\x21\x37", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_str._ascii.ob_base, + & const_str_fn._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(124) +os_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 62, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 104, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__add._ascii.ob_base, + .co_qualname = & const_str__add._ascii.ob_base, + .co_linetable = & os_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x30\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x29\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_HAVE_FACCESSAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FACCESSAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_access = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "access", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_FCHMODAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FCHMODAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_chmod = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "chmod", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_FCHOWNAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FCHOWNAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_chown = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "chown", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_HAVE_FSTATAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FSTATAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_HAVE_FUTIMESAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FUTIMESAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_utime = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "utime", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_HAVE_LINKAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_LINKAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_link = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "link", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_HAVE_MKDIRAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_MKDIRAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_MKFIFOAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_MKFIFOAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_mkfifo = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mkfifo", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_HAVE_MKNODAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_MKNODAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_mknod = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mknod", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_HAVE_OPENAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_OPENAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_HAVE_READLINKAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_READLINKAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_RENAMEAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_RENAMEAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_rename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "rename", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_HAVE_SYMLINKAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_SYMLINKAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_symlink = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "symlink", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_UNLINKAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_UNLINKAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_rmdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "rmdir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_HAVE_UTIMENSAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_UTIMENSAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_HAVE_FCHDIR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FCHDIR", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_chdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "chdir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_HAVE_FCHMOD = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FCHMOD", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_HAVE_FCHOWN = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FCHOWN", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_HAVE_FDOPENDIR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FDOPENDIR", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_scandir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "scandir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_HAVE_FEXECVE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FEXECVE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_execve = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execve", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_HAVE_FTRUNCATE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FTRUNCATE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_FUTIMENS = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FUTIMENS", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_HAVE_FUTIMES = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FUTIMES", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_HAVE_FPATHCONF = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FPATHCONF", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_pathconf = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pathconf", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_statvfs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "statvfs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_fstatvfs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fstatvfs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_FSTATVFS = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_FSTATVFS", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_HAVE_LCHFLAGS = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_LCHFLAGS", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_chflags = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "chflags", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_HAVE_LCHMOD = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_LCHMOD", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_lchown = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lchown", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_HAVE_LCHOWN = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_LCHOWN", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_HAVE_LUTIMES = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_LUTIMES", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_HAVE_LSTAT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "HAVE_LSTAT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_MS_WINDOWS = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "MS_WINDOWS", +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_511 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 511 }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[396]; + } +os_toplevel_consts_80_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 395, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x6d\x61\x6b\x65\x64\x69\x72\x73\x28\x6e\x61\x6d\x65\x20\x5b\x2c\x20\x6d\x6f\x64\x65\x3d\x30\x6f\x37\x37\x37\x5d\x5b\x2c\x20\x65\x78\x69\x73\x74\x5f\x6f\x6b\x3d\x46\x61\x6c\x73\x65\x5d\x29\x0a\x0a\x20\x20\x20\x20\x53\x75\x70\x65\x72\x2d\x6d\x6b\x64\x69\x72\x3b\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x6f\x6e\x65\x73\x2e\x20\x20\x57\x6f\x72\x6b\x73\x20\x6c\x69\x6b\x65\x0a\x20\x20\x20\x20\x6d\x6b\x64\x69\x72\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x74\x68\x61\x74\x20\x61\x6e\x79\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x70\x61\x74\x68\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x6e\x6f\x74\x20\x6a\x75\x73\x74\x20\x74\x68\x65\x20\x72\x69\x67\x68\x74\x6d\x6f\x73\x74\x29\x0a\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x72\x65\x61\x74\x65\x64\x20\x69\x66\x20\x69\x74\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x74\x61\x72\x67\x65\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6c\x72\x65\x61\x64\x79\x0a\x20\x20\x20\x20\x65\x78\x69\x73\x74\x73\x2c\x20\x72\x61\x69\x73\x65\x20\x61\x6e\x20\x4f\x53\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x65\x78\x69\x73\x74\x5f\x6f\x6b\x20\x69\x73\x20\x46\x61\x6c\x73\x65\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x6e\x6f\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x73\x0a\x20\x20\x20\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x72\x65\x63\x75\x72\x73\x69\x76\x65\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_exist_ok = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exist_ok", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_80_consts_1 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_exist_ok._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_80_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & os_toplevel_consts_80_consts_0._ascii.ob_base, + & os_toplevel_consts_80_consts_1._object.ob_base.ob_base, + & const_str_ASCII._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_makedirs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "makedirs", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +os_toplevel_consts_80_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(path), + & const_str_split._ascii.ob_base, + & const_str_exists._ascii.ob_base, + & const_str_makedirs._ascii.ob_base, + & const_str_FileExistsError._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_mkdir._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_isdir._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[295]; + } +os_toplevel_consts_80_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 294, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x14\x00\x12\x16\x94\x1a\x98\x44\xd1\x11\x21\xd4\x11\x21\x81\x4a\x80\x44\x88\x24\xd8\x0b\x0f\xf0\x00\x01\x05\x26\xdd\x15\x19\x94\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\x89\x0a\x88\x04\x88\x64\xd8\x07\x0b\xf0\x00\x0a\x05\x13\x90\x04\xf0\x00\x0a\x05\x13\x9d\x54\x9c\x5b\xa8\x14\xd1\x1d\x2e\xd4\x1d\x2e\xf0\x00\x0a\x05\x13\xf0\x02\x04\x09\x11\xdd\x0c\x14\x90\x54\xa0\x48\xd0\x0c\x2d\xd1\x0c\x2d\xd4\x0c\x2d\xd0\x0c\x2d\xd0\x0c\x2d\xf8\xdd\x0f\x1e\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xe0\x0c\x10\x88\x44\xf0\x05\x02\x09\x11\xf8\xf8\xf8\xf5\x06\x00\x10\x16\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x01\x09\x2a\xdd\x13\x18\x9d\x16\xa0\x17\xd1\x13\x29\xd4\x13\x29\x88\x44\xd8\x0b\x0f\x90\x34\x8a\x3c\x88\x3c\xd8\x0c\x12\x88\x46\xf0\x02\x06\x05\x12\xdd\x08\x0d\x88\x64\x90\x44\xd1\x08\x19\xd4\x08\x19\xd0\x08\x19\xd0\x08\x19\xd0\x08\x19\xf8\xdd\x0b\x12\xf0\x00\x04\x05\x12\xf0\x00\x04\x05\x12\xf0\x00\x04\x05\x12\xf0\x06\x00\x10\x18\xf0\x00\x01\x09\x12\x9d\x74\x9c\x7a\xa8\x24\xd1\x1f\x2f\xd4\x1f\x2f\xf0\x00\x01\x09\x12\xd8\x0c\x11\xf0\x03\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x07\x04\x05\x12\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[37]; + } +os_toplevel_consts_80_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 36, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x0a\x11\x41\x1c\x00\xc1\x1c\x0a\x41\x29\x03\xc1\x28\x01\x41\x29\x03\xc2\x26\x10\x42\x38\x00\xc2\x38\x21\x43\x1d\x03\xc3\x1c\x01\x43\x1d\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_cdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cdir", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +os_toplevel_consts_80_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(name), + &_Py_ID(mode), + & const_str_exist_ok._ascii.ob_base, + & const_str_head._ascii.ob_base, + & const_str_tail._ascii.ob_base, + & const_str_cdir._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(448) +os_toplevel_consts_80 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 224, + }, + .co_consts = & os_toplevel_consts_80_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_80_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_80_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 200, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_80_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_makedirs._ascii.ob_base, + .co_qualname = & const_str_makedirs._ascii.ob_base, + .co_linetable = & os_toplevel_consts_80_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x73\x17\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x03\x72\x72\x7c\x04\x72\x70\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x5c\x09\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x02\xac\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x04\x7c\x05\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x03\x53\x00\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1b\x01\x00\x7c\x02\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x01\x82\x00\x59\x00\x64\x03\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[429]; + } +os_toplevel_consts_81_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 428, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x72\x65\x6d\x6f\x76\x65\x64\x69\x72\x73\x28\x6e\x61\x6d\x65\x29\x0a\x0a\x20\x20\x20\x20\x53\x75\x70\x65\x72\x2d\x72\x6d\x64\x69\x72\x3b\x20\x72\x65\x6d\x6f\x76\x65\x20\x61\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x65\x6d\x70\x74\x79\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x0a\x20\x20\x20\x20\x6f\x6e\x65\x73\x2e\x20\x20\x57\x6f\x72\x6b\x73\x20\x6c\x69\x6b\x65\x20\x72\x6d\x64\x69\x72\x20\x65\x78\x63\x65\x70\x74\x20\x74\x68\x61\x74\x2c\x20\x69\x66\x20\x74\x68\x65\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x0a\x20\x20\x20\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x72\x65\x6d\x6f\x76\x65\x64\x2c\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x74\x6f\x20\x72\x69\x67\x68\x74\x6d\x6f\x73\x74\x20\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x70\x72\x75\x6e\x65\x64\x20\x61\x77\x61\x79\x20\x75\x6e\x74\x69\x6c\x20\x65\x69\x74\x68\x65\x72\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x70\x61\x74\x68\x20\x69\x73\x0a\x20\x20\x20\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x20\x6f\x72\x20\x61\x6e\x20\x65\x72\x72\x6f\x72\x20\x6f\x63\x63\x75\x72\x73\x2e\x20\x20\x45\x72\x72\x6f\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6c\x61\x74\x74\x65\x72\x20\x70\x68\x61\x73\x65\x20\x61\x72\x65\x0a\x20\x20\x20\x20\x69\x67\x6e\x6f\x72\x65\x64\x20\x2d\x2d\x20\x74\x68\x65\x79\x20\x67\x65\x6e\x65\x72\x61\x6c\x6c\x79\x20\x6d\x65\x61\x6e\x20\x74\x68\x61\x74\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x77\x61\x73\x20\x6e\x6f\x74\x20\x65\x6d\x70\x74\x79\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_81_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_81_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_81_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_rmdir._ascii.ob_base, + &_Py_ID(path), + & const_str_split._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_removedirs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "removedirs", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[205]; + } +os_toplevel_consts_81_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 204, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x16\x00\x05\x0a\x88\x24\x81\x4b\x84\x4b\x80\x4b\xdd\x11\x15\x94\x1a\x98\x44\xd1\x11\x21\xd4\x11\x21\x81\x4a\x80\x44\x88\x24\xd8\x0b\x0f\xf0\x00\x01\x05\x26\xdd\x15\x19\x94\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\x89\x0a\x88\x04\x88\x64\xd8\x0a\x0e\xf0\x00\x05\x05\x26\x90\x34\xf0\x00\x05\x05\x26\xf0\x02\x03\x09\x12\xdd\x0c\x11\x90\x24\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xd8\x0c\x11\x88\x45\x88\x45\xf0\x03\x01\x09\x12\xf8\xf8\xf8\xe5\x15\x19\x94\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\x89\x0a\x88\x04\x88\x64\xf0\x0b\x00\x0b\x0f\xf0\x00\x05\x05\x26\x90\x34\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +os_toplevel_consts_81_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x05\x0f\x41\x15\x00\xc1\x15\x0a\x41\x23\x03\xc1\x22\x01\x41\x23\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_81_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(name), + & const_str_head._ascii.ob_base, + & const_str_tail._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(274) +os_toplevel_consts_81 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 137, + }, + .co_consts = & os_toplevel_consts_81_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_81_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_81_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 232, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_81_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_removedirs._ascii.ob_base, + .co_qualname = & const_str_removedirs._ascii.ob_base, + .co_linetable = & os_toplevel_consts_81_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x02\x73\x17\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x72\x41\x7c\x02\x72\x41\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x11\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x72\x08\x7c\x02\xb0\x3d\x64\x01\x53\x00\x64\x01\x53\x00\x64\x01\x53\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[573]; + } +os_toplevel_consts_82_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 572, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x72\x65\x6e\x61\x6d\x65\x73\x28\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x29\x0a\x0a\x20\x20\x20\x20\x53\x75\x70\x65\x72\x2d\x72\x65\x6e\x61\x6d\x65\x3b\x20\x63\x72\x65\x61\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x73\x20\x6e\x65\x63\x65\x73\x73\x61\x72\x79\x20\x61\x6e\x64\x20\x64\x65\x6c\x65\x74\x65\x20\x61\x6e\x79\x20\x6c\x65\x66\x74\x0a\x20\x20\x20\x20\x65\x6d\x70\x74\x79\x2e\x20\x20\x57\x6f\x72\x6b\x73\x20\x6c\x69\x6b\x65\x20\x72\x65\x6e\x61\x6d\x65\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x61\x6e\x79\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x0a\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x6e\x65\x65\x64\x65\x64\x20\x74\x6f\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6e\x65\x77\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x67\x6f\x6f\x64\x20\x69\x73\x20\x61\x74\x74\x65\x6d\x70\x74\x65\x64\x0a\x20\x20\x20\x20\x66\x69\x72\x73\x74\x2e\x20\x20\x41\x66\x74\x65\x72\x20\x74\x68\x65\x20\x72\x65\x6e\x61\x6d\x65\x2c\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x74\x6f\x20\x72\x69\x67\x68\x74\x6d\x6f\x73\x74\x0a\x20\x20\x20\x20\x70\x61\x74\x68\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x6c\x64\x20\x6e\x61\x6d\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x70\x72\x75\x6e\x65\x64\x20\x75\x6e\x74\x69\x6c\x20\x65\x69\x74\x68\x65\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x77\x68\x6f\x6c\x65\x20\x70\x61\x74\x68\x20\x69\x73\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x20\x6f\x72\x20\x61\x20\x6e\x6f\x6e\x65\x6d\x70\x74\x79\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20\x4e\x6f\x74\x65\x3a\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x63\x61\x6e\x20\x66\x61\x69\x6c\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x77\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6d\x61\x64\x65\x0a\x20\x20\x20\x20\x69\x66\x20\x79\x6f\x75\x20\x6c\x61\x63\x6b\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x73\x20\x6e\x65\x65\x64\x65\x64\x20\x74\x6f\x20\x75\x6e\x6c\x69\x6e\x6b\x20\x74\x68\x65\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x6f\x72\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_82_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_82_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +os_toplevel_consts_82_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(path), + & const_str_split._ascii.ob_base, + & const_str_exists._ascii.ob_base, + & const_str_makedirs._ascii.ob_base, + & const_str_rename._ascii.ob_base, + & const_str_removedirs._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_renames = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "renames", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[192]; + } +os_toplevel_consts_82_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 191, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x1e\x00\x12\x16\x94\x1a\x98\x43\x91\x1f\x94\x1f\x81\x4a\x80\x44\x88\x24\xd8\x07\x0b\xf0\x00\x01\x05\x17\x90\x04\xf0\x00\x01\x05\x17\x9d\x54\x9c\x5b\xa8\x14\xd1\x1d\x2e\xd4\x1d\x2e\xf0\x00\x01\x05\x17\xdd\x08\x10\x90\x14\x89\x0e\x8c\x0e\x88\x0e\xdd\x04\x0a\x88\x33\x90\x03\xd1\x04\x14\xd4\x04\x14\xd0\x04\x14\xdd\x11\x15\x94\x1a\x98\x43\x91\x1f\x94\x1f\x81\x4a\x80\x44\x88\x24\xd8\x07\x0b\xf0\x00\x04\x05\x11\x90\x04\xf0\x00\x04\x05\x11\xf0\x02\x03\x09\x11\xdd\x0c\x16\x90\x74\xd1\x0c\x1c\xd4\x0c\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x07\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x00\x04\x05\x11", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +os_toplevel_consts_82_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x2b\x0f\x41\x3c\x00\xc1\x3c\x0a\x42\x0a\x03\xc2\x09\x01\x42\x0a\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_82_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_old._ascii.ob_base, + & const_str_new._ascii.ob_base, + & const_str_head._ascii.ob_base, + & const_str_tail._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(290) +os_toplevel_consts_82 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 145, + }, + .co_consts = & os_toplevel_consts_82_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_82_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_82_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 254, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_82_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_renames._ascii.ob_base, + .co_qualname = & const_str_renames._ascii.ob_base, + .co_linetable = & os_toplevel_consts_82_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x72\x25\x7c\x03\x72\x23\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x72\x25\x7c\x03\x72\x25\x09\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x53\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_83 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_makedirs._ascii.ob_base, + & const_str_removedirs._ascii.ob_base, + & const_str_renames._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2855]; + } +os_toplevel_consts_85_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2854, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x72\x65\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x46\x6f\x72\x20\x65\x61\x63\x68\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x6e\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x72\x65\x65\x20\x72\x6f\x6f\x74\x65\x64\x20\x61\x74\x20\x74\x6f\x70\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x6f\x70\x0a\x20\x20\x20\x20\x69\x74\x73\x65\x6c\x66\x2c\x20\x62\x75\x74\x20\x65\x78\x63\x6c\x75\x64\x69\x6e\x67\x20\x27\x2e\x27\x20\x61\x6e\x64\x20\x27\x2e\x2e\x27\x29\x2c\x20\x79\x69\x65\x6c\x64\x73\x20\x61\x20\x33\x2d\x74\x75\x70\x6c\x65\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x2c\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x0a\x0a\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x20\x69\x73\x20\x61\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x69\x73\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x69\x6e\x20\x64\x69\x72\x70\x61\x74\x68\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x79\x6d\x6c\x69\x6e\x6b\x73\x20\x74\x6f\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x0a\x20\x20\x20\x20\x61\x6e\x64\x20\x65\x78\x63\x6c\x75\x64\x69\x6e\x67\x20\x27\x2e\x27\x20\x61\x6e\x64\x20\x27\x2e\x2e\x27\x29\x2e\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x20\x69\x73\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x20\x64\x69\x72\x70\x61\x74\x68\x2e\x0a\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x6c\x69\x73\x74\x73\x20\x61\x72\x65\x20\x6a\x75\x73\x74\x20\x6e\x61\x6d\x65\x73\x2c\x20\x77\x69\x74\x68\x20\x6e\x6f\x20\x70\x61\x74\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x2e\x0a\x20\x20\x20\x20\x54\x6f\x20\x67\x65\x74\x20\x61\x20\x66\x75\x6c\x6c\x20\x70\x61\x74\x68\x20\x28\x77\x68\x69\x63\x68\x20\x62\x65\x67\x69\x6e\x73\x20\x77\x69\x74\x68\x20\x74\x6f\x70\x29\x20\x74\x6f\x20\x61\x20\x66\x69\x6c\x65\x20\x6f\x72\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x6e\x0a\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x64\x6f\x20\x6f\x73\x2e\x70\x61\x74\x68\x2e\x6a\x6f\x69\x6e\x28\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x6e\x61\x6d\x65\x29\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x61\x72\x67\x20\x27\x74\x6f\x70\x64\x6f\x77\x6e\x27\x20\x69\x73\x20\x74\x72\x75\x65\x20\x6f\x72\x20\x6e\x6f\x74\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x2c\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x20\x66\x6f\x72\x20\x61\x0a\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x62\x65\x66\x6f\x72\x65\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x73\x20\x66\x6f\x72\x20\x61\x6e\x79\x20\x6f\x66\x20\x69\x74\x73\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x0a\x20\x20\x20\x20\x28\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x74\x6f\x70\x20\x64\x6f\x77\x6e\x29\x2e\x20\x20\x49\x66\x20\x74\x6f\x70\x64\x6f\x77\x6e\x20\x69\x73\x20\x66\x61\x6c\x73\x65\x2c\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x0a\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x73\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x6f\x66\x20\x69\x74\x73\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x28\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x62\x6f\x74\x74\x6f\x6d\x20\x75\x70\x29\x2e\x0a\x0a\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x74\x6f\x70\x64\x6f\x77\x6e\x20\x69\x73\x20\x74\x72\x75\x65\x2c\x20\x74\x68\x65\x20\x63\x61\x6c\x6c\x65\x72\x20\x63\x61\x6e\x20\x6d\x6f\x64\x69\x66\x79\x20\x74\x68\x65\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x6c\x69\x73\x74\x20\x69\x6e\x2d\x70\x6c\x61\x63\x65\x0a\x20\x20\x20\x20\x28\x65\x2e\x67\x2e\x2c\x20\x76\x69\x61\x20\x64\x65\x6c\x20\x6f\x72\x20\x73\x6c\x69\x63\x65\x20\x61\x73\x73\x69\x67\x6e\x6d\x65\x6e\x74\x29\x2c\x20\x61\x6e\x64\x20\x77\x61\x6c\x6b\x20\x77\x69\x6c\x6c\x20\x6f\x6e\x6c\x79\x20\x72\x65\x63\x75\x72\x73\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x77\x68\x6f\x73\x65\x20\x6e\x61\x6d\x65\x73\x20\x72\x65\x6d\x61\x69\x6e\x20\x69\x6e\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x3b\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x70\x72\x75\x6e\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x65\x61\x72\x63\x68\x2c\x20\x6f\x72\x20\x74\x6f\x20\x69\x6d\x70\x6f\x73\x65\x20\x61\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6f\x72\x64\x65\x72\x20\x6f\x66\x20\x76\x69\x73\x69\x74\x69\x6e\x67\x2e\x20\x20\x4d\x6f\x64\x69\x66\x79\x69\x6e\x67\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x77\x68\x65\x6e\x0a\x20\x20\x20\x20\x74\x6f\x70\x64\x6f\x77\x6e\x20\x69\x73\x20\x66\x61\x6c\x73\x65\x20\x68\x61\x73\x20\x6e\x6f\x20\x65\x66\x66\x65\x63\x74\x20\x6f\x6e\x20\x74\x68\x65\x20\x62\x65\x68\x61\x76\x69\x6f\x72\x20\x6f\x66\x20\x6f\x73\x2e\x77\x61\x6c\x6b\x28\x29\x2c\x20\x73\x69\x6e\x63\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x69\x6e\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x68\x61\x76\x65\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x62\x65\x65\x6e\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x74\x69\x6d\x65\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x0a\x20\x20\x20\x20\x69\x74\x73\x65\x6c\x66\x20\x69\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x2e\x20\x4e\x6f\x20\x6d\x61\x74\x74\x65\x72\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x74\x6f\x70\x64\x6f\x77\x6e\x2c\x20\x74\x68\x65\x20\x6c\x69\x73\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x69\x73\x20\x72\x65\x74\x72\x69\x65\x76\x65\x64\x20\x62\x65\x66\x6f\x72\x65\x20\x74\x68\x65\x20\x74\x75\x70\x6c\x65\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x20\x69\x74\x73\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x42\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x65\x72\x72\x6f\x72\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6f\x73\x2e\x73\x63\x61\x6e\x64\x69\x72\x28\x29\x20\x63\x61\x6c\x6c\x20\x61\x72\x65\x20\x69\x67\x6e\x6f\x72\x65\x64\x2e\x20\x20\x49\x66\x0a\x20\x20\x20\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x61\x72\x67\x20\x27\x6f\x6e\x65\x72\x72\x6f\x72\x27\x20\x69\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x2c\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x3b\x20\x69\x74\x0a\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x61\x6c\x6c\x65\x64\x20\x77\x69\x74\x68\x20\x6f\x6e\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2c\x20\x61\x6e\x20\x4f\x53\x45\x72\x72\x6f\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x20\x20\x49\x74\x20\x63\x61\x6e\x0a\x20\x20\x20\x20\x72\x65\x70\x6f\x72\x74\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x74\x6f\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x77\x61\x6c\x6b\x2c\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x74\x68\x65\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x0a\x20\x20\x20\x20\x74\x6f\x20\x61\x62\x6f\x72\x74\x20\x74\x68\x65\x20\x77\x61\x6c\x6b\x2e\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x69\x73\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x61\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x42\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x2c\x20\x6f\x73\x2e\x77\x61\x6c\x6b\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x66\x6f\x6c\x6c\x6f\x77\x20\x73\x79\x6d\x62\x6f\x6c\x69\x63\x20\x6c\x69\x6e\x6b\x73\x20\x74\x6f\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x6f\x6e\x0a\x20\x20\x20\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x61\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x68\x65\x6d\x2e\x20\x20\x49\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x20\x67\x65\x74\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x61\x6c\x69\x74\x79\x2c\x20\x73\x65\x74\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x27\x66\x6f\x6c\x6c\x6f\x77\x6c\x69\x6e\x6b\x73\x27\x20\x74\x6f\x20\x74\x72\x75\x65\x2e\x0a\x0a\x20\x20\x20\x20\x43\x61\x75\x74\x69\x6f\x6e\x3a\x20\x20\x69\x66\x20\x79\x6f\x75\x20\x70\x61\x73\x73\x20\x61\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x74\x6f\x70\x2c\x20\x64\x6f\x6e\x27\x74\x20\x63\x68\x61\x6e\x67\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x72\x65\x73\x75\x6d\x70\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x77\x61\x6c\x6b\x2e\x20\x20\x77\x61\x6c\x6b\x20\x6e\x65\x76\x65\x72\x0a\x20\x20\x20\x20\x63\x68\x61\x6e\x67\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2c\x20\x61\x6e\x64\x20\x61\x73\x73\x75\x6d\x65\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x63\x6c\x69\x65\x6e\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x0a\x20\x20\x20\x20\x65\x69\x74\x68\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x61\x6d\x70\x6c\x65\x3a\x0a\x0a\x20\x20\x20\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x0a\x20\x20\x20\x20\x66\x72\x6f\x6d\x20\x6f\x73\x2e\x70\x61\x74\x68\x20\x69\x6d\x70\x6f\x72\x74\x20\x6a\x6f\x69\x6e\x2c\x20\x67\x65\x74\x73\x69\x7a\x65\x0a\x20\x20\x20\x20\x66\x6f\x72\x20\x72\x6f\x6f\x74\x2c\x20\x64\x69\x72\x73\x2c\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x20\x6f\x73\x2e\x77\x61\x6c\x6b\x28\x27\x70\x79\x74\x68\x6f\x6e\x2f\x4c\x69\x62\x2f\x65\x6d\x61\x69\x6c\x27\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x72\x6f\x6f\x74\x2c\x20\x22\x63\x6f\x6e\x73\x75\x6d\x65\x73\x20\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x73\x75\x6d\x28\x67\x65\x74\x73\x69\x7a\x65\x28\x6a\x6f\x69\x6e\x28\x72\x6f\x6f\x74\x2c\x20\x6e\x61\x6d\x65\x29\x29\x20\x66\x6f\x72\x20\x6e\x61\x6d\x65\x20\x69\x6e\x20\x66\x69\x6c\x65\x73\x29\x2c\x20\x65\x6e\x64\x3d\x22\x20\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x22\x62\x79\x74\x65\x73\x20\x69\x6e\x22\x2c\x20\x6c\x65\x6e\x28\x66\x69\x6c\x65\x73\x29\x2c\x20\x22\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x73\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x27\x43\x56\x53\x27\x20\x69\x6e\x20\x64\x69\x72\x73\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x73\x2e\x72\x65\x6d\x6f\x76\x65\x28\x27\x43\x56\x53\x27\x29\x20\x20\x23\x20\x64\x6f\x6e\x27\x74\x20\x76\x69\x73\x69\x74\x20\x43\x56\x53\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +os_toplevel_consts_85_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "os.walk", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_85_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_85_consts_0._ascii.ob_base, + & os_toplevel_consts_85_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_audit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "audit", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__walk = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_walk", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_85_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_audit._ascii.ob_base, + & const_str__walk._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_walk = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "walk", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[56]; + } +os_toplevel_consts_85_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 55, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x78\x01\x00\x05\x08\x84\x49\x88\x69\x98\x13\x98\x67\xa0\x77\xb0\x0b\xd1\x04\x3c\xd4\x04\x3c\xd0\x04\x3c\xdd\x0b\x10\x95\x16\x98\x03\x91\x1b\x94\x1b\x98\x67\xa0\x77\xb0\x0b\xd1\x0b\x3c\xd4\x0b\x3c\xd0\x04\x3c", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_topdown = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "topdown", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_onerror = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "onerror", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_followlinks = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "followlinks", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_85_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(top), + & const_str_topdown._ascii.ob_base, + & const_str_onerror._ascii.ob_base, + & const_str_followlinks._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(112) +os_toplevel_consts_85 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 56, + }, + .co_consts = & os_toplevel_consts_85_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_85_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 282, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_85_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_walk._ascii.ob_base, + .co_qualname = & const_str_walk._ascii.ob_base, + .co_linetable = & os_toplevel_consts_85_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x7c\x01\x7c\x02\x7c\x03\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_is_dir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "is_dir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_is_symlink = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "is_symlink", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +os_toplevel_consts_86_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str_scandir._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + &_Py_ID(next), + & const_str_StopIteration._ascii.ob_base, + & const_str_is_dir._ascii.ob_base, + &_Py_ID(append), + &_Py_ID(name), + & const_str_is_symlink._ascii.ob_base, + &_Py_ID(path), + & const_str_islink._ascii.ob_base, + &_Py_ID(join), + & const_str__walk._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[865]; + } +os_toplevel_consts_86_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 864, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x0b\x0d\x80\x44\xd8\x0e\x10\x80\x47\xd8\x10\x12\x80\x49\xf0\x0e\x07\x05\x0f\xf5\x06\x00\x16\x1d\x98\x53\x91\x5c\x94\x5c\x88\x0a\x88\x0a\xf8\xdd\x0b\x12\xf0\x00\x03\x05\x0f\xf0\x00\x03\x05\x0f\xf0\x00\x03\x05\x0f\xd8\x0b\x12\xd0\x0b\x1e\xd8\x0c\x13\x88\x47\x90\x45\x89\x4e\x8c\x4e\x88\x4e\xd8\x08\x0e\x88\x06\x88\x06\x88\x06\x88\x06\x88\x06\xf8\xf8\xf8\xf8\xf0\x07\x03\x05\x0f\xf8\xf8\xf8\xf0\x0a\x00\x0a\x14\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x02\x27\x09\x31\xf0\x02\x08\x0d\x17\xf0\x02\x03\x11\x1a\xdd\x1c\x20\xa0\x1a\xd1\x1c\x2c\xd4\x1c\x2c\x90\x45\x90\x45\xf8\xdd\x17\x24\xf0\x00\x01\x11\x1a\xf0\x00\x01\x11\x1a\xf0\x00\x01\x11\x1a\xd8\x14\x19\x90\x45\xf0\x03\x01\x11\x1a\xf8\xf8\xf8\xf0\x03\x00\x15\x1a\xf8\xf5\x06\x00\x14\x1b\xf0\x00\x03\x0d\x17\xf0\x00\x03\x0d\x17\xf0\x00\x03\x0d\x17\xd8\x13\x1a\xd0\x13\x26\xd8\x14\x1b\x90\x47\x98\x45\x91\x4e\x94\x4e\x90\x4e\xd8\x10\x16\x90\x06\x90\x06\x90\x06\xf0\x15\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf1\x00\x28\x05\x31\xf4\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf8\xf8\xf8\xf8\xf0\x0e\x03\x0d\x17\xf8\xf8\xf8\xf0\x0a\x05\x0d\x1f\xd8\x19\x1e\x9f\x1c\x9a\x1c\x99\x1e\x9c\x1e\x90\x06\x90\x06\xf8\xdd\x13\x1a\xf0\x00\x03\x0d\x1f\xf0\x00\x03\x0d\x1f\xf0\x00\x03\x0d\x1f\xf0\x06\x00\x1a\x1f\x90\x06\x90\x06\x90\x06\xf0\x07\x03\x0d\x1f\xf8\xf8\xf8\xf0\x0a\x00\x10\x16\xf0\x00\x03\x0d\x2b\xd8\x10\x14\x97\x0b\x92\x0b\x98\x45\x9c\x4a\xd1\x10\x27\xd4\x10\x27\xd0\x10\x27\xd0\x10\x27\xe0\x10\x17\x97\x0e\x92\x0e\x98\x75\x9c\x7a\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xe0\x13\x1a\xf0\x00\x10\x0d\x31\x98\x76\xf0\x00\x10\x0d\x31\xf0\x06\x00\x14\x1f\xf0\x00\x0a\x11\x2f\xd8\x20\x24\x90\x49\x90\x49\xf0\x04\x06\x15\x2b\xd8\x25\x2a\xd7\x25\x35\xd2\x25\x35\xd1\x25\x37\xd4\x25\x37\x98\x0a\x98\x0a\xf8\xdd\x1b\x22\xf0\x00\x04\x15\x2b\xf0\x00\x04\x15\x2b\xf0\x00\x04\x15\x2b\xf0\x08\x00\x26\x2b\x98\x0a\x98\x0a\x98\x0a\xf0\x09\x04\x15\x2b\xf8\xf8\xf8\xf0\x0a\x00\x25\x2f\xa0\x0e\x90\x49\xe0\x13\x1c\xf0\x00\x01\x11\x31\xd8\x14\x1d\xd7\x14\x24\xd2\x14\x24\xa0\x55\xa4\x5a\xd1\x14\x30\xd4\x14\x30\xd0\x14\x30\xf1\x4f\x01\x27\x09\x31\xf0\x0a\x00\x15\x1a\xf0\x0d\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf1\x00\x28\x05\x31\xf4\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf8\xf8\xf8\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x56\x01\x00\x08\x0f\xf0\x00\x12\x05\x21\xd8\x0e\x11\x90\x34\x98\x17\xd0\x0e\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xf5\x06\x00\x18\x1c\x94\x7b\xa5\x44\xa4\x49\x90\x04\x88\x06\xd8\x17\x1b\xf0\x00\x07\x09\x4a\x01\xf0\x00\x07\x09\x4a\x01\x88\x47\xd8\x17\x1b\x90\x74\x98\x43\xa0\x17\xd1\x17\x29\xd4\x17\x29\x88\x48\xf0\x0a\x00\x10\x1b\xf0\x00\x01\x0d\x4a\x01\xa0\x26\xa0\x26\xa8\x18\xd1\x22\x32\xd4\x22\x32\xf0\x00\x01\x0d\x4a\x01\xdd\x1b\x20\xa0\x18\xa8\x37\xb0\x47\xb8\x5b\xd1\x1b\x49\xd4\x1b\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xf8\xf0\x0f\x07\x09\x4a\x01\xf0\x00\x07\x09\x4a\x01\xf0\x14\x00\x19\x22\xf0\x00\x01\x09\x46\x01\xf0\x00\x01\x09\x46\x01\x88\x48\xdd\x17\x1c\x98\x58\xa0\x77\xb0\x07\xb8\x1b\xd1\x17\x45\xd4\x17\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xe0\x0e\x11\x90\x34\x98\x17\xd0\x0e\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[186]; + } +os_toplevel_consts_86_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 185, + }, + .ob_shash = -1, + .ob_sval = "\x8a\x0f\x1a\x00\x9a\x0a\x3c\x03\xa4\x0d\x37\x03\xb7\x05\x3c\x03\xc1\x01\x02\x45\x14\x03\xc1\x05\x0f\x41\x15\x02\xc1\x14\x01\x41\x26\x02\xc1\x15\x0a\x41\x22\x05\xc1\x1f\x01\x41\x26\x02\xc1\x20\x01\x45\x14\x03\xc1\x21\x01\x41\x22\x05\xc1\x22\x03\x41\x26\x02\xc1\x25\x01\x45\x14\x03\xc1\x26\x0a\x42\x13\x05\xc1\x30\x0d\x42\x0e\x05\xc1\x3d\x04\x45\x14\x03\xc2\x0e\x05\x42\x13\x05\xc2\x13\x03\x45\x14\x03\xc2\x17\x14\x42\x2c\x02\xc2\x2b\x01\x45\x14\x03\xc2\x2c\x0c\x42\x3b\x05\xc2\x38\x02\x45\x14\x03\xc2\x3a\x01\x42\x3b\x05\xc2\x3b\x41\x03\x45\x14\x03\xc3\x3f\x14\x44\x14\x02\xc4\x13\x01\x45\x14\x03\xc4\x14\x0c\x44\x23\x05\xc4\x20\x02\x45\x14\x03\xc4\x22\x01\x44\x23\x05\xc4\x23\x24\x45\x14\x03\xc5\x14\x04\x45\x18\x07\xc5\x1b\x01\x45\x18\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_nondirs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "nondirs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_walk_dirs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "walk_dirs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_scandir_it = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "scandir_it", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_error = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "error", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_walk_into = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "walk_into", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +os_toplevel_consts_86_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + &_Py_ID(top), + & const_str_topdown._ascii.ob_base, + & const_str_onerror._ascii.ob_base, + & const_str_followlinks._ascii.ob_base, + & const_str_dirs._ascii.ob_base, + & const_str_nondirs._ascii.ob_base, + & const_str_walk_dirs._ascii.ob_base, + & const_str_scandir_it._ascii.ob_base, + & const_str_error._ascii.ob_base, + & const_str_entry._ascii.ob_base, + & const_str_is_dir._ascii.ob_base, + & const_str_walk_into._ascii.ob_base, + & const_str_is_symlink._ascii.ob_base, + & const_str_islink._ascii.ob_base, + &_Py_ID(join), + & const_str_dirname._ascii.ob_base, + & const_str_new_path._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(956) +os_toplevel_consts_86 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 478, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_86_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_86_exceptiontable.ob_base.ob_base, + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 345, + .co_nlocalsplus = 17, + .co_nlocals = 17, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_86_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & zipimport_toplevel_consts_24_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__walk._ascii.ob_base, + .co_qualname = & const_str__walk._ascii.ob_base, + .co_linetable = & os_toplevel_consts_86_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x67\x00\x7d\x04\x67\x00\x7d\x05\x67\x00\x7d\x06\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x25\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x18\x7d\x08\x7c\x02\x81\x0b\x02\x00\x7c\x02\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x64\x00\x53\x00\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x07\x35\x00\x01\x00\x09\x00\x09\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\xe6\x77\x00\x78\x03\x59\x00\x77\x01\x6e\x30\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x23\x7d\x08\x7c\x02\x81\x0b\x02\x00\x7c\x02\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x09\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x02\x7d\x0a\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0a\x72\x1b\x7c\x04\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x7c\x05\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x73\x4e\x7c\x0a\x72\x4c\x7c\x03\x72\x03\x64\x01\x7d\x0b\x6e\x2b\x09\x00\x7c\x09\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x02\x7d\x0c\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x0c\x00\x7d\x0b\x7c\x0b\x72\x1a\x7c\x06\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x90\x01\x8c\x04\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x01\x72\x57\x7c\x00\x7c\x04\x7c\x05\x66\x03\x56\x00\x97\x01\x01\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x7d\x0d\x7c\x04\x44\x00\x5d\x33\x7d\x0f\x02\x00\x7c\x0e\x7c\x00\x7c\x0f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x10\x7c\x03\x73\x0b\x02\x00\x7c\x0d\x7c\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x18\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x10\x7c\x01\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x8c\x34\x64\x00\x53\x00\x7c\x06\x44\x00\x5d\x1a\x7d\x10\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x10\x7c\x01\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x8c\x1b\x7c\x00\x7c\x04\x7c\x05\x66\x03\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_follow_symlinks = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "follow_symlinks", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_dir_fd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dir_fd", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_89 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_follow_symlinks._ascii.ob_base, + & const_str_dir_fd._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[1283]; + } +os_toplevel_consts_90_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1282, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x72\x65\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x62\x65\x68\x61\x76\x65\x73\x20\x65\x78\x61\x63\x74\x6c\x79\x20\x6c\x69\x6b\x65\x20\x77\x61\x6c\x6b\x28\x29\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x74\x68\x61\x74\x20\x69\x74\x20\x79\x69\x65\x6c\x64\x73\x20\x61\x20\x34\x2d\x74\x75\x70\x6c\x65\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x2c\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x2c\x20\x64\x69\x72\x66\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x60\x64\x69\x72\x70\x61\x74\x68\x60\x2c\x20\x60\x64\x69\x72\x6e\x61\x6d\x65\x73\x60\x20\x61\x6e\x64\x20\x60\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x60\x20\x61\x72\x65\x20\x69\x64\x65\x6e\x74\x69\x63\x61\x6c\x20\x74\x6f\x20\x77\x61\x6c\x6b\x28\x29\x20\x6f\x75\x74\x70\x75\x74\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x60\x64\x69\x72\x66\x64\x60\x20\x69\x73\x20\x61\x20\x66\x69\x6c\x65\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x20\x72\x65\x66\x65\x72\x72\x69\x6e\x67\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x60\x64\x69\x72\x70\x61\x74\x68\x60\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x61\x64\x76\x61\x6e\x74\x61\x67\x65\x20\x6f\x66\x20\x66\x77\x61\x6c\x6b\x28\x29\x20\x6f\x76\x65\x72\x20\x77\x61\x6c\x6b\x28\x29\x20\x69\x73\x20\x74\x68\x61\x74\x20\x69\x74\x27\x73\x20\x73\x61\x66\x65\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x73\x79\x6d\x6c\x69\x6e\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x61\x63\x65\x73\x20\x28\x77\x68\x65\x6e\x20\x66\x6f\x6c\x6c\x6f\x77\x5f\x73\x79\x6d\x6c\x69\x6e\x6b\x73\x20\x69\x73\x20\x46\x61\x6c\x73\x65\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x64\x69\x72\x5f\x66\x64\x20\x69\x73\x20\x6e\x6f\x74\x20\x4e\x6f\x6e\x65\x2c\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x20\x6f\x70\x65\x6e\x20\x74\x6f\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x74\x6f\x70\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x3b\x20\x74\x6f\x70\x20\x77\x69\x6c\x6c\x20\x74\x68\x65\x6e\x20\x62\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\x74\x68\x61\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x28\x64\x69\x72\x5f\x66\x64\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x66\x6f\x72\x20\x66\x77\x61\x6c\x6b\x2e\x29\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x43\x61\x75\x74\x69\x6f\x6e\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x53\x69\x6e\x63\x65\x20\x66\x77\x61\x6c\x6b\x28\x29\x20\x79\x69\x65\x6c\x64\x73\x20\x66\x69\x6c\x65\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x73\x2c\x20\x74\x68\x6f\x73\x65\x20\x61\x72\x65\x20\x6f\x6e\x6c\x79\x20\x76\x61\x6c\x69\x64\x20\x75\x6e\x74\x69\x6c\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6e\x65\x78\x74\x20\x69\x74\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x65\x70\x2c\x20\x73\x6f\x20\x79\x6f\x75\x20\x73\x68\x6f\x75\x6c\x64\x20\x64\x75\x70\x28\x29\x20\x74\x68\x65\x6d\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x6b\x65\x65\x70\x20\x74\x68\x65\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x6c\x6f\x6e\x67\x65\x72\x20\x70\x65\x72\x69\x6f\x64\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x45\x78\x61\x6d\x70\x6c\x65\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x72\x6f\x6f\x74\x2c\x20\x64\x69\x72\x73\x2c\x20\x66\x69\x6c\x65\x73\x2c\x20\x72\x6f\x6f\x74\x66\x64\x20\x69\x6e\x20\x6f\x73\x2e\x66\x77\x61\x6c\x6b\x28\x27\x70\x79\x74\x68\x6f\x6e\x2f\x4c\x69\x62\x2f\x65\x6d\x61\x69\x6c\x27\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x72\x6f\x6f\x74\x2c\x20\x22\x63\x6f\x6e\x73\x75\x6d\x65\x73\x22\x2c\x20\x65\x6e\x64\x3d\x22\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x73\x75\x6d\x28\x6f\x73\x2e\x73\x74\x61\x74\x28\x6e\x61\x6d\x65\x2c\x20\x64\x69\x72\x5f\x66\x64\x3d\x72\x6f\x6f\x74\x66\x64\x29\x2e\x73\x74\x5f\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\x6e\x61\x6d\x65\x20\x69\x6e\x20\x66\x69\x6c\x65\x73\x29\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x3d\x22\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x22\x62\x79\x74\x65\x73\x20\x69\x6e\x22\x2c\x20\x6c\x65\x6e\x28\x66\x69\x6c\x65\x73\x29\x2c\x20\x22\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x73\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x27\x43\x56\x53\x27\x20\x69\x6e\x20\x64\x69\x72\x73\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x73\x2e\x72\x65\x6d\x6f\x76\x65\x28\x27\x43\x56\x53\x27\x29\x20\x20\x23\x20\x64\x6f\x6e\x27\x74\x20\x76\x69\x73\x69\x74\x20\x43\x56\x53\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +os_toplevel_consts_90_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "os.fwalk", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_90_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_dir_fd._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +os_toplevel_consts_90_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & os_toplevel_consts_90_consts_0._ascii.ob_base, + & os_toplevel_consts_90_consts_1._ascii.ob_base, + Py_False, + & os_toplevel_consts_89._object.ob_base.ob_base, + & os_toplevel_consts_90_consts_4._object.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_O_RDONLY = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "O_RDONLY", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_O_NONBLOCK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "O_NONBLOCK", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str__fwalk = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_fwalk", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +os_toplevel_consts_90_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_audit._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + & const_str_stat._ascii.ob_base, + &_Py_ID(open), + & const_str_O_RDONLY._ascii.ob_base, + & const_str_O_NONBLOCK._ascii.ob_base, + & const_str_st._ascii.ob_base, + & const_str_S_ISDIR._ascii.ob_base, + & const_str_st_mode._ascii.ob_base, + &_Py_ID(path), + & const_str_samestat._ascii.ob_base, + & const_str__fwalk._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + &_Py_ID(close), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_fwalk = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fwalk", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[277]; + } +os_toplevel_consts_90_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 276, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x42\x01\x00\x09\x0c\x8c\x09\x90\x2a\x98\x63\xa0\x37\xa8\x47\xb0\x5f\xc0\x66\xd1\x08\x4d\xd4\x08\x4d\xd0\x08\x4d\xdd\x0e\x14\x90\x53\x89\x6b\x8c\x6b\x88\x03\xf0\x06\x00\x10\x1f\xf0\x00\x01\x09\x46\x01\xdd\x16\x1a\x98\x33\xb0\x05\xb8\x66\xd0\x16\x45\xd1\x16\x45\xd4\x16\x45\x88\x47\xdd\x10\x14\x90\x53\x9d\x28\xa5\x5a\xd1\x1a\x2f\xb8\x06\xd0\x10\x3f\xd1\x10\x3f\xd4\x10\x3f\x88\x05\xf0\x02\x06\x09\x19\xd8\x10\x1f\xf0\x00\x03\x0d\x45\x01\xa5\x42\xa4\x4a\xa8\x77\xac\x7f\xd1\x24\x3f\xd4\x24\x3f\xf0\x00\x03\x0d\x45\x01\xdd\x24\x28\xa4\x4d\xb0\x27\xbd\x34\xc0\x05\xb9\x3b\xbc\x3b\xd1\x24\x47\xd4\x24\x47\xf0\x03\x03\x0d\x45\x01\xe5\x1b\x21\xa0\x25\xa8\x13\xad\x6a\xb8\x13\xbd\x65\xd1\x2e\x44\xd4\x2e\x44\xd8\x22\x29\xa8\x37\xb0\x4f\xf1\x03\x01\x1c\x45\x01\xf4\x00\x01\x1c\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf5\x06\x00\x0d\x12\x90\x25\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\x88\x4c\xf8\x8d\x45\x90\x25\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[14]; + } +os_toplevel_consts_90_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 13, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x1f\x41\x2a\x43\x1a\x00\xc3\x1a\x11\x43\x2b\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_orig_st = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "orig_st", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_topfd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "topfd", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +os_toplevel_consts_90_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(top), + & const_str_topdown._ascii.ob_base, + & const_str_onerror._ascii.ob_base, + & const_str_follow_symlinks._ascii.ob_base, + & const_str_dir_fd._ascii.ob_base, + & const_str_orig_st._ascii.ob_base, + & const_str_topfd._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(476) +os_toplevel_consts_90 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 238, + }, + .co_consts = & os_toplevel_consts_90_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_90_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_90_exceptiontable.ob_base.ob_base, + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 2, + .co_stacksize = 8, + .co_firstlineno = 431, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_90_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_fwalk._ascii.ob_base, + .co_qualname = & const_str_fwalk._ascii.ob_base, + .co_linetable = & os_toplevel_consts_90_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x7c\x04\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x03\x73\x12\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x7c\x04\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x07\x00\x00\x7c\x04\xac\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x09\x00\x7c\x03\x73\x3b\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x4f\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2d\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x00\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\x7c\x03\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x05\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x05\x53\x00\x23\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_91_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_dir_fd._ascii.ob_base, + & const_str_follow_symlinks._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_91_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_follow_symlinks._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_91_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + Py_False, + & os_toplevel_consts_91_consts_2._object.ob_base.ob_base, + & os_toplevel_consts_91_consts_3._object.ob_base.ob_base, + & os_toplevel_consts_90_consts_4._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +os_toplevel_consts_91_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + & const_str_scandir._ascii.ob_base, + &_Py_ID(name), + & const_str_fsencode._ascii.ob_base, + & const_str_is_dir._ascii.ob_base, + &_Py_ID(append), + & const_str_OSError._ascii.ob_base, + & const_str_is_symlink._ascii.ob_base, + & const_str_zip._ascii.ob_base, + & const_str_stat._ascii.ob_base, + &_Py_ID(open), + & const_str_O_RDONLY._ascii.ob_base, + & const_str_O_NONBLOCK._ascii.ob_base, + &_Py_ID(path), + & const_str_samestat._ascii.ob_base, + &_Py_ID(join), + & const_str__fwalk._ascii.ob_base, + &_Py_ID(close), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[718]; + } +os_toplevel_consts_91_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 717, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x0a\x00\x16\x1d\x98\x55\x91\x5e\x94\x5e\x88\x0a\xd8\x0f\x11\x88\x04\xd8\x12\x14\x88\x07\xd8\x1a\x21\xd0\x12\x3c\xa0\x5f\xd0\x12\x3c\x90\x24\x90\x24\xb8\x22\x88\x07\xd8\x15\x1f\xf0\x00\x11\x09\x19\xf0\x00\x11\x09\x19\x88\x45\xd8\x13\x18\x94\x3a\x88\x44\xd8\x0f\x16\xf0\x00\x01\x0d\x26\xdd\x17\x1f\xa0\x04\x91\x7e\x94\x7e\x90\x04\xf0\x02\x0d\x0d\x19\xd8\x13\x18\x97\x3c\x92\x3c\x91\x3e\x94\x3e\xf0\x00\x05\x11\x29\xd8\x14\x18\x97\x4b\x92\x4b\xa0\x04\xd1\x14\x25\xd4\x14\x25\xd0\x14\x25\xd8\x17\x1e\xd0\x17\x2a\xd8\x18\x1f\x9f\x0e\x9a\x0e\xa0\x75\xd1\x18\x2d\xd4\x18\x2d\xd0\x18\x2d\xf8\xe0\x14\x1b\x97\x4e\x92\x4e\xa0\x34\xd1\x14\x28\xd4\x14\x28\xd0\x14\x28\xf8\xf8\xdd\x13\x1a\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x02\x05\x11\x19\xe0\x17\x1c\xd7\x17\x27\xd2\x17\x27\xd1\x17\x29\xd4\x17\x29\xf0\x00\x01\x15\x2d\xd8\x18\x1f\x9f\x0e\x9a\x0e\xa0\x74\xd1\x18\x2c\xd4\x18\x2c\xd0\x18\x2c\xf8\xf8\xdd\x17\x1e\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xd8\x14\x18\x90\x44\xf0\x03\x01\x11\x19\xf8\xf8\xf8\xf8\xf8\xf0\x0b\x06\x0d\x19\xf8\xf8\xf8\xf0\x10\x00\x0c\x13\xf0\x00\x01\x09\x30\xd8\x12\x19\x98\x34\xa0\x17\xa8\x25\xd0\x12\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xe0\x1c\x23\x98\x4f\x90\x44\x90\x44\xb5\x13\xb0\x54\xb8\x37\xd1\x31\x43\xd4\x31\x43\xf0\x00\x14\x09\x1d\xf0\x00\x14\x09\x1d\x88\x44\xf0\x02\x0c\x0d\x19\xd8\x17\x26\xf0\x00\x06\x11\x44\x01\xd8\x17\x1e\xf0\x00\x05\x15\x44\x01\xdd\x22\x26\xa0\x74\xb0\x45\xc8\x35\xd0\x22\x51\xd1\x22\x51\xd4\x22\x51\x98\x07\x98\x07\xe0\x1f\x26\xd0\x1f\x32\xd0\x1f\x32\xd0\x1f\x32\xd8\x26\x2a\x99\x0b\x98\x04\x98\x65\xd8\x22\x27\xa7\x2a\xa2\x2a\xb8\x55\xa0\x2a\xd1\x22\x43\xd4\x22\x43\x98\x07\xdd\x18\x1c\x98\x54\xa5\x38\xad\x6a\xd1\x23\x38\xc0\x15\xd0\x18\x47\xd1\x18\x47\xd4\x18\x47\x90\x05\x90\x05\xf8\xdd\x13\x1a\xf0\x00\x03\x0d\x19\xf0\x00\x03\x0d\x19\xf0\x00\x03\x0d\x19\xd8\x13\x1a\xd0\x13\x26\xd8\x14\x1b\x90\x47\x98\x43\x91\x4c\x94\x4c\x90\x4c\xd8\x10\x18\x90\x08\x90\x08\x90\x08\x90\x08\xf8\xf8\xf8\xf8\xf0\x07\x03\x0d\x19\xf8\xf8\xf8\xf0\x08\x06\x0d\x1d\xd8\x13\x22\xf0\x00\x03\x11\x49\x01\xa5\x64\xa4\x6d\xb0\x47\xbd\x54\xc0\x25\xb9\x5b\xbc\x5b\xd1\x26\x49\xd4\x26\x49\xf0\x00\x03\x11\x49\x01\xdd\x1e\x22\x9c\x69\xa8\x07\xb0\x14\xd1\x1e\x36\xd4\x1e\x36\x90\x47\xdd\x1f\x25\xa0\x65\xa8\x57\xb0\x67\xd8\x26\x2d\xa8\x77\xb8\x0f\xf1\x03\x01\x20\x49\x01\xf4\x00\x01\x20\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf5\x06\x00\x11\x16\x90\x65\x91\x0c\x94\x0c\x90\x0c\x90\x0c\xf8\x95\x05\x90\x65\x91\x0c\x94\x0c\x90\x0c\x90\x0c\xf8\xf8\xf8\xe0\x0f\x16\xf0\x00\x01\x09\x30\xd8\x12\x19\x98\x34\xa0\x17\xa8\x25\xd0\x12\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xf0\x03\x01\x09\x30\xf0\x00\x01\x09\x30", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[93]; + } +os_toplevel_consts_91_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 92, + }, + .ob_shash = -1, + .ob_sval = "\xbb\x41\x16\x42\x12\x02\xc2\x12\x0a\x43\x1a\x05\xc2\x1d\x29\x43\x07\x04\xc3\x06\x01\x43\x1a\x05\xc3\x07\x0a\x43\x14\x07\xc3\x11\x02\x43\x1a\x05\xc3\x13\x01\x43\x14\x07\xc3\x14\x03\x43\x1a\x05\xc3\x19\x01\x43\x1a\x05\xc3\x3e\x41\x15\x45\x14\x02\xc5\x14\x0a\x45\x35\x05\xc5\x1e\x0d\x45\x30\x05\xc5\x30\x05\x45\x35\x05\xc5\x39\x41\x13\x47\x1c\x02\xc7\x1c\x11\x47\x2d\x05", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_toppath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "toppath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_isbytes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "isbytes", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_entries = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "entries", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_dirfd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dirfd", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_err = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "err", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +os_toplevel_consts_91_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & const_str_topfd._ascii.ob_base, + & const_str_toppath._ascii.ob_base, + & const_str_isbytes._ascii.ob_base, + & const_str_topdown._ascii.ob_base, + & const_str_onerror._ascii.ob_base, + & const_str_follow_symlinks._ascii.ob_base, + & const_str_scandir_it._ascii.ob_base, + & const_str_dirs._ascii.ob_base, + & const_str_nondirs._ascii.ob_base, + & const_str_entries._ascii.ob_base, + & const_str_entry._ascii.ob_base, + &_Py_ID(name), + & const_str_orig_st._ascii.ob_base, + & const_str_dirfd._ascii.ob_base, + & const_str_err._ascii.ob_base, + & const_str_dirpath._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[17]; + } +os_toplevel_consts_91_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 16, + }, + .ob_shash = -1, + .ob_sval = " ", +}; +static + struct _PyCode_DEF(1020) +os_toplevel_consts_91 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 510, + }, + .co_consts = & os_toplevel_consts_91_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_91_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_91_exceptiontable.ob_base.ob_base, + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 6, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 9, + .co_firstlineno = 479, + .co_nlocalsplus = 16, + .co_nlocals = 16, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_91_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & os_toplevel_consts_91_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__fwalk._ascii.ob_base, + .co_qualname = & const_str__fwalk._ascii.ob_base, + .co_linetable = & os_toplevel_consts_91_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x67\x00\x7d\x07\x67\x00\x7d\x08\x7c\x03\x73\x02\x7c\x05\x72\x02\x64\x00\x6e\x01\x67\x00\x7d\x09\x7c\x06\x44\x00\x5d\xbc\x7d\x0a\x7c\x0a\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x02\x72\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x0a\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2d\x7c\x07\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x09\x81\x15\x7c\x09\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x15\x7c\x08\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x72\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x3e\x01\x00\x09\x00\x7c\x0a\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x08\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x59\x00\x8c\xb9\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x72\x08\x7c\x01\x7c\x07\x7c\x08\x7c\x00\x66\x04\x56\x00\x97\x01\x01\x00\x7c\x09\x80\x02\x7c\x07\x6e\x0f\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\xf4\x7d\x0b\x09\x00\x7c\x05\x73\x34\x7c\x03\x72\x13\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x7c\x00\x64\x01\xac\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x6e\x1f\x7c\x09\x80\x02\x4a\x00\x82\x01\x7c\x0b\x5c\x02\x00\x00\x7d\x0b\x7d\x0a\x7c\x0a\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xac\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x07\x00\x00\x7c\x00\xac\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x6e\x24\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x17\x7d\x0e\x7c\x04\x81\x0b\x02\x00\x7c\x04\x7c\x0e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x7d\x0e\x7e\x0e\x8c\x75\x64\x00\x7d\x0e\x7e\x0e\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x05\x73\x22\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0c\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2f\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x0b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0f\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x7c\x0f\x7c\x02\x7c\x03\x7c\x04\x7c\x05\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xe1\x23\x00\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x73\x0a\x7c\x01\x7c\x07\x7c\x08\x7c\x00\x66\x04\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[113]; + } +os_toplevel_consts_93_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 112, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x65\x78\x65\x63\x6c\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_93_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_93_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_execv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execv", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_93_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_execv._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_execl = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execl", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +os_toplevel_consts_93_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x05\x0a\x88\x24\x90\x04\xd1\x04\x15\xd4\x04\x15\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_93_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_file._ascii.ob_base, + & const_str_args._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(38) +os_toplevel_consts_93 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & os_toplevel_consts_93_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_93_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 537, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_93_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_execl._ascii.ob_base, + .co_qualname = & const_str_execl._ascii.ob_base, + .co_linetable = & os_toplevel_consts_93_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[139]; + } +os_toplevel_consts_94_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 138, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x65\x78\x65\x63\x6c\x65\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x65\x6e\x76\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_94_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & os_toplevel_consts_94_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_94_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_execve._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_execle = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execle", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[46]; + } +os_toplevel_consts_94_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 45, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x0b\x0f\x88\x72\x8c\x28\x80\x43\xdd\x04\x0a\x88\x34\x90\x14\x90\x63\x90\x72\x90\x63\x94\x19\x98\x43\xd1\x04\x20\xd4\x04\x20\xd0\x04\x20\xd0\x04\x20\xd0\x04\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_env = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "env", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_94_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_file._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_env._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(72) +os_toplevel_consts_94 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & os_toplevel_consts_94_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_94_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 544, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_94_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_execle._ascii.ob_base, + .co_qualname = & const_str_execle._ascii.ob_base, + .co_linetable = & os_toplevel_consts_94_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[150]; + } +os_toplevel_consts_95_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 149, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x65\x78\x65\x63\x6c\x70\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_95_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_95_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_execvp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execvp", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_95_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_execvp._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_execlp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execlp", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +os_toplevel_consts_95_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0a\x00\x05\x0b\x88\x34\x90\x14\xd1\x04\x16\xd4\x04\x16\xd0\x04\x16\xd0\x04\x16\xd0\x04\x16", +}; +static + struct _PyCode_DEF(38) +os_toplevel_consts_95 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & os_toplevel_consts_95_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_95_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 552, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_93_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_execlp._ascii.ob_base, + .co_qualname = & const_str_execlp._ascii.ob_base, + .co_linetable = & os_toplevel_consts_95_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[180]; + } +os_toplevel_consts_96_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 179, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x65\x78\x65\x63\x6c\x70\x65\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x20\x61\x6e\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x65\x6e\x76\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x0a\x20\x20\x20\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_96_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & os_toplevel_consts_96_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_execvpe = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execvpe", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_96_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_execvpe._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_execlpe = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execlpe", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[46]; + } +os_toplevel_consts_96_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 45, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0c\x00\x0b\x0f\x88\x72\x8c\x28\x80\x43\xdd\x04\x0b\x88\x44\x90\x24\x90\x73\x98\x02\x90\x73\x94\x29\x98\x53\xd1\x04\x21\xd4\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21", +}; +static + struct _PyCode_DEF(72) +os_toplevel_consts_96 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & os_toplevel_consts_96_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_96_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 559, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_94_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_execlpe._ascii.ob_base, + .co_qualname = & const_str_execlpe._ascii.ob_base, + .co_linetable = & os_toplevel_consts_96_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[193]; + } +os_toplevel_consts_97_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 192, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x65\x78\x65\x63\x76\x70\x28\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x20\x20\x20\x20\x61\x72\x67\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x72\x20\x74\x75\x70\x6c\x65\x20\x6f\x66\x20\x73\x74\x72\x69\x6e\x67\x73\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_97_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_97_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__execvpe = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_execvpe", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_97_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__execvpe._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +os_toplevel_consts_97_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0c\x00\x05\x0d\x88\x54\x90\x34\xd1\x04\x18\xd4\x04\x18\xd0\x04\x18\xd0\x04\x18\xd0\x04\x18", +}; +static + struct _PyCode_DEF(38) +os_toplevel_consts_97 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & os_toplevel_consts_97_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_97_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 568, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_93_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_execvp._ascii.ob_base, + .co_qualname = & const_str_execvp._ascii.ob_base, + .co_linetable = & os_toplevel_consts_97_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[223]; + } +os_toplevel_consts_98_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 222, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x65\x78\x65\x63\x76\x70\x65\x28\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x20\x61\x6e\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x65\x6e\x76\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x20\x20\x20\x20\x61\x72\x67\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x72\x20\x74\x75\x70\x6c\x65\x20\x6f\x66\x20\x73\x74\x72\x69\x6e\x67\x73\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_98_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_98_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[29]; + } +os_toplevel_consts_98_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 28, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0e\x00\x05\x0d\x88\x54\x90\x34\x98\x13\xd1\x04\x1d\xd4\x04\x1d\xd0\x04\x1d\xd0\x04\x1d\xd0\x04\x1d", +}; +static + struct _PyCode_DEF(40) +os_toplevel_consts_98 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 20, + }, + .co_consts = & os_toplevel_consts_98_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_97_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 576, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_94_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_execvpe._ascii.ob_base, + .co_qualname = & const_str_execvpe._ascii.ob_base, + .co_linetable = & os_toplevel_consts_98_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +os_toplevel_consts_99 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_execl._ascii.ob_base, + & const_str_execle._ascii.ob_base, + & const_str_execlp._ascii.ob_base, + & const_str_execlpe._ascii.ob_base, + & const_str_execvp._ascii.ob_base, + & const_str_execvpe._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_100_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & const_str_nt._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +os_toplevel_consts_100_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_execve._ascii.ob_base, + & const_str_execv._ascii.ob_base, + & const_str_environ._ascii.ob_base, + &_Py_ID(path), + & const_str_dirname._ascii.ob_base, + & const_str_get_exec_path._ascii.ob_base, + &_Py_ID(name), + & const_str_fsencode._ascii.ob_base, + & const_str_map._ascii.ob_base, + &_Py_ID(join), + & const_str_FileNotFoundError._ascii.ob_base, + & const_str_NotADirectoryError._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[318]; + } +os_toplevel_consts_100_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 317, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x07\x0a\x80\x7f\xdd\x14\x1a\x88\x09\xd8\x13\x17\x98\x13\x90\x2b\x88\x07\x88\x07\xe5\x14\x19\x88\x09\xd8\x13\x17\x90\x27\x88\x07\xdd\x0e\x15\x88\x03\xe5\x07\x0b\x84\x7c\x90\x44\xd1\x07\x19\xd4\x07\x19\xf0\x00\x02\x05\x0f\xd8\x08\x11\x88\x09\x90\x24\xd0\x08\x21\x98\x17\xd0\x08\x21\xd0\x08\x21\xd0\x08\x21\xd0\x08\x21\xd8\x08\x0e\x88\x06\xd8\x10\x14\x80\x49\xdd\x10\x1d\x98\x63\xd1\x10\x22\xd4\x10\x22\x80\x49\xdd\x07\x0b\x88\x74\x82\x7c\x80\x7c\xdd\x0f\x17\x98\x04\x89\x7e\x8c\x7e\x88\x04\xdd\x14\x17\x9d\x08\xa0\x29\xd1\x14\x2c\xd4\x14\x2c\x88\x09\xd8\x0f\x18\xf0\x00\x09\x05\x1e\xf0\x00\x09\x05\x1e\x88\x03\xdd\x13\x17\x94\x39\x98\x53\xa0\x24\xd1\x13\x27\xd4\x13\x27\x88\x08\xf0\x02\x07\x09\x1e\xd8\x0c\x15\x88\x49\x90\x68\xd0\x0c\x29\xa0\x17\xd0\x0c\x29\xd0\x0c\x29\xd0\x0c\x29\xd0\x0c\x29\xd0\x0c\x29\xf8\xdd\x10\x21\xd5\x23\x35\xd0\x0f\x36\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xd8\x17\x18\x88\x48\x88\x48\x88\x48\x88\x48\x88\x48\x88\x48\xf8\xf8\xf8\xf8\xdd\x0f\x16\xf0\x00\x03\x09\x1e\xf0\x00\x03\x09\x1e\xf0\x00\x03\x09\x1e\xd8\x17\x18\x88\x48\xd8\x0f\x18\xd0\x0f\x20\xd8\x1c\x1d\x90\x09\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf0\x07\x03\x09\x1e\xf8\xf8\xf8\xf0\x08\x00\x08\x11\xd0\x07\x1c\xd8\x0e\x17\x88\x0f\xd8\x0a\x12\x80\x4e", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[37]; + } +os_toplevel_consts_100_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 36, + }, + .ob_shash = -1, + .ob_sval = "\xc2\x19\x09\x42\x23\x02\xc2\x23\x11\x43\x18\x05\xc2\x34\x02\x42\x3b\x05\xc2\x3b\x0d\x43\x18\x05\xc3\x08\x06\x43\x13\x05\xc3\x13\x05\x43\x18\x05", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_exec_func = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exec_func", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_argrest = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "argrest", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_saved_exc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "saved_exc", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_last_exc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "last_exc", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +os_toplevel_consts_100_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_file._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_env._ascii.ob_base, + & const_str_exec_func._ascii.ob_base, + & const_str_argrest._ascii.ob_base, + & const_str_saved_exc._ascii.ob_base, + & const_str_path_list._ascii.ob_base, + & const_str_dir._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + & const_str_e._ascii.ob_base, + & const_str_last_exc._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(450) +os_toplevel_consts_100 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 225, + }, + .co_consts = & os_toplevel_consts_100_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_100_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_100_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 587, + .co_nlocalsplus = 11, + .co_nlocals = 11, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_100_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_8_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__execvpe._ascii.ob_base, + .co_qualname = & const_str__execvpe._ascii.ob_base, + .co_linetable = & os_toplevel_consts_100_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x81\x0c\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\x7c\x02\x66\x02\x7d\x04\x6e\x11\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\x66\x01\x7d\x04\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0b\x02\x00\x7c\x03\x7c\x00\x67\x01\x7c\x04\xa2\x01\x52\x00\x8e\x00\x01\x00\x64\x00\x53\x00\x64\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x03\x00\x00\x00\x00\x72\x24\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x44\x00\x5d\x59\x7d\x07\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x09\x00\x02\x00\x7c\x03\x7c\x08\x67\x01\x7c\x04\xa2\x01\x52\x00\x8e\x00\x01\x00\x8c\x22\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x0c\x7d\x09\x7c\x09\x7d\x0a\x59\x00\x64\x00\x7d\x09\x7e\x09\x8c\x3a\x64\x00\x7d\x09\x7e\x09\x77\x01\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x10\x7d\x09\x7c\x09\x7d\x0a\x7c\x05\x80\x02\x7c\x09\x7d\x05\x59\x00\x64\x00\x7d\x09\x7e\x09\x8c\x52\x64\x00\x7d\x09\x7e\x09\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x05\x81\x02\x7c\x05\x82\x01\x7c\x0a\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[244]; + } +os_toplevel_consts_101_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 243, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x20\x6f\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x6e\x61\x6d\x65\x64\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x28\x73\x69\x6d\x69\x6c\x61\x72\x20\x74\x6f\x20\x61\x20\x73\x68\x65\x6c\x6c\x29\x20\x77\x68\x65\x6e\x20\x6c\x61\x75\x6e\x63\x68\x69\x6e\x67\x20\x61\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x2a\x65\x6e\x76\x2a\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x6e\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x64\x69\x63\x74\x20\x6f\x72\x20\x4e\x6f\x6e\x65\x2e\x20\x20\x49\x66\x20\x2a\x65\x6e\x76\x2a\x20\x69\x73\x20\x4e\x6f\x6e\x65\x2c\x0a\x20\x20\x20\x20\x6f\x73\x2e\x65\x6e\x76\x69\x72\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_PATH = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "PATH", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +os_toplevel_consts_101_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = "PATH", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[43]; + } +os_toplevel_consts_101_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 42, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "env cannot contain 'PATH' and b'PATH' keys", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +os_toplevel_consts_101_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & os_toplevel_consts_101_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + &_Py_ID(ignore), + & const_str_PATH._ascii.ob_base, + & os_toplevel_consts_101_consts_5.ob_base.ob_base, + & os_toplevel_consts_101_consts_6._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_catch_warnings = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "catch_warnings", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_simplefilter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "simplefilter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str_supports_bytes_environ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "supports_bytes_environ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +os_toplevel_consts_101_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + &_Py_ID(warnings), + & const_str_environ._ascii.ob_base, + & const_str_catch_warnings._ascii.ob_base, + & const_str_simplefilter._ascii.ob_base, + & const_str_BytesWarning._ascii.ob_base, + &_Py_ID(get), + & const_str_TypeError._ascii.ob_base, + & const_str_supports_bytes_environ._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + & const_str_split._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[378]; + } +os_toplevel_consts_101_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 377, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x14\x00\x05\x14\x80\x4f\x80\x4f\x80\x4f\xe0\x07\x0a\x80\x7b\xdd\x0e\x15\x88\x03\xf0\x08\x00\x0a\x12\xd7\x09\x20\xd2\x09\x20\xd1\x09\x22\xd4\x09\x22\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xd8\x08\x10\xd7\x08\x1d\xd2\x08\x1d\x98\x68\xad\x0c\xd1\x08\x35\xd4\x08\x35\xd0\x08\x35\xf0\x04\x03\x09\x1d\xd8\x18\x1b\x9f\x07\x9a\x07\xa0\x06\x99\x0f\x9c\x0f\x88\x49\x88\x49\xf8\xdd\x0f\x18\xf0\x00\x01\x09\x1d\xf0\x00\x01\x09\x1d\xf0\x00\x01\x09\x1d\xd8\x18\x1c\x88\x49\x88\x49\x88\x49\xf0\x03\x01\x09\x1d\xf8\xf8\xf8\xf5\x06\x00\x0c\x22\xf0\x00\x0c\x09\x30\xf0\x02\x08\x0d\x27\xd8\x1d\x20\xa0\x17\x9c\x5c\x90\x0a\xf0\x08\x00\x14\x1d\xd0\x13\x28\xdd\x1a\x24\xd8\x18\x44\xf1\x03\x01\x1b\x46\x01\xf4\x00\x01\x1b\x46\x01\xf0\x00\x01\x15\x46\x01\xe0\x1c\x26\x90\x09\x90\x09\xf8\xf5\x0d\x00\x15\x1d\x9d\x69\xd0\x13\x28\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x10\x00\x10\x19\xd0\x0f\x24\xad\x1a\xb0\x49\xbd\x75\xd1\x29\x45\xd4\x29\x45\xd0\x0f\x24\xdd\x1c\x24\xa0\x59\xd1\x1c\x2f\xd4\x1c\x2f\x90\x09\xf0\x29\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf1\x00\x14\x05\x30\xf4\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf8\xf8\xf8\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x2c\x00\x08\x11\xd0\x07\x18\xdd\x14\x1b\x88\x09\xd8\x0b\x14\x8f\x3f\x8a\x3f\x9d\x37\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[89]; + } +os_toplevel_consts_101_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 88, + }, + .ob_shash = -1, + .ob_sval = "\xa2\x1c\x43\x14\x03\xbf\x15\x41\x15\x02\xc1\x14\x01\x43\x14\x03\xc1\x15\x0c\x41\x24\x05\xc1\x21\x02\x43\x14\x03\xc1\x23\x01\x41\x24\x05\xc1\x24\x0a\x43\x14\x03\xc1\x2f\x08\x42\x0b\x02\xc1\x37\x14\x43\x14\x03\xc2\x0b\x11\x42\x1f\x05\xc2\x1c\x02\x43\x14\x03\xc2\x1e\x01\x42\x1f\x05\xc2\x1f\x29\x43\x14\x03\xc3\x14\x04\x43\x18\x07\xc3\x1b\x01\x43\x18\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_path_listb = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_listb", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_101_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_env._ascii.ob_base, + &_Py_ID(warnings), + & const_str_path_list._ascii.ob_base, + & const_str_path_listb._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(516) +os_toplevel_consts_101 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 258, + }, + .co_consts = & os_toplevel_consts_101_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_101_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_101_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 619, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_101_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_get_exec_path._ascii.ob_base, + .co_qualname = & const_str_get_exec_path._ascii.ob_base, + .co_linetable = & os_toplevel_consts_101_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x64\x02\x6c\x00\x7d\x01\x7c\x00\x80\x07\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x01\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x12\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x02\x7d\x02\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x5a\x09\x00\x7c\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x02\x81\x0f\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x7d\x02\x6e\x17\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x81\x24\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0f\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x02\x64\x02\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x02\x80\x07\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_102 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_MutableMapping._ascii.ob_base, + & const_str_Mapping._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__Environ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_encodekey = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "encodekey", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_decodekey = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "decodekey", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_encodevalue = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "encodevalue", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_decodevalue = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "decodevalue", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__data = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_data", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_103_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_encodekey._ascii.ob_base, + & const_str_decodekey._ascii.ob_base, + & const_str_encodevalue._ascii.ob_base, + & const_str_decodevalue._ascii.ob_base, + & const_str__data._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +os_toplevel_consts_103_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[44]; + } +os_toplevel_consts_103_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 43, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x19\x22\x88\x04\x8c\x0e\xd8\x19\x22\x88\x04\x8c\x0e\xd8\x1b\x26\x88\x04\xd4\x08\x18\xd8\x1b\x26\x88\x04\xd4\x08\x18\xd8\x15\x19\x88\x04\x8c\x0a\x88\x0a\x88\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +os_toplevel_consts_103_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_encodekey._ascii.ob_base, + & const_str_decodekey._ascii.ob_base, + & const_str_encodevalue._ascii.ob_base, + & const_str_decodevalue._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(76) +os_toplevel_consts_103_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 38, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 6, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 667, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_103_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & os_toplevel_consts_103_consts_1_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_103_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__data._ascii.ob_base, + & const_str_encodekey._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + & const_str_decodevalue._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +os_toplevel_consts_103_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__getitem__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[97]; + } +os_toplevel_consts_103_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 96, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x04\x09\x2a\xd8\x14\x18\x94\x4a\x98\x74\x9f\x7e\x9a\x7e\xa8\x63\xd1\x1f\x32\xd4\x1f\x32\xd4\x14\x33\x88\x45\x88\x45\xf8\xdd\x0f\x17\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xe5\x12\x1a\x98\x33\x91\x2d\x94\x2d\xa0\x54\xd0\x0c\x29\xf0\x05\x02\x09\x2a\xf8\xf8\xf8\xf0\x06\x00\x10\x14\xd7\x0f\x1f\xd2\x0f\x1f\xa0\x05\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +os_toplevel_consts_103_consts_2_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = "\x82\x20\x23\x00\xa3\x1b\x3e\x03", +}; +static + struct _PyCode_DEF(172) +os_toplevel_consts_103_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 86, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_103_consts_2_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 674, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getitem__), + .co_qualname = & os_toplevel_consts_103_consts_2_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x1e\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_putenv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "putenv", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_103_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_encodekey._ascii.ob_base, + & const_str_encodevalue._ascii.ob_base, + & const_str_putenv._ascii.ob_base, + & const_str__data._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +os_toplevel_consts_103_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__setitem__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[70]; + } +os_toplevel_consts_103_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 69, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0e\x12\x8f\x6e\x8a\x6e\x98\x53\xd1\x0e\x21\xd4\x0e\x21\x88\x03\xd8\x10\x14\xd7\x10\x20\xd2\x10\x20\xa0\x15\xd1\x10\x27\xd4\x10\x27\x88\x05\xdd\x08\x0e\x88\x73\x90\x45\xd1\x08\x1a\xd4\x08\x1a\xd0\x08\x1a\xd8\x1a\x1f\x88\x04\x8c\x0a\x90\x33\x89\x0f\x88\x0f\x88\x0f", +}; +static + struct _PyCode_DEF(142) +os_toplevel_consts_103_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 71, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 682, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__setitem__), + .co_qualname = & os_toplevel_consts_103_consts_3_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_unsetenv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "unsetenv", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_103_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_encodekey._ascii.ob_base, + & const_str_unsetenv._ascii.ob_base, + & const_str__data._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +os_toplevel_consts_103_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__delitem__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[96]; + } +os_toplevel_consts_103_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 95, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x15\x19\x97\x5e\x92\x5e\xa0\x43\xd1\x15\x28\xd4\x15\x28\x88\x0a\xdd\x08\x10\x90\x1a\xd1\x08\x1c\xd4\x08\x1c\xd0\x08\x1c\xf0\x02\x04\x09\x2a\xd8\x10\x14\x94\x0a\x98\x3a\xd0\x10\x26\xd0\x10\x26\xd0\x10\x26\xf8\xdd\x0f\x17\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xe5\x12\x1a\x98\x33\x91\x2d\x94\x2d\xa0\x54\xd0\x0c\x29\xf0\x05\x02\x09\x2a\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[10]; + } +os_toplevel_consts_103_consts_4_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 9, + }, + .ob_shash = -1, + .ob_sval = "\xa6\x08\x30\x00\xb0\x1b\x41\x0b\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_encodedkey = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "encodedkey", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_103_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_encodedkey._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(156) +os_toplevel_consts_103_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 78, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_103_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 688, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_103_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__delitem__), + .co_qualname = & os_toplevel_consts_103_consts_4_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x3d\x00\x64\x00\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_103_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_list._ascii.ob_base, + & const_str__data._ascii.ob_base, + & const_str_decodekey._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +os_toplevel_consts_103_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__iter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[74]; + } +os_toplevel_consts_103_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 73, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xe5\x0f\x13\x90\x44\x94\x4a\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xd8\x13\x17\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\x88\x43\xd8\x12\x16\x97\x2e\x92\x2e\xa0\x13\xd1\x12\x25\xd4\x12\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xf0\x03\x01\x09\x26\xf0\x00\x01\x09\x26", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_103_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(keys), + & const_str_key._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(106) +os_toplevel_consts_103_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 53, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 697, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_103_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & os_toplevel_consts_103_consts_5_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x44\x00\x5d\x19\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x1a\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_103_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(len), + & const_str__data._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +os_toplevel_consts_103_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__len__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[17]; + } +os_toplevel_consts_103_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 16, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x12\x90\x34\x94\x3a\x89\x7f\x8c\x7f\xd0\x08\x1e", +}; +static + struct _PyCode_DEF(42) +os_toplevel_consts_103_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 703, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__len__), + .co_qualname = & os_toplevel_consts_103_consts_6_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_103_consts_7_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_103_consts_7_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_decodekey._ascii.ob_base, + & const_str_decodevalue._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[37]; + } +os_toplevel_consts_103_consts_7_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 36, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__repr__..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[100]; + } +os_toplevel_consts_103_consts_7_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 99, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xe1\x10\x1a\x90\x03\x90\x55\xf0\x03\x00\x10\x14\x8f\x7e\x8a\x7e\x98\x63\xd1\x0f\x22\xd4\x0f\x22\xd0\x0c\x43\xd0\x0c\x43\xa8\x04\xd7\x28\x38\xd2\x28\x38\xb8\x15\xd1\x28\x3f\xd4\x28\x3f\xd0\x0c\x43\xd0\x0c\x43\xf0\x03\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_103_consts_7_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str_self._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(120) +os_toplevel_consts_103_consts_7_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 60, + }, + .co_consts = & os_toplevel_consts_103_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_7_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 51, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 707, + .co_nlocalsplus = 4, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & os_toplevel_consts_103_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_genexpr), + .co_qualname = & os_toplevel_consts_103_consts_7_consts_2_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_7_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x34\x5c\x02\x00\x00\x7d\x01\x7d\x02\x89\x03\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x64\x00\x89\x03\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x03\x56\x00\x97\x01\x01\x00\x8c\x35\x64\x01\x53\x00", + ._co_firsttraceable = 3, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +os_toplevel_consts_103_consts_7_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "environ({", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +os_toplevel_consts_103_consts_7_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "})", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_103_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + &_Py_STR(comma_sep), + & os_toplevel_consts_103_consts_7_consts_2.ob_base.ob_base, + & os_toplevel_consts_103_consts_7_consts_3._ascii.ob_base, + & os_toplevel_consts_103_consts_7_consts_4._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_103_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(join), + & const_str__data._ascii.ob_base, + &_Py_ID(items), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +os_toplevel_consts_103_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[94]; + } +os_toplevel_consts_103_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 93, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd8\x1a\x1e\x9f\x29\x9a\x29\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xe0\x1e\x22\x9c\x6a\xd7\x1e\x2e\xd2\x1e\x2e\xd1\x1e\x30\xd4\x1e\x30\xf0\x05\x03\x24\x0a\xf1\x00\x03\x24\x0a\xf4\x00\x03\x24\x0a\xf1\x00\x03\x1b\x0a\xf4\x00\x03\x1b\x0a\x88\x0f\xf0\x08\x00\x10\x31\x98\x4f\xd0\x0f\x30\xd0\x0f\x30\xd0\x0f\x30\xd0\x08\x30", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_formatted_items = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "formatted_items", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_103_consts_7_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_formatted_items._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(128) +os_toplevel_consts_103_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 64, + }, + .co_consts = & os_toplevel_consts_103_consts_7_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 706, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_103_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & os_toplevel_consts_103_consts_7_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x02\x84\x08\x89\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x03\x7c\x01\x9b\x00\x64\x04\x9d\x03\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_103_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_dict._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +os_toplevel_consts_103_consts_8_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.copy", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +os_toplevel_consts_103_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x13\x90\x44\x89\x7a\x8c\x7a\xd0\x08\x19", +}; +static + struct _PyCode_DEF(32) +os_toplevel_consts_103_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 713, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(copy), + .co_qualname = & os_toplevel_consts_103_consts_8_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +os_toplevel_consts_103_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.setdefault", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[31]; + } +os_toplevel_consts_103_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 30, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0e\x90\x64\x88\x3f\x88\x3f\xd8\x18\x1d\x88\x44\x90\x13\x89\x49\xd8\x0f\x13\x90\x43\x8c\x79\xd0\x08\x18", +}; +static + struct _PyCode_DEF(36) +os_toplevel_consts_103_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 716, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_setdefault._ascii.ob_base, + .co_qualname = & os_toplevel_consts_103_consts_9_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x76\x01\x72\x05\x7c\x02\x7c\x00\x7c\x01\x3c\x00\x00\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_103_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_update._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +os_toplevel_consts_103_consts_10_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__ior__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +os_toplevel_consts_103_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0b\x8a\x0b\x90\x45\xd1\x08\x1a\xd4\x08\x1a\xd0\x08\x1a\xd8\x0f\x13\x88\x0b", +}; +static + struct _PyCode_DEF(48) +os_toplevel_consts_103_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 721, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__ior__), + .co_qualname = & os_toplevel_consts_103_consts_10_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_103_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_Mapping._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + & const_str_dict._ascii.ob_base, + & const_str_update._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +os_toplevel_consts_103_consts_11_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__or__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[61]; + } +os_toplevel_consts_103_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 60, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x17\xd1\x0f\x29\xd4\x0f\x29\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0e\x12\x90\x34\x89\x6a\x8c\x6a\x88\x03\xd8\x08\x0b\x8f\x0a\x8a\x0a\x90\x35\xd1\x08\x19\xd4\x08\x19\xd0\x08\x19\xd8\x0f\x12\x88\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_103_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_other._ascii.ob_base, + & const_str_new._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(134) +os_toplevel_consts_103_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 67, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 725, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_103_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__or__), + .co_qualname = & os_toplevel_consts_103_consts_11_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +os_toplevel_consts_103_consts_12_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Environ.__ror__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[61]; + } +os_toplevel_consts_103_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 60, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x17\xd1\x0f\x29\xd4\x0f\x29\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0e\x12\x90\x35\x89\x6b\x8c\x6b\x88\x03\xd8\x08\x0b\x8f\x0a\x8a\x0a\x90\x34\xd1\x08\x18\xd4\x08\x18\xd0\x08\x18\xd8\x0f\x12\x88\x0a", +}; +static + struct _PyCode_DEF(134) +os_toplevel_consts_103_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 67, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 732, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_103_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__ror__), + .co_qualname = & os_toplevel_consts_103_consts_12_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +os_toplevel_consts_103_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + & const_str__Environ._ascii.ob_base, + & os_toplevel_consts_103_consts_1.ob_base.ob_base, + & os_toplevel_consts_103_consts_2.ob_base.ob_base, + & os_toplevel_consts_103_consts_3.ob_base.ob_base, + & os_toplevel_consts_103_consts_4.ob_base.ob_base, + & os_toplevel_consts_103_consts_5.ob_base.ob_base, + & os_toplevel_consts_103_consts_6.ob_base.ob_base, + & os_toplevel_consts_103_consts_7.ob_base.ob_base, + & os_toplevel_consts_103_consts_8.ob_base.ob_base, + & os_toplevel_consts_103_consts_9.ob_base.ob_base, + & os_toplevel_consts_103_consts_10.ob_base.ob_base, + & os_toplevel_consts_103_consts_11.ob_base.ob_base, + & os_toplevel_consts_103_consts_12.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +os_toplevel_consts_103_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__init__), + &_Py_ID(__getitem__), + &_Py_ID(__setitem__), + &_Py_ID(__delitem__), + &_Py_ID(__iter__), + &_Py_ID(__len__), + &_Py_ID(__repr__), + &_Py_ID(copy), + & const_str_setdefault._ascii.ob_base, + &_Py_ID(__ior__), + &_Py_ID(__or__), + &_Py_ID(__ror__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[201]; + } +os_toplevel_consts_103_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 200, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x05\x05\x1a\xf0\x00\x05\x05\x1a\xf0\x00\x05\x05\x1a\xf0\x0e\x06\x05\x27\xf0\x00\x06\x05\x27\xf0\x00\x06\x05\x27\xf0\x10\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x0c\x07\x05\x2a\xf0\x00\x07\x05\x2a\xf0\x00\x07\x05\x2a\xf0\x12\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x0c\x01\x05\x1f\xf0\x00\x01\x05\x1f\xf0\x00\x01\x05\x1f\xf0\x06\x05\x05\x31\xf0\x00\x05\x05\x31\xf0\x00\x05\x05\x31\xf0\x0e\x01\x05\x1a\xf0\x00\x01\x05\x1a\xf0\x00\x01\x05\x1a\xf0\x06\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x0a\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x08\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x0e\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13", +}; +static + struct _PyCode_DEF(86) +os_toplevel_consts_103 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 43, + }, + .co_consts = & os_toplevel_consts_103_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_103_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 666, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__Environ._ascii.ob_base, + .co_qualname = & const_str__Environ._ascii.ob_base, + .co_linetable = & os_toplevel_consts_103_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x84\x00\x5a\x09\x64\x08\x84\x00\x5a\x0a\x64\x09\x84\x00\x5a\x0b\x64\x0a\x84\x00\x5a\x0c\x64\x0b\x84\x00\x5a\x0d\x64\x0c\x84\x00\x5a\x0e\x64\x0d\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +os_toplevel_consts_105_consts_2_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "str expected, not %s", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_105_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_105_consts_2_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_105_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_str._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_check_str = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "check_str", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +os_toplevel_consts_105_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_createenviron..check_str", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[56]; + } +os_toplevel_consts_105_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 55, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x13\x1d\x98\x65\xa5\x53\xd1\x13\x29\xd4\x13\x29\xf0\x00\x01\x0d\x4f\x01\xdd\x16\x1f\xd0\x20\x36\xbd\x14\xb8\x65\xb9\x1b\xbc\x1b\xd4\x39\x4d\xd1\x20\x4d\xd1\x16\x4e\xd4\x16\x4e\xd0\x10\x4e\xd8\x13\x18\x88\x4c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_105_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(120) +os_toplevel_consts_105_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 60, + }, + .co_consts = & os_toplevel_consts_105_consts_2_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_105_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 742, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_105_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_check_str._ascii.ob_base, + .co_qualname = & os_toplevel_consts_105_consts_2_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_105_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_105_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_upper._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +os_toplevel_consts_105_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_createenviron..encodekey", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[30]; + } +os_toplevel_consts_105_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 29, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd8\x13\x19\x90\x36\x98\x23\x91\x3b\x94\x3b\xd7\x13\x24\xd2\x13\x24\xd1\x13\x26\xd4\x13\x26\xd0\x0c\x26", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_105_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_key._ascii.ob_base, + &_Py_ID(encode), + }, + }, +}; +static + struct _PyCode_DEF(62) +os_toplevel_consts_105_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 31, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_105_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 748, + .co_nlocalsplus = 2, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & os_toplevel_consts_105_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_encodekey._ascii.ob_base, + .co_qualname = & os_toplevel_consts_105_consts_3_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_105_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x02\x00\x89\x01\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_105_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_105_consts_2_consts_1._ascii.ob_base, + & const_str_surrogateescape._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +os_toplevel_consts_105_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_str._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__name__), + &_Py_ID(encode), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +os_toplevel_consts_105_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_createenviron..encode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[73]; + } +os_toplevel_consts_105_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 72, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xdd\x13\x1d\x98\x65\xa5\x53\xd1\x13\x29\xd4\x13\x29\xf0\x00\x01\x0d\x4f\x01\xdd\x16\x1f\xd0\x20\x36\xbd\x14\xb8\x65\xb9\x1b\xbc\x1b\xd4\x39\x4d\xd1\x20\x4d\xd1\x16\x4e\xd4\x16\x4e\xd0\x10\x4e\xd8\x13\x18\x97\x3c\x92\x3c\xa0\x08\xd0\x2a\x3b\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_105_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_value._ascii.ob_base, + &_Py_ID(encoding), + }, + }, +}; +static + struct _PyCode_DEF(162) +os_toplevel_consts_105_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 81, + }, + .co_consts = & os_toplevel_consts_105_consts_4_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_105_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 756, + .co_nlocalsplus = 2, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & os_toplevel_consts_105_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(encode), + .co_qualname = & os_toplevel_consts_105_consts_4_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_105_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_105_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & const_str_surrogateescape._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_105_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(decode), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +os_toplevel_consts_105_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_createenviron..decode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +os_toplevel_consts_105_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xd8\x13\x18\x97\x3c\x92\x3c\xa0\x08\xd0\x2a\x3b\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c", +}; +static + struct _PyCode_DEF(48) +os_toplevel_consts_105_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & os_toplevel_consts_105_consts_5_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_105_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 760, + .co_nlocalsplus = 2, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & os_toplevel_consts_105_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(decode), + .co_qualname = & os_toplevel_consts_105_consts_5_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_105_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +os_toplevel_consts_105_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + Py_None, + & const_str_nt._ascii.ob_base, + & os_toplevel_consts_105_consts_2.ob_base.ob_base, + & os_toplevel_consts_105_consts_3.ob_base.ob_base, + & os_toplevel_consts_105_consts_4.ob_base.ob_base, + & os_toplevel_consts_105_consts_5.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +os_toplevel_consts_105_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(name), + & const_str_str._ascii.ob_base, + & const_str_environ._ascii.ob_base, + &_Py_ID(items), + & const_str_sys._ascii.ob_base, + & const_str_getfilesystemencoding._ascii.ob_base, + & const_str__Environ._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__createenviron = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_createenviron", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[230]; + } +os_toplevel_consts_105_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 229, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xf8\x80\x00\xdd\x07\x0b\x88\x74\x82\x7c\x80\x7c\xf0\x04\x03\x09\x19\xf0\x00\x03\x09\x19\xf0\x00\x03\x09\x19\xf0\x08\x00\x12\x1b\x88\x06\xdd\x11\x14\x88\x06\xf0\x02\x01\x09\x27\xf0\x00\x01\x09\x27\xf0\x00\x01\x09\x27\xf0\x00\x01\x09\x27\xf0\x00\x01\x09\x27\xe0\x0f\x11\x88\x04\xdd\x1a\x21\x9f\x2d\x9a\x2d\x99\x2f\x9c\x2f\xf0\x00\x01\x09\x29\xf0\x00\x01\x09\x29\x89\x4a\x88\x43\x90\x15\xd8\x23\x28\x88\x44\x90\x19\x90\x19\x98\x33\x91\x1e\x94\x1e\xd1\x0c\x20\xd0\x0c\x20\xf0\x03\x01\x09\x29\xf5\x08\x00\x14\x17\xd4\x13\x2c\xd1\x13\x2e\xd4\x13\x2e\x88\x08\xf0\x02\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x08\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xe0\x14\x1a\x88\x09\xdd\x0f\x16\x88\x04\xdd\x0b\x13\x90\x44\xd8\x08\x11\x90\x36\xd8\x08\x0e\x90\x06\xf1\x05\x02\x0c\x18\xf4\x00\x02\x0c\x18\xf0\x00\x02\x05\x18", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +os_toplevel_consts_105_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_check_str._ascii.ob_base, + &_Py_ID(decode), + & const_str_encodekey._ascii.ob_base, + & const_str_data._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_value._ascii.ob_base, + &_Py_ID(encode), + &_Py_ID(encoding), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[9]; + } +os_toplevel_consts_105_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 8, + }, + .ob_shash = -1, + .ob_sval = " @@", +}; +static + struct _PyCode_DEF(272) +os_toplevel_consts_105 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 136, + }, + .co_consts = & os_toplevel_consts_105_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_105_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 739, + .co_nlocalsplus = 8, + .co_nlocals = 6, + .co_nplaincellvars = 2, + .co_ncellvars = 2, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_105_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & os_toplevel_consts_105_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__createenviron._ascii.ob_base, + .co_qualname = & const_str__createenviron._ascii.ob_base, + .co_linetable = & os_toplevel_consts_105_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x06\x87\x07\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x41\x64\x02\x84\x00\x7d\x00\x7c\x00\x8a\x06\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x88\x06\x66\x01\x64\x03\x84\x08\x7d\x02\x69\x00\x7d\x03\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x13\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x05\x7c\x03\x02\x00\x7c\x02\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x8c\x14\x6e\x26\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x07\x88\x07\x66\x01\x64\x04\x84\x08\x8a\x06\x88\x07\x66\x01\x64\x05\x84\x08\x7d\x01\x89\x06\x7d\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x02\x7c\x01\x89\x06\x7c\x01\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[170]; + } +os_toplevel_consts_106_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 169, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x47\x65\x74\x20\x61\x6e\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x4e\x6f\x6e\x65\x20\x69\x66\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x65\x78\x69\x73\x74\x2e\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x73\x65\x63\x6f\x6e\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x6e\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x0a\x20\x20\x20\x20\x6b\x65\x79\x2c\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x20\x61\x72\x65\x20\x73\x74\x72\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_106_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_106_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_106_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_environ._ascii.ob_base, + &_Py_ID(get), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_getenv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getenv", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +os_toplevel_consts_106_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x08\x00\x0c\x13\x8f\x3b\x8a\x3b\x90\x73\x98\x47\xd1\x0b\x24\xd4\x0b\x24\xd0\x04\x24", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_106_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_key._ascii.ob_base, + &_Py_ID(default), + }, + }, +}; +static + struct _PyCode_DEF(56) +os_toplevel_consts_106 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & os_toplevel_consts_106_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_106_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 773, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_106_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getenv._ascii.ob_base, + .co_qualname = & const_str_getenv._ascii.ob_base, + .co_linetable = & os_toplevel_consts_106_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_107 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_getenv._ascii.ob_base, + & const_str_supports_bytes_environ._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +os_toplevel_consts_108_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bytes expected, not %s", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_108_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_108_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_108_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str__check_bytes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_check_bytes", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[56]; + } +os_toplevel_consts_108_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 55, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x15\xd1\x0f\x27\xd4\x0f\x27\xf0\x00\x01\x09\x4d\x01\xdd\x12\x1b\xd0\x1c\x34\xb5\x74\xb8\x45\xb1\x7b\xb4\x7b\xd4\x37\x4b\xd1\x1c\x4b\xd1\x12\x4c\xd4\x12\x4c\xd0\x0c\x4c\xd8\x0f\x14\x88\x0c", +}; +static + struct _PyCode_DEF(120) +os_toplevel_consts_108 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 60, + }, + .co_consts = & os_toplevel_consts_108_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_108_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 783, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_105_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__check_bytes._ascii.ob_base, + .co_qualname = & const_str__check_bytes._ascii.ob_base, + .co_linetable = & os_toplevel_consts_108_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[180]; + } +os_toplevel_consts_109_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 179, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x47\x65\x74\x20\x61\x6e\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x4e\x6f\x6e\x65\x20\x69\x66\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x65\x78\x69\x73\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x73\x65\x63\x6f\x6e\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x6e\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6b\x65\x79\x2c\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x20\x61\x72\x65\x20\x62\x79\x74\x65\x73\x2e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_109_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_109_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_109_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_environb._ascii.ob_base, + &_Py_ID(get), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_getenvb = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getenvb", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +os_toplevel_consts_109_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x08\x00\x10\x18\x8f\x7c\x8a\x7c\x98\x43\xa0\x17\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", +}; +static + struct _PyCode_DEF(56) +os_toplevel_consts_109 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 28, + }, + .co_consts = & os_toplevel_consts_109_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_109_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 794, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_106_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_getenvb._ascii.ob_base, + .co_qualname = & const_str_getenvb._ascii.ob_base, + .co_linetable = & os_toplevel_consts_109_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_110 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_environb._ascii.ob_base, + & const_str_getenvb._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[280]; + } +os_toplevel_consts_111_consts_1_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 279, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x6e\x63\x6f\x64\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x28\x61\x6e\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x2c\x20\x62\x79\x74\x65\x73\x2c\x20\x6f\x72\x20\x73\x74\x72\x29\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x27\x73\x75\x72\x72\x6f\x67\x61\x74\x65\x65\x73\x63\x61\x70\x65\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x62\x79\x74\x65\x73\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4f\x6e\x20\x57\x69\x6e\x64\x6f\x77\x73\x2c\x20\x75\x73\x65\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x73\x79\x73\x74\x65\x6d\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6d\x62\x63\x73\x27\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_111_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_111_consts_1_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_111_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_str._ascii.ob_base, + &_Py_ID(encode), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +os_toplevel_consts_111_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_fscodec..fsencode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[62]; + } +os_toplevel_consts_111_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 61, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x14\x1a\x98\x28\xd1\x13\x23\xd4\x13\x23\x88\x08\xdd\x0b\x15\x90\x68\xa5\x03\xd1\x0b\x24\xd4\x0b\x24\xf0\x00\x03\x09\x1c\xd8\x13\x1b\x97\x3f\x92\x3f\xa0\x38\xa8\x56\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34\xe0\x13\x1b\x88\x4f", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_111_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(filename), + &_Py_ID(encoding), + &_Py_ID(errors), + }, + }, +}; +static + struct _PyCode_DEF(124) +os_toplevel_consts_111_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 62, + }, + .co_consts = & os_toplevel_consts_111_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_111_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 806, + .co_nlocalsplus = 3, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 2, + .co_localsplusnames = & os_toplevel_consts_111_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_fsencode._ascii.ob_base, + .co_qualname = & os_toplevel_consts_111_consts_1_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_111_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x02\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x16\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x89\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[280]; + } +os_toplevel_consts_111_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 279, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x65\x63\x6f\x64\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x28\x61\x6e\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x2c\x20\x62\x79\x74\x65\x73\x2c\x20\x6f\x72\x20\x73\x74\x72\x29\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x27\x73\x75\x72\x72\x6f\x67\x61\x74\x65\x65\x73\x63\x61\x70\x65\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x73\x74\x72\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e\x20\x4f\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x69\x6e\x64\x6f\x77\x73\x2c\x20\x75\x73\x65\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x73\x79\x73\x74\x65\x6d\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6d\x62\x63\x73\x27\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_111_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_111_consts_2_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_111_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_fspath._ascii.ob_base, + &_Py_ID(isinstance), + & const_str_bytes._ascii.ob_base, + &_Py_ID(decode), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +os_toplevel_consts_111_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_fscodec..fsdecode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[62]; + } +os_toplevel_consts_111_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 61, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x14\x1a\x98\x28\xd1\x13\x23\xd4\x13\x23\x88\x08\xdd\x0b\x15\x90\x68\xa5\x05\xd1\x0b\x26\xd4\x0b\x26\xf0\x00\x03\x09\x1c\xd8\x13\x1b\x97\x3f\x92\x3f\xa0\x38\xa8\x56\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34\xe0\x13\x1b\x88\x4f", +}; +static + struct _PyCode_DEF(124) +os_toplevel_consts_111_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 62, + }, + .co_consts = & os_toplevel_consts_111_consts_2_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_111_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 818, + .co_nlocalsplus = 3, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 2, + .co_localsplusnames = & os_toplevel_consts_111_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_fsdecode._ascii.ob_base, + .co_qualname = & os_toplevel_consts_111_consts_2_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_111_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x02\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x16\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x89\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_111_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_111_consts_1.ob_base.ob_base, + & os_toplevel_consts_111_consts_2.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +const_str_getfilesystemencodeerrors = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getfilesystemencodeerrors", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_111_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_getfilesystemencoding._ascii.ob_base, + & const_str_getfilesystemencodeerrors._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str__fscodec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_fscodec", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[106]; + } +os_toplevel_consts_111_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 105, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xf8\x80\x00\xdd\x0f\x12\xd4\x0f\x28\xd1\x0f\x2a\xd4\x0f\x2a\x80\x48\xdd\x0d\x10\xd4\x0d\x2a\xd1\x0d\x2c\xd4\x0d\x2c\x80\x46\xf0\x04\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x18\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x18\x00\x0c\x14\x90\x58\xd0\x0b\x1d\xd0\x04\x1d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_111_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_fsencode._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + &_Py_ID(encoding), + &_Py_ID(errors), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[5]; + } +os_toplevel_consts_111_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 4, + }, + .ob_shash = -1, + .ob_sval = " @@", +}; +static + struct _PyCode_DEF(114) +os_toplevel_consts_111 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 57, + }, + .co_consts = & os_toplevel_consts_111_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_111_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 802, + .co_nlocalsplus = 4, + .co_nlocals = 2, + .co_nplaincellvars = 2, + .co_ncellvars = 2, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_111_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & os_toplevel_consts_111_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__fscodec._ascii.ob_base, + .co_qualname = & const_str__fscodec._ascii.ob_base, + .co_linetable = & os_toplevel_consts_111_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x02\x87\x03\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x03\x88\x02\x88\x03\x66\x02\x64\x01\x84\x08\x7d\x00\x88\x02\x88\x03\x66\x02\x64\x02\x84\x08\x7d\x01\x7c\x00\x7c\x01\x66\x02\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_fork = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fork", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_spawnv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnv", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_P_WAIT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "P_WAIT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_P_NOWAIT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "P_NOWAIT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_P_NOWAITO = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "P_NOWAITO", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_115 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_P_WAIT._ascii.ob_base, + & const_str_P_NOWAIT._ascii.ob_base, + & const_str_P_NOWAITO._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +os_toplevel_consts_116_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "argv must be a tuple or a list", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[35]; + } +os_toplevel_consts_116_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 34, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "argv first element cannot be empty", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_116_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_116_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & os_toplevel_consts_116_consts_3._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 127], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_waitpid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "waitpid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_WIFSTOPPED = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "WIFSTOPPED", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str_waitstatus_to_exitcode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "waitstatus_to_exitcode", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +os_toplevel_consts_116_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_tuple._ascii.ob_base, + & const_str_list._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_fork._ascii.ob_base, + & const_str__exit._ascii.ob_base, + & const_str_P_NOWAIT._ascii.ob_base, + & const_str_waitpid._ascii.ob_base, + & const_str_WIFSTOPPED._ascii.ob_base, + & const_str_waitstatus_to_exitcode._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__spawnvef = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_spawnvef", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[255]; + } +os_toplevel_consts_116_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 254, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x19\x98\x24\xa5\x15\xad\x04\xa0\x0d\xd1\x0f\x2e\xd4\x0f\x2e\xf0\x00\x01\x09\x3e\xdd\x12\x1b\xd0\x1c\x3c\xd1\x12\x3d\xd4\x12\x3d\xd0\x0c\x3d\xd8\x0f\x13\xf0\x00\x01\x09\x43\x01\x98\x34\xa0\x01\x9c\x37\xf0\x00\x01\x09\x43\x01\xdd\x12\x1c\xd0\x1d\x41\xd1\x12\x42\xd4\x12\x42\xd0\x0c\x42\xdd\x0e\x12\x89\x66\x8c\x66\x88\x03\xd8\x0f\x12\xf0\x00\x12\x09\x33\xf0\x04\x06\x0d\x1b\xd8\x13\x16\x90\x3b\xd8\x14\x18\x90\x44\x98\x14\x98\x74\xd1\x14\x24\xd4\x14\x24\xd0\x14\x24\xd0\x14\x24\xe0\x14\x18\x90\x44\x98\x14\x98\x74\xa0\x53\xd1\x14\x29\xd4\x14\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xf0\x05\x00\x15\x25\xd0\x14\x24\xf8\xf0\x06\x01\x0d\x1b\xdd\x10\x15\x90\x63\x91\x0a\x94\x0a\x90\x0a\x90\x0a\x90\x0a\x90\x0a\xf8\xf8\xf8\xf0\x06\x00\x10\x14\x95\x78\xd2\x0f\x1f\xd0\x0f\x1f\xd8\x17\x1a\x90\x0a\xf0\x02\x05\x0d\x33\xdd\x1c\x23\xa0\x43\xa8\x11\x99\x4f\x9c\x4f\x91\x09\x90\x04\x90\x63\xdd\x13\x1d\x98\x63\x91\x3f\x94\x3f\xf0\x00\x01\x11\x1d\xd8\x14\x1c\xe5\x17\x2d\xa8\x63\xd1\x17\x32\xd4\x17\x32\xd0\x10\x32", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +os_toplevel_consts_116_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x16\x1c\x41\x36\x00\xc1\x36\x11\x42\x0a\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_func = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "func", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_pid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_wpid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "wpid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_sts = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sts", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +os_toplevel_consts_116_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(mode), + & const_str_file._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_env._ascii.ob_base, + & const_str_func._ascii.ob_base, + & const_str_pid._ascii.ob_base, + & const_str_wpid._ascii.ob_base, + & const_str_sts._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(410) +os_toplevel_consts_116 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 205, + }, + .co_consts = & os_toplevel_consts_116_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_116_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_116_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 5, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 847, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_116_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__spawnvef._ascii.ob_base, + .co_qualname = & const_str__spawnvef._ascii.ob_base, + .co_linetable = & os_toplevel_consts_116_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x02\x72\x08\x7c\x02\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x73\x38\x09\x00\x7c\x03\x80\x0d\x02\x00\x7c\x04\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0f\x02\x00\x7c\x04\x7c\x01\x7c\x02\x7c\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x23\x00\x01\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x53\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x05\x53\x00\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x07\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x01\x8c\x24\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[278]; + } +os_toplevel_consts_117_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 277, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x76\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_117_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_117_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_117_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__spawnvef._ascii.ob_base, + & const_str_execv._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +os_toplevel_consts_117_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0e\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x34\xb5\x15\xd1\x0f\x37\xd4\x0f\x37\xd0\x08\x37", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_117_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(mode), + & const_str_file._ascii.ob_base, + & const_str_args._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(50) +os_toplevel_consts_117 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & os_toplevel_consts_117_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_117_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 874, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnv._ascii.ob_base, + .co_qualname = & const_str_spawnv._ascii.ob_base, + .co_linetable = & os_toplevel_consts_117_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[315]; + } +os_toplevel_consts_118_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 314, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x76\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_118_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_118_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_118_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__spawnvef._ascii.ob_base, + & const_str_execve._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_spawnve = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnve", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +os_toplevel_consts_118_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x33\xb5\x06\xd1\x0f\x37\xd4\x0f\x37\xd0\x08\x37", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_118_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(mode), + & const_str_file._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_env._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(50) +os_toplevel_consts_118 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & os_toplevel_consts_118_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_118_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 883, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnve._ascii.ob_base, + .co_qualname = & const_str_spawnve._ascii.ob_base, + .co_linetable = & os_toplevel_consts_118_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[313]; + } +os_toplevel_consts_119_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 312, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x76\x70\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_119_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & os_toplevel_consts_119_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_119_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__spawnvef._ascii.ob_base, + & const_str_execvp._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_spawnvp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnvp", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +os_toplevel_consts_119_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x34\xb5\x16\xd1\x0f\x38\xd4\x0f\x38\xd0\x08\x38", +}; +static + struct _PyCode_DEF(50) +os_toplevel_consts_119 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & os_toplevel_consts_119_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_119_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 895, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnvp._ascii.ob_base, + .co_qualname = & const_str_spawnvp._ascii.ob_base, + .co_linetable = & os_toplevel_consts_119_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[349]; + } +os_toplevel_consts_120_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 348, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x76\x70\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_120_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_120_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_120_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__spawnvef._ascii.ob_base, + & const_str_execvpe._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_spawnvpe = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnvpe", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[27]; + } +os_toplevel_consts_120_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 26, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x33\xb5\x07\xd1\x0f\x38\xd4\x0f\x38\xd0\x08\x38", +}; +static + struct _PyCode_DEF(50) +os_toplevel_consts_120 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & os_toplevel_consts_120_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_120_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 905, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnvpe._ascii.ob_base, + .co_qualname = & const_str_spawnvpe._ascii.ob_base, + .co_linetable = & os_toplevel_consts_120_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_121 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_spawnv._ascii.ob_base, + & const_str_spawnve._ascii.ob_base, + & const_str_spawnvp._ascii.ob_base, + & const_str_spawnvpe._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[279]; + } +os_toplevel_consts_122_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 278, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x6c\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_122_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_122_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_122_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_spawnv._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_spawnl = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnl", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +os_toplevel_consts_122_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0e\x00\x10\x16\x90\x64\x98\x44\xa0\x24\xd1\x0f\x27\xd4\x0f\x27\xd0\x08\x27", +}; +static + struct _PyCode_DEF(36) +os_toplevel_consts_122 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & os_toplevel_consts_122_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_122_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 923, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnl._ascii.ob_base, + .co_qualname = & const_str_spawnl._ascii.ob_base, + .co_linetable = & os_toplevel_consts_122_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[315]; + } +os_toplevel_consts_123_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 314, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x6c\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_123_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & os_toplevel_consts_123_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_123_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_spawnve._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_spawnle = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnle", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[42]; + } +os_toplevel_consts_123_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 41, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x10\x00\x0f\x13\x90\x32\x8c\x68\x88\x03\xdd\x0f\x16\x90\x74\x98\x54\xa0\x34\xa8\x03\xa8\x12\xa8\x03\xa4\x39\xa8\x63\xd1\x0f\x32\xd4\x0f\x32\xd0\x08\x32", +}; +static + struct _PyCode_DEF(70) +os_toplevel_consts_123 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 35, + }, + .co_consts = & os_toplevel_consts_123_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_123_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 932, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnle._ascii.ob_base, + .co_qualname = & const_str_spawnle._ascii.ob_base, + .co_linetable = & os_toplevel_consts_123_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[344]; + } +os_toplevel_consts_127_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 343, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x6c\x70\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_127_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_127_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_127_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_spawnvp._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_spawnlp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnlp", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +os_toplevel_consts_127_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x10\x17\x90\x74\x98\x54\xa0\x34\xd1\x0f\x28\xd4\x0f\x28\xd0\x08\x28", +}; +static + struct _PyCode_DEF(36) +os_toplevel_consts_127 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & os_toplevel_consts_127_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_127_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 950, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnlp._ascii.ob_base, + .co_qualname = & const_str_spawnlp._ascii.ob_base, + .co_linetable = & os_toplevel_consts_127_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[350]; + } +os_toplevel_consts_128_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 349, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x73\x70\x61\x77\x6e\x6c\x70\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_128_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & os_toplevel_consts_128_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_128_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_spawnvpe._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_spawnlpe = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "spawnlpe", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[42]; + } +os_toplevel_consts_128_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 41, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x10\x00\x0f\x13\x90\x32\x8c\x68\x88\x03\xdd\x0f\x17\x98\x04\x98\x64\xa0\x44\xa8\x13\xa8\x22\xa8\x13\xa4\x49\xa8\x73\xd1\x0f\x33\xd4\x0f\x33\xd0\x08\x33", +}; +static + struct _PyCode_DEF(70) +os_toplevel_consts_128 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 35, + }, + .co_consts = & os_toplevel_consts_128_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_128_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 960, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_spawnlpe._ascii.ob_base, + .co_qualname = & const_str_spawnlpe._ascii.ob_base, + .co_linetable = & os_toplevel_consts_128_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +os_toplevel_consts_134_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "invalid cmd type (%s, expected string)", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_w = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "w", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_134_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_r._ascii.ob_base, + & const_str_w._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +os_toplevel_consts_134_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "invalid mode %r", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[44]; + } +os_toplevel_consts_134_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 43, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "popen() does not support unbuffered streams", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_shell = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "shell", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_bufsize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bufsize", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_134_consts_8 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_shell._ascii.ob_base, + &_Py_ID(text), + &_Py_ID(stdout), + & const_str_bufsize._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_134_consts_9 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_shell._ascii.ob_base, + &_Py_ID(text), + &_Py_ID(stdin), + & const_str_bufsize._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +os_toplevel_consts_134_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_134_consts_1._ascii.ob_base, + & os_toplevel_consts_134_consts_2._object.ob_base.ob_base, + & os_toplevel_consts_134_consts_3._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & os_toplevel_consts_134_consts_5._ascii.ob_base, + & const_str_r._ascii.ob_base, + Py_True, + & os_toplevel_consts_134_consts_8._object.ob_base.ob_base, + & os_toplevel_consts_134_consts_9._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_subprocess = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "subprocess", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_Popen = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Popen", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_PIPE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "PIPE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str__wrap_close = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap_close", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +os_toplevel_consts_134_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_str._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_type._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_subprocess._ascii.ob_base, + & const_str_Popen._ascii.ob_base, + & const_str_PIPE._ascii.ob_base, + & const_str__wrap_close._ascii.ob_base, + &_Py_ID(stdout), + &_Py_ID(stdin), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_popen = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "popen", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[251]; + } +os_toplevel_consts_134_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 250, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x23\x9d\x73\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x01\x09\x52\x01\xdd\x12\x1b\xd0\x1c\x44\xc5\x74\xc8\x43\xc1\x79\xc4\x79\xd1\x1c\x50\xd1\x12\x51\xd4\x12\x51\xd0\x0c\x51\xd8\x0b\x0f\x90\x7a\xd0\x0b\x21\xd0\x0b\x21\xdd\x12\x1c\xd0\x1d\x2e\xb0\x14\xd1\x1d\x35\xd1\x12\x36\xd4\x12\x36\xd0\x0c\x36\xd8\x0b\x14\x98\x01\x8a\x3e\x88\x3e\x98\x59\xd0\x1d\x2e\xdd\x12\x1c\xd0\x1d\x4a\xd1\x12\x4b\xd4\x12\x4b\xd0\x0c\x4b\xd8\x08\x19\xd0\x08\x19\xd0\x08\x19\xd0\x08\x19\xd8\x0b\x0f\x90\x33\x8a\x3b\x88\x3b\xd8\x13\x1d\xd7\x13\x23\xd2\x13\x23\xa0\x43\xd8\x2a\x2e\xb0\x54\xd8\x2b\x35\xac\x3f\xd8\x2c\x35\xf0\x07\x00\x14\x24\xf1\x00\x03\x14\x37\xf4\x00\x03\x14\x37\x88\x44\xf5\x08\x00\x14\x1f\x98\x74\x9c\x7b\xa8\x44\xd1\x13\x31\xd4\x13\x31\xd0\x0c\x31\xe0\x13\x1d\xd7\x13\x23\xd2\x13\x23\xa0\x43\xd8\x2a\x2e\xb0\x54\xd8\x2a\x34\xac\x2f\xd8\x2c\x35\xf0\x07\x00\x14\x24\xf1\x00\x03\x14\x37\xf4\x00\x03\x14\x37\x88\x44\xf5\x08\x00\x14\x1f\x98\x74\x9c\x7a\xa8\x34\xd1\x13\x30\xd4\x13\x30\xd0\x0c\x30", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_cmd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cmd", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_proc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "proc", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_134_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_cmd._ascii.ob_base, + &_Py_ID(mode), + & const_str_buffering._ascii.ob_base, + & const_str_subprocess._ascii.ob_base, + & const_str_proc._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(424) +os_toplevel_consts_134 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 212, + }, + .co_consts = & os_toplevel_consts_134_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_134_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 978, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_134_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_popen._ascii.ob_base, + .co_qualname = & const_str_popen._ascii.ob_base, + .co_linetable = & os_toplevel_consts_134_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x64\x02\x76\x01\x72\x12\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x01\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x02\x64\x04\x6b\x02\x00\x00\x00\x00\x73\x02\x7c\x02\x80\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x04\x64\x00\x6c\x05\x7d\x03\x7c\x01\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x34\x7c\x03\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x07\x64\x07\x7c\x03\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xac\x08\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x03\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x07\x64\x07\x7c\x03\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xac\x09\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__stream = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_stream", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__proc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_proc", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_135_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__stream._ascii.ob_base, + & const_str__proc._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +os_toplevel_consts_135_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap_close.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +os_toplevel_consts_135_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x1b\x21\x88\x44\x8c\x4c\xd8\x19\x1d\x88\x44\x8c\x4a\x88\x4a\x88\x4a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_135_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_stream._ascii.ob_base, + & const_str_proc._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(34) +os_toplevel_consts_135_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 17, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_135_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1001, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_135_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & os_toplevel_consts_135_consts_1_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_135_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & const_str_nt._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_wait = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "wait", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_135_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__stream._ascii.ob_base, + &_Py_ID(close), + & const_str__proc._ascii.ob_base, + & const_str_wait._ascii.ob_base, + &_Py_ID(name), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +os_toplevel_consts_135_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap_close.close", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[79]; + } +os_toplevel_consts_135_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 78, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0c\x10\x8c\x4c\xd7\x0c\x1e\xd2\x0c\x1e\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd8\x19\x1d\x9c\x1a\x9f\x1f\x9a\x1f\xd1\x19\x2a\xd4\x19\x2a\x88\x4a\xd8\x0f\x19\x98\x51\x8a\x7f\x88\x7f\xd8\x17\x1b\x90\x74\xdd\x0f\x13\x90\x74\x8a\x7c\x88\x7c\xd8\x17\x21\xd0\x10\x21\xe0\x17\x21\xa0\x51\x91\x7f\xd0\x10\x26", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_returncode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "returncode", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_135_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_returncode._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(154) +os_toplevel_consts_135_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 77, + }, + .co_consts = & os_toplevel_consts_135_consts_2_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_135_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1004, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_135_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(close), + .co_qualname = & os_toplevel_consts_135_consts_2_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x00\x53\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x01\x53\x00\x7c\x01\x64\x03\x7a\x03\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +os_toplevel_consts_135_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap_close.__enter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +os_toplevel_consts_135_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x13\x17\x88\x4b", +}; +static + struct _PyCode_DEF(6) +os_toplevel_consts_135_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1013, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & os_toplevel_consts_135_consts_3_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_135_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(close), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +os_toplevel_consts_135_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap_close.__exit__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +os_toplevel_consts_135_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\x88\x4c", +}; +static + struct _PyCode_DEF(46) +os_toplevel_consts_135_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 23, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_135_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1015, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & os_toplevel_consts_135_consts_4_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_135_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(getattr), + & const_str__stream._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +os_toplevel_consts_135_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap_close.__getattr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +os_toplevel_consts_135_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x13\x1a\x98\x34\x9c\x3c\xa8\x14\xd1\x13\x2e\xd4\x13\x2e\xd0\x0c\x2e", +}; +static + struct _PyCode_DEF(44) +os_toplevel_consts_135_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_135_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1017, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__getattr__), + .co_qualname = & os_toplevel_consts_135_consts_5_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_135_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(iter), + & const_str__stream._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +os_toplevel_consts_135_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_wrap_close.__iter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +os_toplevel_consts_135_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x13\x17\x98\x04\x9c\x0c\xd1\x13\x25\xd4\x13\x25\xd0\x0c\x25", +}; +static + struct _PyCode_DEF(42) +os_toplevel_consts_135_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 21, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_135_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1019, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__iter__), + .co_qualname = & os_toplevel_consts_135_consts_6_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +os_toplevel_consts_135_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str__wrap_close._ascii.ob_base, + & os_toplevel_consts_135_consts_1.ob_base.ob_base, + & os_toplevel_consts_135_consts_2.ob_base.ob_base, + & os_toplevel_consts_135_consts_3.ob_base.ob_base, + & os_toplevel_consts_135_consts_4.ob_base.ob_base, + & os_toplevel_consts_135_consts_5.ob_base.ob_base, + & os_toplevel_consts_135_consts_6.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +os_toplevel_consts_135_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__init__), + &_Py_ID(close), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + &_Py_ID(__getattr__), + &_Py_ID(__iter__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[111]; + } +os_toplevel_consts_135_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 110, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x09\x1e\xf0\x00\x02\x09\x1e\xf0\x00\x02\x09\x1e\xf0\x06\x08\x09\x27\xf0\x00\x08\x09\x27\xf0\x00\x08\x09\x27\xf0\x12\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x04\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x04\x01\x09\x2f\xf0\x00\x01\x09\x2f\xf0\x00\x01\x09\x2f\xf0\x04\x01\x09\x26\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26", +}; +static + struct _PyCode_DEF(50) +os_toplevel_consts_135 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & os_toplevel_consts_135_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_135_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1000, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__wrap_close._ascii.ob_base, + .co_qualname = & const_str__wrap_close._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +os_toplevel_consts_138_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "invalid fd type (%s, expected integer)", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_138_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_138_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & const_str_b._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +os_toplevel_consts_138_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_int._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_type._ascii.ob_base, + & const_str_io._ascii.ob_base, + & const_str_text_encoding._ascii.ob_base, + &_Py_ID(open), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[125]; + } +os_toplevel_consts_138_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 124, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0b\x15\x90\x62\x9d\x23\xd1\x0b\x1e\xd4\x0b\x1e\xf0\x00\x01\x05\x4d\x01\xdd\x0e\x17\xd0\x18\x40\xc5\x34\xc8\x02\xc1\x38\xc4\x38\xd1\x18\x4b\xd1\x0e\x4c\xd4\x0e\x4c\xd0\x08\x4c\xd8\x04\x0d\x80\x49\x80\x49\x80\x49\xd8\x07\x0a\x90\x24\x80\x7f\x80\x7f\xd8\x13\x15\xd7\x13\x23\xd2\x13\x23\xa0\x48\xd1\x13\x2d\xd4\x13\x2d\x88\x08\xd8\x0b\x12\x88\x32\x8c\x37\x90\x32\x90\x74\x98\x59\xa8\x08\xd0\x0b\x42\xb0\x34\xd0\x0b\x42\xd0\x0b\x42\xd0\x0b\x42\xb8\x36\xd0\x0b\x42\xd0\x0b\x42\xd0\x04\x42", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +os_toplevel_consts_138_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_fd._ascii.ob_base, + &_Py_ID(mode), + & const_str_buffering._ascii.ob_base, + &_Py_ID(encoding), + & const_str_args._ascii.ob_base, + & const_str_kwargs._ascii.ob_base, + & const_str_io._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(204) +os_toplevel_consts_138 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 102, + }, + .co_consts = & os_toplevel_consts_138_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_138_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 15, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 1025, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_138_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_fdopen._ascii.ob_base, + .co_qualname = & const_str_fdopen._ascii.ob_base, + .co_linetable = & os_toplevel_consts_138_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x02\x64\x00\x6c\x04\x7d\x06\x64\x03\x7c\x01\x76\x01\x72\x15\x7c\x06\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x02\x00\x7c\x06\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x67\x04\x7c\x04\xa2\x01\x52\x00\x69\x00\x7c\x05\xa4\x01\x8e\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[354]; + } +os_toplevel_consts_139_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 353, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x61\x20\x70\x61\x74\x68\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x73\x74\x72\x20\x6f\x72\x20\x62\x79\x74\x65\x73\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x69\x6e\x2c\x20\x69\x74\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x69\x73\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x67\x65\x74\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x61\x74\x69\x6f\x6e\x2e\x20\x49\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x70\x61\x74\x68\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x69\x73\x20\x6e\x6f\x74\x20\x73\x74\x72\x20\x6f\x72\x20\x62\x79\x74\x65\x73\x2c\x20\x54\x79\x70\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x70\x61\x74\x68\x20\x69\x73\x20\x6e\x6f\x74\x20\x73\x74\x72\x2c\x20\x62\x79\x74\x65\x73\x2c\x20\x6f\x72\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x2c\x20\x54\x79\x70\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[48]; + } +os_toplevel_consts_139_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 47, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "expected str, bytes or os.PathLike object, not ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[56]; + } +os_toplevel_consts_139_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 55, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "expected {}.__fspath__() to return str or bytes, not {}", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_139_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & os_toplevel_consts_139_consts_0._ascii.ob_base, + &_Py_ID(__fspath__), + & os_toplevel_consts_139_consts_2._ascii.ob_base, + & os_toplevel_consts_139_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +os_toplevel_consts_139_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(isinstance), + & const_str_str._ascii.ob_base, + & const_str_bytes._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__fspath__), + & const_str_AttributeError._ascii.ob_base, + & const_str_hasattr._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + &_Py_ID(__name__), + & const_str_format._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__fspath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_fspath", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[244]; + } +os_toplevel_consts_139_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 243, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x08\x12\x90\x24\x9d\x13\x9d\x65\x98\x0c\xd1\x07\x25\xd4\x07\x25\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x0b\xf5\x08\x00\x11\x15\x90\x54\x91\x0a\x94\x0a\x80\x49\xf0\x02\x07\x05\x39\xd8\x14\x1d\xd7\x14\x28\xd2\x14\x28\xa8\x14\xd1\x14\x2e\xd4\x14\x2e\x88\x09\x88\x09\xf8\xdd\x0b\x19\xf0\x00\x05\x05\x39\xf0\x00\x05\x05\x39\xf0\x00\x05\x05\x39\xdd\x0b\x12\x90\x39\x98\x6c\xd1\x0b\x2b\xd4\x0b\x2b\xf0\x00\x04\x09\x39\xd8\x0c\x11\xe5\x12\x1b\xf0\x00\x01\x1d\x23\xd8\x25\x2e\xd4\x25\x37\xf1\x03\x01\x1d\x38\xf1\x00\x01\x13\x39\xf4\x00\x01\x13\x39\xf0\x00\x01\x0d\x39\xf0\x09\x05\x05\x39\xf8\xf8\xf8\xf5\x0c\x00\x08\x12\x90\x29\x9d\x63\xa5\x35\x98\x5c\xd1\x07\x2a\xd4\x07\x2a\xf0\x00\x05\x05\x43\x01\xd8\x0f\x18\xd0\x08\x18\xe5\x0e\x17\xf0\x00\x01\x19\x21\xdf\x21\x27\xa2\x16\xa8\x09\xd4\x28\x3a\xdd\x28\x2c\xa8\x59\xa9\x0f\xac\x0f\xd4\x28\x40\xf1\x03\x01\x22\x42\x01\xf4\x00\x01\x22\x42\x01\xf1\x03\x02\x0f\x43\x01\xf4\x00\x02\x0f\x43\x01\xf0\x00\x02\x09\x43\x01", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[12]; + } +os_toplevel_consts_139_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 11, + }, + .ob_shash = -1, + .ob_sval = "\xaf\x15\x41\x05\x00\xc1\x05\x33\x41\x38\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_path_type = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_type", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_path_repr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_repr", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_139_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(path), + & const_str_path_type._ascii.ob_base, + & const_str_path_repr._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(422) +os_toplevel_consts_139 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 211, + }, + .co_consts = & os_toplevel_consts_139_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_139_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_consts_139_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 1036, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_139_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__fspath._ascii.ob_base, + .co_qualname = & const_str__fspath._ascii.ob_base, + .co_linetable = & os_toplevel_consts_139_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x7c\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x36\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x29\x01\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x01\x82\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x7c\x01\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x7c\x02\x53\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_PathLike = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "PathLike", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[68]; + } +os_toplevel_consts_141_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 67, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Abstract base class for implementing the file system path protocol.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[58]; + } +os_toplevel_consts_141_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 57, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the file system path representation of the object.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +os_toplevel_consts_141_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & os_toplevel_consts_141_consts_2_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +os_toplevel_consts_141_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "PathLike.__fspath__", +}; +static + struct _PyCode_DEF(16) +os_toplevel_consts_141_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 8, + }, + .co_consts = & os_toplevel_consts_141_consts_2_consts._object.ob_base.ob_base, + .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1076, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__fspath__), + .co_qualname = & os_toplevel_consts_141_consts_2_qualname._ascii.ob_base, + .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_141_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + &_Py_ID(__fspath__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_141_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_PathLike._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_NotImplemented._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +os_toplevel_consts_141_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "PathLike.__subclasshook__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +os_toplevel_consts_141_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x28\x88\x3f\x88\x3f\xdd\x13\x21\xa0\x28\xa8\x4c\xd1\x13\x39\xd4\x13\x39\xd0\x0c\x39\xdd\x0f\x1d\xd0\x08\x1d", +}; +static + struct _PyCode_DEF(66) +os_toplevel_consts_141_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 33, + }, + .co_consts = & os_toplevel_consts_141_consts_3_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_141_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1081, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & abc_toplevel_consts_10_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__subclasshook__), + .co_qualname = & os_toplevel_consts_141_consts_3_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_141_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +os_toplevel_consts_141_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_PathLike._ascii.ob_base, + & os_toplevel_consts_141_consts_1._ascii.ob_base, + & os_toplevel_consts_141_consts_2.ob_base.ob_base, + & os_toplevel_consts_141_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +os_toplevel_consts_141_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + & const_str_abc._ascii.ob_base, + & const_str_abstractmethod._ascii.ob_base, + &_Py_ID(__fspath__), + & const_str_classmethod._ascii.ob_base, + &_Py_ID(__subclasshook__), + & const_str_GenericAlias._ascii.ob_base, + &_Py_ID(__class_getitem__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[97]; + } +os_toplevel_consts_141_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 96, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x04\x4d\xd0\x04\x4d\xe0\x05\x08\xd4\x05\x17\xf0\x02\x02\x05\x22\xf0\x00\x02\x05\x22\xf1\x03\x00\x06\x18\xd4\x05\x17\xf0\x02\x02\x05\x22\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", +}; +static + struct _PyCode_DEF(94) +os_toplevel_consts_141 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 47, + }, + .co_consts = & os_toplevel_consts_141_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_141_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1072, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_PathLike._ascii.ob_base, + .co_qualname = & const_str_PathLike._ascii.ob_base, + .co_linetable = & os_toplevel_consts_141_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x07\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x02\x00\x65\x07\x65\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str__AddedDllDirectory = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_AddedDllDirectory", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__cookie = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_cookie", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str__remove_dll_directory = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_remove_dll_directory", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_143_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(path), + & const_str__cookie._ascii.ob_base, + & const_str__remove_dll_directory._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +os_toplevel_consts_143_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_AddedDllDirectory.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[31]; + } +os_toplevel_consts_143_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 30, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x18\x1c\x88\x44\x8c\x49\xd8\x1b\x21\x88\x44\x8c\x4c\xd8\x29\x3d\x88\x44\xd4\x0c\x26\xd0\x0c\x26\xd0\x0c\x26", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_cookie = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "cookie", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str_remove_dll_directory = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "remove_dll_directory", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_143_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + &_Py_ID(path), + & const_str_cookie._ascii.ob_base, + & const_str_remove_dll_directory._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(48) +os_toplevel_consts_143_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_143_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1092, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_143_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & os_toplevel_consts_143_consts_1_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_143_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_143_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str__remove_dll_directory._ascii.ob_base, + & const_str__cookie._ascii.ob_base, + &_Py_ID(path), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +os_toplevel_consts_143_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_AddedDllDirectory.close", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +os_toplevel_consts_143_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0c\x10\xd7\x0c\x26\xd2\x0c\x26\xa0\x74\xa4\x7c\xd1\x0c\x34\xd4\x0c\x34\xd0\x0c\x34\xd8\x18\x1c\x88\x44\x8c\x49\x88\x49\x88\x49", +}; +static + struct _PyCode_DEF(72) +os_toplevel_consts_143_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_143_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1096, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(close), + .co_qualname = & os_toplevel_consts_143_consts_2_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_143_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +os_toplevel_consts_143_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_AddedDllDirectory.__enter__", +}; +static + struct _PyCode_DEF(6) +os_toplevel_consts_143_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1099, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & os_toplevel_consts_143_consts_3_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +os_toplevel_consts_143_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_AddedDllDirectory.__exit__", +}; +static + struct _PyCode_DEF(46) +os_toplevel_consts_143_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 23, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_135_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1101, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & os_toplevel_consts_143_consts_4_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_135_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +os_toplevel_consts_143_consts_5_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +os_toplevel_consts_143_consts_5_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_143_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & os_toplevel_consts_143_consts_5_consts_1._ascii.ob_base, + & os_toplevel_consts_143_consts_5_consts_2._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_143_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(path), + & const_str_format._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +os_toplevel_consts_143_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_AddedDllDirectory.__repr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[42]; + } +os_toplevel_consts_143_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 41, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x79\xf0\x00\x01\x0d\x45\x01\xd8\x17\x32\xd7\x17\x39\xd2\x17\x39\xb8\x24\xbc\x29\xd1\x17\x44\xd4\x17\x44\xd0\x10\x44\xd8\x13\x2a\xd0\x13\x2a", +}; +static + struct _PyCode_DEF(72) +os_toplevel_consts_143_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & os_toplevel_consts_143_consts_5_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_143_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1103, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_ID(__repr__), + .co_qualname = & os_toplevel_consts_143_consts_5_qualname._ascii.ob_base, + .co_linetable = & os_toplevel_consts_143_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x64\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +os_toplevel_consts_143_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__AddedDllDirectory._ascii.ob_base, + & os_toplevel_consts_143_consts_1.ob_base.ob_base, + & os_toplevel_consts_143_consts_2.ob_base.ob_base, + & os_toplevel_consts_143_consts_3.ob_base.ob_base, + & os_toplevel_consts_143_consts_4.ob_base.ob_base, + & os_toplevel_consts_143_consts_5.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +os_toplevel_consts_143_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__init__), + &_Py_ID(close), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + &_Py_ID(__repr__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[96]; + } +os_toplevel_consts_143_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 95, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x03\x09\x3e\xf0\x00\x03\x09\x3e\xf0\x00\x03\x09\x3e\xf0\x08\x02\x09\x1d\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\xf0\x06\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x04\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x04\x03\x09\x2b\xf0\x00\x03\x09\x2b\xf0\x00\x03\x09\x2b\xf0\x00\x03\x09\x2b\xf0\x00\x03\x09\x2b", +}; +static + struct _PyCode_DEF(44) +os_toplevel_consts_143 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 22, + }, + .co_consts = & os_toplevel_consts_143_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_143_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1091, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str__AddedDllDirectory._ascii.ob_base, + .co_qualname = & const_str__AddedDllDirectory._ascii.ob_base, + .co_linetable = & os_toplevel_consts_143_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[336]; + } +os_toplevel_consts_145_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 335, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x64\x64\x20\x61\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x44\x4c\x4c\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x20\x69\x73\x20\x75\x73\x65\x64\x20\x77\x68\x65\x6e\x20\x72\x65\x73\x6f\x6c\x76\x69\x6e\x67\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x28\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x74\x73\x65\x6c\x66\x20\x69\x73\x20\x72\x65\x73\x6f\x6c\x76\x65\x64\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x29\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x61\x6c\x73\x6f\x20\x62\x79\x20\x63\x74\x79\x70\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x62\x79\x20\x63\x61\x6c\x6c\x69\x6e\x67\x20\x63\x6c\x6f\x73\x65\x28\x29\x20\x6f\x6e\x20\x74\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x75\x73\x69\x6e\x67\x20\x69\x74\x20\x69\x6e\x20\x61\x20\x77\x69\x74\x68\x20\x73\x74\x61\x74\x65\x6d\x65\x6e\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_145_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & os_toplevel_consts_145_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str__add_dll_directory = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_add_dll_directory", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +os_toplevel_consts_145_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_nt._ascii.ob_base, + & const_str__add_dll_directory._ascii.ob_base, + & const_str__AddedDllDirectory._ascii.ob_base, + & const_str__remove_dll_directory._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_add_dll_directory = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "add_dll_directory", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[62]; + } +os_toplevel_consts_145_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 61, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x14\x00\x09\x12\x88\x09\x88\x09\x88\x09\xd8\x11\x26\x90\x12\xd4\x11\x26\xa0\x74\xd1\x11\x2c\xd4\x11\x2c\x88\x06\xdd\x0f\x21\xd8\x0c\x10\xd8\x0c\x12\xd8\x0c\x0e\xd4\x0c\x24\xf1\x07\x04\x10\x0a\xf4\x00\x04\x10\x0a\xf0\x00\x04\x09\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_145_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(path), + & const_str_nt._ascii.ob_base, + & const_str_cookie._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(86) +os_toplevel_consts_145 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 43, + }, + .co_consts = & os_toplevel_consts_145_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_consts_145_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1108, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & os_toplevel_consts_145_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = & const_str_add_dll_directory._ascii.ob_base, + .co_qualname = & const_str_add_dll_directory._ascii.ob_base, + .co_linetable = & os_toplevel_consts_145_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x64\x02\x6c\x00\x7d\x01\x02\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_146 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_int_511.ob_base.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_147 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_True, + Py_None, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_148 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_STR(dot), + Py_True, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +os_toplevel_consts_150 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_r._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +os_toplevel_consts_151 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_r._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[152]; + }_object; + } +os_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 152, + }, + .ob_item = { + & os_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & os_toplevel_consts_3._object.ob_base.ob_base, + & os_toplevel_consts_4._object.ob_base.ob_base, + & os_toplevel_consts_5.ob_base.ob_base, + & os_toplevel_consts_6.ob_base.ob_base, + & const_str_posix._ascii.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, + & codecs_toplevel_consts_3._object.ob_base.ob_base, + & os_toplevel_consts_10._object.ob_base.ob_base, + & const_str__exit._ascii.ob_base, + & os_toplevel_consts_12._object.ob_base.ob_base, + & const_str_nt._ascii.ob_base, + & os_toplevel_consts_14._ascii.ob_base, + & os_toplevel_consts_15._ascii.ob_base, + & os_toplevel_consts_16._ascii.ob_base, + & os_toplevel_consts_17._object.ob_base.ob_base, + & const_str__have_functions._ascii.ob_base, + & os_toplevel_consts_19.ob_base.ob_base, + & const_str_HAVE_FACCESSAT._ascii.ob_base, + & const_str_access._ascii.ob_base, + & const_str_HAVE_FCHMODAT._ascii.ob_base, + & const_str_chmod._ascii.ob_base, + & const_str_HAVE_FCHOWNAT._ascii.ob_base, + & const_str_chown._ascii.ob_base, + & const_str_HAVE_FSTATAT._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_HAVE_FUTIMESAT._ascii.ob_base, + & const_str_utime._ascii.ob_base, + & const_str_HAVE_LINKAT._ascii.ob_base, + & const_str_link._ascii.ob_base, + & const_str_HAVE_MKDIRAT._ascii.ob_base, + & const_str_mkdir._ascii.ob_base, + & const_str_HAVE_MKFIFOAT._ascii.ob_base, + & const_str_mkfifo._ascii.ob_base, + & const_str_HAVE_MKNODAT._ascii.ob_base, + & const_str_mknod._ascii.ob_base, + & const_str_HAVE_OPENAT._ascii.ob_base, + &_Py_ID(open), + & const_str_HAVE_READLINKAT._ascii.ob_base, + & const_str_readlink._ascii.ob_base, + & const_str_HAVE_RENAMEAT._ascii.ob_base, + & const_str_rename._ascii.ob_base, + & const_str_HAVE_SYMLINKAT._ascii.ob_base, + & const_str_symlink._ascii.ob_base, + & const_str_HAVE_UNLINKAT._ascii.ob_base, + & const_str_unlink._ascii.ob_base, + & const_str_rmdir._ascii.ob_base, + & const_str_HAVE_UTIMENSAT._ascii.ob_base, + & const_str_HAVE_FCHDIR._ascii.ob_base, + & const_str_chdir._ascii.ob_base, + & const_str_HAVE_FCHMOD._ascii.ob_base, + & const_str_HAVE_FCHOWN._ascii.ob_base, + & const_str_HAVE_FDOPENDIR._ascii.ob_base, + & const_str_listdir._ascii.ob_base, + & const_str_scandir._ascii.ob_base, + & const_str_HAVE_FEXECVE._ascii.ob_base, + & const_str_execve._ascii.ob_base, + & const_str_HAVE_FTRUNCATE._ascii.ob_base, + &_Py_ID(truncate), + & const_str_HAVE_FUTIMENS._ascii.ob_base, + & const_str_HAVE_FUTIMES._ascii.ob_base, + & const_str_HAVE_FPATHCONF._ascii.ob_base, + & const_str_pathconf._ascii.ob_base, + & const_str_statvfs._ascii.ob_base, + & const_str_fstatvfs._ascii.ob_base, + & const_str_HAVE_FSTATVFS._ascii.ob_base, + & const_str_HAVE_LCHFLAGS._ascii.ob_base, + & const_str_chflags._ascii.ob_base, + & const_str_HAVE_LCHMOD._ascii.ob_base, + & const_str_lchown._ascii.ob_base, + & const_str_HAVE_LCHOWN._ascii.ob_base, + & const_str_HAVE_LUTIMES._ascii.ob_base, + & const_str_HAVE_LSTAT._ascii.ob_base, + & const_str_MS_WINDOWS._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & const_int_511.ob_base.ob_base, + Py_False, + & os_toplevel_consts_80.ob_base.ob_base, + & os_toplevel_consts_81.ob_base.ob_base, + & os_toplevel_consts_82.ob_base.ob_base, + & os_toplevel_consts_83._object.ob_base.ob_base, + Py_True, + & os_toplevel_consts_85.ob_base.ob_base, + & os_toplevel_consts_86.ob_base.ob_base, + & const_str_walk._ascii.ob_base, + &_Py_STR(dot), + & os_toplevel_consts_89._object.ob_base.ob_base, + & os_toplevel_consts_90.ob_base.ob_base, + & os_toplevel_consts_91.ob_base.ob_base, + & const_str_fwalk._ascii.ob_base, + & os_toplevel_consts_93.ob_base.ob_base, + & os_toplevel_consts_94.ob_base.ob_base, + & os_toplevel_consts_95.ob_base.ob_base, + & os_toplevel_consts_96.ob_base.ob_base, + & os_toplevel_consts_97.ob_base.ob_base, + & os_toplevel_consts_98.ob_base.ob_base, + & os_toplevel_consts_99._object.ob_base.ob_base, + & os_toplevel_consts_100.ob_base.ob_base, + & os_toplevel_consts_101.ob_base.ob_base, + & os_toplevel_consts_102._object.ob_base.ob_base, + & os_toplevel_consts_103.ob_base.ob_base, + & const_str__Environ._ascii.ob_base, + & os_toplevel_consts_105.ob_base.ob_base, + & os_toplevel_consts_106.ob_base.ob_base, + & os_toplevel_consts_107._object.ob_base.ob_base, + & os_toplevel_consts_108.ob_base.ob_base, + & os_toplevel_consts_109.ob_base.ob_base, + & os_toplevel_consts_110._object.ob_base.ob_base, + & os_toplevel_consts_111.ob_base.ob_base, + & const_str_fork._ascii.ob_base, + & const_str_spawnv._ascii.ob_base, + & const_str_execv._ascii.ob_base, + & os_toplevel_consts_115._object.ob_base.ob_base, + & os_toplevel_consts_116.ob_base.ob_base, + & os_toplevel_consts_117.ob_base.ob_base, + & os_toplevel_consts_118.ob_base.ob_base, + & os_toplevel_consts_119.ob_base.ob_base, + & os_toplevel_consts_120.ob_base.ob_base, + & os_toplevel_consts_121._object.ob_base.ob_base, + & os_toplevel_consts_122.ob_base.ob_base, + & os_toplevel_consts_123.ob_base.ob_base, + & const_str_spawnl._ascii.ob_base, + & const_str_spawnle._ascii.ob_base, + & const_str_spawnvp._ascii.ob_base, + & os_toplevel_consts_127.ob_base.ob_base, + & os_toplevel_consts_128.ob_base.ob_base, + & const_str_spawnlp._ascii.ob_base, + & const_str_spawnlpe._ascii.ob_base, + & const_str_vxworks._ascii.ob_base, + & const_str_r._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], + & os_toplevel_consts_134.ob_base.ob_base, + & os_toplevel_consts_135.ob_base.ob_base, + & const_str__wrap_close._ascii.ob_base, + & const_str_popen._ascii.ob_base, + & os_toplevel_consts_138.ob_base.ob_base, + & os_toplevel_consts_139.ob_base.ob_base, + & const_str_fspath._ascii.ob_base, + & os_toplevel_consts_141.ob_base.ob_base, + & const_str_PathLike._ascii.ob_base, + & os_toplevel_consts_143.ob_base.ob_base, + & const_str__AddedDllDirectory._ascii.ob_base, + & os_toplevel_consts_145.ob_base.ob_base, + & os_toplevel_consts_146._object.ob_base.ob_base, + & os_toplevel_consts_147._object.ob_base.ob_base, + & os_toplevel_consts_148._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + & os_toplevel_consts_150._object.ob_base.ob_base, + & os_toplevel_consts_151._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__collections_abc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_collections_abc", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str__names = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_names", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_posixpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "posixpath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_ntpath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ntpath", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_supports_dir_fd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "supports_dir_fd", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str_supports_effective_ids = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "supports_effective_ids", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_supports_fd = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "supports_fd", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str_supports_follow_symlinks = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "supports_follow_symlinks", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[106]; + }_object; + } +os_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 106, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_abc._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_st._ascii.ob_base, + & const_str__collections_abc._ascii.ob_base, + & const_str__check_methods._ascii.ob_base, + & const_str_type._ascii.ob_base, + & const_str_list._ascii.ob_base, + & const_str_int._ascii.ob_base, + & const_str_GenericAlias._ascii.ob_base, + & const_str_builtin_module_names._ascii.ob_base, + & const_str__names._ascii.ob_base, + &_Py_ID(__all__), + & const_str__exists._ascii.ob_base, + & const_str__get_exports_list._ascii.ob_base, + &_Py_ID(name), + & const_str_linesep._ascii.ob_base, + & const_str_posix._ascii.ob_base, + & const_str__exit._ascii.ob_base, + &_Py_ID(append), + & const_str_ImportError._ascii.ob_base, + & const_str_posixpath._ascii.ob_base, + &_Py_ID(path), + & const_str__have_functions._ascii.ob_base, + &_Py_ID(extend), + & const_str_nt._ascii.ob_base, + & const_str_ntpath._ascii.ob_base, + &_Py_ID(modules), + & os_toplevel_consts_16._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_pardir._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + & const_str_defpath._ascii.ob_base, + & const_str_extsep._ascii.ob_base, + & const_str_altsep._ascii.ob_base, + & const_str_devnull._ascii.ob_base, + & const_str_globals._ascii.ob_base, + & const_str__globals._ascii.ob_base, + & const_str__add._ascii.ob_base, + & const_str_set._ascii.ob_base, + & const_str__set._ascii.ob_base, + & const_str_supports_dir_fd._ascii.ob_base, + & const_str_supports_effective_ids._ascii.ob_base, + &_Py_ID(add), + & const_str_supports_fd._ascii.ob_base, + & const_str_supports_follow_symlinks._ascii.ob_base, + & const_str_SEEK_SET._ascii.ob_base, + & const_str_SEEK_CUR._ascii.ob_base, + & const_str_SEEK_END._ascii.ob_base, + & const_str_makedirs._ascii.ob_base, + & const_str_removedirs._ascii.ob_base, + & const_str_renames._ascii.ob_base, + & const_str_walk._ascii.ob_base, + & const_str__walk._ascii.ob_base, + &_Py_ID(open), + & const_str_scandir._ascii.ob_base, + & const_str_fwalk._ascii.ob_base, + & const_str__fwalk._ascii.ob_base, + & const_str_execl._ascii.ob_base, + & const_str_execle._ascii.ob_base, + & const_str_execlp._ascii.ob_base, + & const_str_execlpe._ascii.ob_base, + & const_str_execvp._ascii.ob_base, + & const_str_execvpe._ascii.ob_base, + & const_str__execvpe._ascii.ob_base, + & const_str_get_exec_path._ascii.ob_base, + & const_str_MutableMapping._ascii.ob_base, + & const_str_Mapping._ascii.ob_base, + & const_str__Environ._ascii.ob_base, + & const_str__createenviron._ascii.ob_base, + & const_str_environ._ascii.ob_base, + & const_str_getenv._ascii.ob_base, + & const_str_supports_bytes_environ._ascii.ob_base, + & const_str__check_bytes._ascii.ob_base, + & const_str__data._ascii.ob_base, + & const_str_bytes._ascii.ob_base, + & const_str_environb._ascii.ob_base, + & const_str_getenvb._ascii.ob_base, + & const_str__fscodec._ascii.ob_base, + & const_str_fsencode._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + & const_str_P_WAIT._ascii.ob_base, + & const_str_P_NOWAIT._ascii.ob_base, + & const_str_P_NOWAITO._ascii.ob_base, + & const_str__spawnvef._ascii.ob_base, + & const_str_spawnv._ascii.ob_base, + & const_str_spawnve._ascii.ob_base, + & const_str_spawnvp._ascii.ob_base, + & const_str_spawnvpe._ascii.ob_base, + & const_str_spawnl._ascii.ob_base, + & const_str_spawnle._ascii.ob_base, + & const_str_spawnlp._ascii.ob_base, + & const_str_spawnlpe._ascii.ob_base, + & const_str_platform._ascii.ob_base, + & const_str_popen._ascii.ob_base, + & const_str__wrap_close._ascii.ob_base, + & const_str_fdopen._ascii.ob_base, + & const_str__fspath._ascii.ob_base, + & const_str_fspath._ascii.ob_base, + &_Py_ID(__name__), + & const_str_ABC._ascii.ob_base, + & const_str_PathLike._ascii.ob_base, + & const_str__AddedDllDirectory._ascii.ob_base, + & const_str_add_dll_directory._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3010]; + } +os_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 3009, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x15\x01\x04\xf0\x00\x15\x01\x04\xf0\x30\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x11\xd0\x00\x11\xd0\x00\x11\xd0\x00\x11\xe0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xe0\x0f\x13\x88\x74\x90\x44\x98\x13\x94\x49\x89\x7f\x8c\x7f\x80\x0c\xe0\x09\x0c\xd4\x09\x21\x80\x06\xf0\x06\x03\x0b\x15\xf0\x00\x03\x0b\x15\xf0\x00\x03\x0b\x15\x80\x07\xf0\x0a\x01\x01\x1d\xf0\x00\x01\x01\x1d\xf0\x00\x01\x01\x1d\xf0\x06\x04\x01\x37\xf0\x00\x04\x01\x37\xf0\x00\x04\x01\x37\xf0\x10\x00\x04\x0b\x88\x66\xd0\x03\x14\xd0\x03\x14\xd8\x0b\x12\x80\x44\xd8\x0e\x12\x80\x47\xd8\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xf0\x02\x04\x05\x0d\xd8\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd8\x08\x0f\x8f\x0e\x8a\x0e\x90\x77\xd1\x08\x1f\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xe0\x04\x1c\xd0\x04\x1c\xd0\x04\x1c\xd0\x04\x1c\xf0\x04\x03\x05\x0d\xd8\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x06\x00\x05\x11\x80\x4c\x80\x4c\x80\x4c\xd8\x04\x0b\x87\x4e\x82\x4e\xd0\x13\x24\xd0\x13\x24\xa0\x55\xd1\x13\x2b\xd4\x13\x2b\xd1\x04\x2c\xd4\x04\x2c\xd0\x04\x2c\xd8\x08\x0d\x88\x05\xe0\x05\x09\x88\x56\x80\x5e\x80\x5e\xd8\x0b\x0f\x80\x44\xd8\x0e\x14\x80\x47\xd8\x04\x14\xd0\x04\x14\xd0\x04\x14\xd0\x04\x14\xf0\x02\x04\x05\x0d\xd8\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd8\x08\x0f\x8f\x0e\x8a\x0e\x90\x77\xd1\x08\x1f\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xe0\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19\xe0\x04\x0d\x80\x49\x80\x49\x80\x49\xd8\x04\x0b\x87\x4e\x82\x4e\xd0\x13\x24\xd0\x13\x24\xa0\x52\xd1\x13\x28\xd4\x13\x28\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xd8\x08\x0a\xf0\x04\x03\x05\x0d\xd8\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x08\x00\x0b\x16\x88\x2b\xd0\x16\x33\xd1\x0a\x34\xd4\x0a\x34\xd0\x04\x34\xe0\x19\x1d\x80\x03\x84\x0b\x88\x49\xd1\x00\x16\xf0\x02\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x06\x00\x05\x0b\xf0\x06\x00\x04\x0b\x80\x37\xd0\x0b\x1c\xd1\x03\x1d\xd4\x03\x1d\xf1\x00\x55\x01\x01\x0d\xd8\x0f\x16\x88\x77\x89\x79\x8c\x79\x80\x48\xf0\x02\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x08\x00\x0c\x0f\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1e\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1f\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\xd0\x09\x1a\x98\x4a\xd1\x04\x27\xd4\x04\x27\xd0\x04\x27\xd8\x04\x08\x80\x44\x88\x1f\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\x88\x1f\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x16\x1a\x80\x4f\xe0\x0b\x0e\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x1d\x21\xd0\x04\x1a\xe0\x0b\x0e\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\x88\x1e\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x87\x48\x82\x48\x88\x54\x81\x4e\x84\x4e\x80\x4e\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x4a\xd1\x04\x27\xd4\x04\x27\xd0\x04\x27\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x4a\xd1\x04\x27\xd4\x04\x27\xd0\x04\x27\xd8\x07\x0e\x80\x77\x88\x79\xd1\x07\x19\xd4\x07\x19\xf0\x00\x01\x05\x29\x98\x67\x98\x67\xa0\x6a\xd1\x1e\x31\xd4\x1e\x31\xf0\x00\x01\x05\x29\xd8\x08\x0c\x88\x04\x88\x5f\x98\x69\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x12\x16\x80\x4b\xe0\x0b\x0e\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xf0\x2c\x00\x05\x09\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1e\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1f\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x07\x0e\x80\x77\x88\x78\xd1\x07\x18\xd4\x07\x18\xf0\x00\x01\x05\x25\xd8\x08\x0c\x88\x04\x88\x5d\x98\x47\xd1\x08\x24\xd4\x08\x24\xd0\x08\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1c\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1e\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1c\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x1f\x23\xd0\x04\x1c\xe0\x08\x0c\xd8\x08\x17\xd8\x08\x10\xd8\x08\x0c\xf0\x0c\x00\x0c\x0d\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xf0\x0a\x1e\x01\x12\xf0\x00\x1e\x01\x12\xf0\x00\x1e\x01\x12\xf0\x00\x1e\x01\x12\xf0\x40\x01\x14\x01\x26\xf0\x00\x14\x01\x26\xf0\x00\x14\x01\x26\xf0\x2c\x18\x01\x11\xf0\x00\x18\x01\x11\xf0\x00\x18\x01\x11\xf0\x34\x00\x01\x08\x87\x0e\x82\x0e\xd0\x0f\x34\xd0\x0f\x34\xd0\x0f\x34\xd1\x00\x35\xd4\x00\x35\xd0\x00\x35\xf0\x04\x3d\x01\x3d\xf0\x00\x3d\x01\x3d\xf0\x00\x3d\x01\x3d\xf0\x00\x3d\x01\x3d\xf0\x7e\x01\x50\x01\x01\x21\xf0\x00\x50\x01\x01\x21\xf0\x00\x50\x01\x01\x21\xf0\x64\x02\x00\x01\x08\x87\x0e\x82\x0e\x88\x76\xd1\x00\x16\xd4\x00\x16\xd0\x00\x16\xe0\x04\x08\x88\x24\x80\x3c\x90\x3f\xd2\x03\x22\xd0\x03\x22\xa8\x07\xb0\x14\xa0\x7f\xb8\x2b\xd2\x27\x45\xd0\x27\x45\xf0\x04\x2e\x05\x19\xc0\x65\xd0\x54\x58\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x60\x01\x36\x05\x30\xf0\x00\x36\x05\x30\xf0\x00\x36\x05\x30\xf0\x70\x01\x00\x05\x0c\x87\x4e\x82\x4e\x90\x37\xd1\x04\x1b\xd4\x04\x1b\xd0\x04\x1b\xf0\x04\x05\x01\x16\xf0\x00\x05\x01\x16\xf0\x00\x05\x01\x16\xf0\x0e\x06\x01\x21\xf0\x00\x06\x01\x21\xf0\x00\x06\x01\x21\xf0\x10\x05\x01\x17\xf0\x00\x05\x01\x17\xf0\x00\x05\x01\x17\xf0\x0e\x07\x01\x22\xf0\x00\x07\x01\x22\xf0\x00\x07\x01\x22\xf0\x12\x06\x01\x19\xf0\x00\x06\x01\x19\xf0\x00\x06\x01\x19\xf0\x10\x07\x01\x1e\xf0\x00\x07\x01\x1e\xf0\x00\x07\x01\x1e\xf0\x12\x00\x01\x08\x87\x0e\x82\x0e\xd0\x0f\x47\xd0\x0f\x47\xd0\x0f\x47\xd1\x00\x48\xd4\x00\x48\xd0\x00\x48\xf0\x04\x1d\x01\x13\xf0\x00\x1d\x01\x13\xf0\x00\x1d\x01\x13\xf0\x00\x1d\x01\x13\xf0\x40\x01\x29\x01\x24\xf0\x00\x29\x01\x24\xf0\x00\x29\x01\x24\xf0\x00\x29\x01\x24\xf0\x5a\x01\x00\x01\x35\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xf0\x04\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\x88\x7e\xf1\x00\x47\x01\x01\x13\xf4\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x52\x02\x1b\x01\x18\xf0\x00\x1b\x01\x18\xf0\x00\x1b\x01\x18\xf0\x3c\x00\x0b\x19\x88\x2e\xd1\x0a\x1a\xd4\x0a\x1a\x80\x07\xd8\x04\x12\xf0\x06\x04\x01\x25\xf0\x00\x04\x01\x25\xf0\x00\x04\x01\x25\xf0\x00\x04\x01\x25\xf0\x0c\x00\x1b\x1f\xa0\x24\x9a\x2c\xd0\x00\x16\xd8\x00\x07\x87\x0e\x82\x0e\xd0\x0f\x33\xd1\x00\x34\xd4\x00\x34\xd0\x00\x34\xe0\x03\x19\xf0\x00\x12\x01\x2c\xf0\x02\x03\x05\x15\xf0\x00\x03\x05\x15\xf0\x00\x03\x05\x15\xf0\x0c\x00\x10\x18\x88\x78\x98\x07\x9c\x0d\xd8\x08\x14\x90\x65\xd8\x08\x14\x90\x65\xf1\x05\x02\x10\x1d\xf4\x00\x02\x10\x1d\x80\x48\xf0\x06\x00\x09\x15\xf0\x04\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x0c\x00\x05\x0c\x87\x4e\x82\x4e\xd0\x13\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xf0\x04\x1c\x01\x1e\xf0\x00\x1c\x01\x1e\xf0\x00\x1c\x01\x1e\xf0\x3c\x00\x16\x1e\x90\x58\x91\x5a\x94\x5a\xd1\x00\x12\x80\x08\x88\x28\xd8\x04\x0c\xf0\x06\x00\x04\x0b\x80\x37\x88\x36\x81\x3f\x84\x3f\xf0\x00\x50\x01\x01\x41\x01\x98\x37\x98\x37\xa0\x38\xd1\x1b\x2c\xd4\x1b\x2c\xf0\x00\x50\x01\x01\x41\x01\xb0\x17\xb0\x17\xb8\x17\xd1\x31\x41\xd4\x31\x41\xf0\x00\x50\x01\x01\x41\x01\xe0\x0d\x0e\x80\x46\xd8\x1b\x1c\xd0\x04\x1c\x80\x48\x88\x79\xe0\x04\x0b\x87\x4e\x82\x4e\xd0\x13\x36\xd0\x13\x36\xd0\x13\x36\xd1\x04\x37\xd4\x04\x37\xd0\x04\x37\xf0\x0c\x19\x05\x33\xf0\x00\x19\x05\x33\xf0\x00\x19\x05\x33\xf0\x36\x07\x05\x38\xf0\x00\x07\x05\x38\xf0\x00\x07\x05\x38\xf0\x12\x08\x05\x38\xf0\x00\x08\x05\x38\xf0\x00\x08\x05\x38\xf0\x18\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x14\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x16\x00\x05\x0c\x87\x4e\x82\x4e\xd0\x13\x3f\xd0\x13\x3f\xd0\x13\x3f\xd1\x04\x40\xd4\x04\x40\xd0\x04\x40\xf0\x06\x00\x04\x0b\x80\x37\x88\x38\xd1\x03\x14\xd4\x03\x14\xf0\x00\x19\x01\x2a\xf0\x08\x07\x05\x28\xf0\x00\x07\x05\x28\xf0\x00\x07\x05\x28\xf0\x12\x09\x05\x33\xf0\x00\x09\x05\x33\xf0\x00\x09\x05\x33\xf0\x18\x00\x05\x0c\x87\x4e\x82\x4e\x90\x48\x98\x69\xd0\x13\x28\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xf0\x06\x00\x04\x0b\x80\x37\x88\x39\xd1\x03\x15\xd4\x03\x15\xf0\x00\x19\x01\x2c\xf0\x06\x08\x05\x29\xf0\x00\x08\x05\x29\xf0\x00\x08\x05\x29\xf0\x14\x09\x05\x34\xf0\x00\x09\x05\x34\xf0\x00\x09\x05\x34\xf0\x18\x00\x05\x0c\x87\x4e\x82\x4e\x90\x49\x98\x7a\xd0\x13\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xf0\x08\x00\x04\x07\x84\x3c\x90\x39\xd2\x03\x1c\xd0\x03\x1c\xf0\x04\x13\x05\x31\xf0\x00\x13\x05\x31\xf0\x00\x13\x05\x31\xf0\x00\x13\x05\x31\xf0\x2c\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf1\x00\x14\x05\x26\xf4\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x2c\x00\x05\x0c\x87\x4e\x82\x4e\x90\x37\xd1\x04\x1b\xd4\x04\x1b\xd0\x04\x1b\xf0\x06\x06\x01\x43\x01\xf0\x00\x06\x01\x43\x01\xf0\x00\x06\x01\x43\x01\xf0\x00\x06\x01\x43\x01\xf0\x16\x1b\x01\x43\x01\xf0\x00\x1b\x01\x43\x01\xf0\x00\x1b\x01\x43\x01\xf0\x3e\x00\x08\x0f\x80\x77\x88\x78\xd1\x07\x18\xd4\x07\x18\xf0\x00\x02\x01\x1f\xd8\x0d\x14\x80\x46\xd8\x16\x1e\x80\x46\x84\x4f\xf0\x06\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\x88\x73\x8c\x77\xf1\x00\x0f\x01\x32\xf4\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x24\x00\x04\x08\x88\x34\x82\x3c\x80\x3c\xf0\x02\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf1\x00\x0f\x05\x2b\xf4\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x22\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x25\x00\x04\x10\x80\x3c", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[73]; + } +os_toplevel_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 72, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x04\x1b\x41\x20\x00\xc1\x20\x05\x41\x28\x03\xc1\x27\x01\x41\x28\x03\xc1\x30\x06\x41\x37\x00\xc1\x37\x05\x41\x3f\x03\xc1\x3e\x01\x41\x3f\x03\xc2\x33\x1b\x43\x0f\x00\xc3\x0f\x05\x43\x17\x03\xc3\x16\x01\x43\x17\x03\xc4\x02\x06\x44\x09\x00\xc4\x09\x05\x44\x11\x03\xc4\x10\x01\x44\x11\x03", +}; +static + struct _PyCode_DEF(3058) +os_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 1529, + }, + .co_consts = & os_toplevel_consts._object.ob_base.ob_base, + .co_names = & os_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = & os_toplevel_exceptiontable.ob_base.ob_base, + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & os_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x64\x01\x64\x02\x6c\x03\x5a\x04\x64\x01\x64\x03\x6c\x05\x6d\x06\x5a\x06\x01\x00\x02\x00\x65\x07\x65\x08\x65\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x65\x02\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0c\x67\x00\x64\x04\xa2\x01\x5a\x0d\x64\x05\x84\x00\x5a\x0e\x64\x06\x84\x00\x5a\x0f\x64\x07\x65\x0c\x76\x00\x72\x6b\x64\x07\x5a\x10\x64\x08\x5a\x11\x64\x01\x64\x09\x6c\x12\x54\x00\x09\x00\x64\x01\x64\x0a\x6c\x12\x6d\x13\x5a\x13\x01\x00\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x02\x6c\x16\x5a\x17\x09\x00\x64\x01\x64\x0c\x6c\x12\x6d\x18\x5a\x18\x01\x00\x6e\x0b\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x02\x6c\x12\x5a\x12\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x65\x0f\x65\x12\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x5b\x12\x6e\x79\x64\x0d\x65\x0c\x76\x00\x72\x6a\x64\x0d\x5a\x10\x64\x0e\x5a\x11\x64\x01\x64\x09\x6c\x1a\x54\x00\x09\x00\x64\x01\x64\x0a\x6c\x1a\x6d\x13\x5a\x13\x01\x00\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x02\x6c\x1b\x5a\x17\x64\x01\x64\x02\x6c\x1a\x5a\x1a\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x65\x0f\x65\x1a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x5b\x1a\x09\x00\x64\x01\x64\x0c\x6c\x1a\x6d\x18\x5a\x18\x01\x00\x6e\x16\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x0f\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x65\x15\x64\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x65\x17\x65\x02\x6a\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\x3c\x00\x00\x00\x64\x01\x64\x11\x6c\x1d\x6d\x1e\x5a\x1e\x6d\x1f\x5a\x1f\x6d\x20\x5a\x20\x6d\x21\x5a\x21\x6d\x22\x5a\x22\x6d\x23\x5a\x23\x6d\x24\x5a\x24\x6d\x25\x5a\x25\x01\x00\x5b\x0c\x02\x00\x65\x0e\x64\x12\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x90\x02\x72\x57\x02\x00\x65\x26\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x27\x64\x13\x84\x00\x5a\x28\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x14\x64\x15\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x16\x64\x17\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x18\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1c\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1e\x64\x1f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x20\x64\x21\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x22\x64\x23\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x24\x64\x25\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x26\x64\x27\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x28\x64\x29\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2a\x64\x2b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2c\x64\x2d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2e\x64\x2f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2e\x64\x30\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x31\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2b\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x14\x64\x15\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2c\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x32\x64\x33\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x34\x64\x17\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x35\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x36\x64\x37\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x36\x64\x38\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x39\x64\x3a\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\xa0\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3b\x64\x3c\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3d\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3e\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3f\x64\x40\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x41\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x17\x02\x00\x65\x0e\x64\x42\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x28\x64\x43\x64\x41\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2e\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x14\x64\x15\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x18\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x44\x64\x45\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x46\x64\x17\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x47\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x28\x64\x48\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1e\x64\x1f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x49\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x4a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x31\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x4b\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2f\x5b\x2a\x5b\x18\x5b\x27\x5b\x28\x64\x01\x5a\x30\x64\x4c\x5a\x31\x64\x4d\x5a\x32\x64\x92\x64\x50\x84\x01\x5a\x33\x64\x51\x84\x00\x5a\x34\x64\x52\x84\x00\x5a\x35\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x53\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x93\x64\x55\x84\x01\x5a\x36\x64\x56\x84\x00\x5a\x37\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x57\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\x65\x03\x68\x02\x65\x2b\x6b\x01\x00\x00\x00\x00\x72\x28\x65\x39\x65\x03\x68\x02\x65\x2e\x6b\x01\x00\x00\x00\x00\x72\x20\x64\x94\x64\x4f\x64\x02\x64\x59\x9c\x02\x64\x5a\x84\x03\x5a\x3a\x64\x5b\x84\x00\x5a\x3b\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x5c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x5d\x84\x00\x5a\x3c\x64\x5e\x84\x00\x5a\x3d\x64\x5f\x84\x00\x5a\x3e\x64\x60\x84\x00\x5a\x3f\x64\x61\x84\x00\x5a\x40\x64\x62\x84\x00\x5a\x41\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x63\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x95\x64\x64\x84\x01\x5a\x42\x64\x95\x64\x65\x84\x01\x5a\x43\x64\x01\x64\x66\x6c\x05\x6d\x44\x5a\x44\x6d\x45\x5a\x45\x01\x00\x02\x00\x47\x00\x64\x67\x84\x00\x64\x68\x65\x44\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x46\x64\x69\x84\x00\x5a\x47\x02\x00\x65\x47\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x48\x5b\x47\x64\x95\x64\x6a\x84\x01\x5a\x49\x65\x10\x64\x0d\x6b\x03\x00\x00\x00\x00\x5a\x4a\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x6b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4a\x72\x31\x64\x6c\x84\x00\x5a\x4b\x02\x00\x65\x46\x65\x48\x6a\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4b\x65\x4d\x65\x4b\x65\x4d\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x4e\x5b\x4b\x64\x95\x64\x6d\x84\x01\x5a\x4f\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x6e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x6f\x84\x00\x5a\x50\x02\x00\x65\x50\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x5a\x51\x5a\x52\x5b\x50\x02\x00\x65\x0e\x64\x70\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x59\x02\x00\x65\x0e\x64\x71\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x4e\x02\x00\x65\x0e\x64\x72\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x43\x64\x01\x5a\x53\x64\x4c\x78\x01\x5a\x54\x5a\x55\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x73\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x74\x84\x00\x5a\x56\x64\x75\x84\x00\x5a\x57\x64\x76\x84\x00\x5a\x58\x64\x77\x84\x00\x5a\x59\x64\x78\x84\x00\x5a\x5a\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x79\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x71\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1d\x64\x7a\x84\x00\x5a\x5b\x64\x7b\x84\x00\x5a\x5c\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x7c\x64\x7d\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x7e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1d\x64\x7f\x84\x00\x5a\x5d\x64\x80\x84\x00\x5a\x5e\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x81\x64\x82\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x02\x6a\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x83\x6b\x03\x00\x00\x00\x00\x72\x26\x64\x96\x64\x86\x84\x01\x5a\x60\x02\x00\x47\x00\x64\x87\x84\x00\x64\x88\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x61\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x89\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x97\x64\x8a\x84\x01\x5a\x62\x64\x8b\x84\x00\x5a\x63\x02\x00\x65\x0e\x64\x8c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x09\x65\x63\x5a\x64\x64\x8c\x65\x64\x5f\x65\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x47\x00\x64\x8d\x84\x00\x64\x8e\x65\x01\x6a\x66\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x67\x65\x10\x64\x0d\x6b\x02\x00\x00\x00\x00\x72\x12\x02\x00\x47\x00\x64\x8f\x84\x00\x64\x90\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x68\x64\x91\x84\x00\x5a\x69\x64\x02\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void os_do_patchups(void) { +} + +PyObject * +_Py_get_os_toplevel(void) +{ + os_do_patchups(); + return Py_NewRef((PyObject *) &os_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2999]; + } +site_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2998, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x70\x70\x65\x6e\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x73\x20\x66\x6f\x72\x20\x74\x68\x69\x72\x64\x2d\x70\x61\x72\x74\x79\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2e\x0a\x0a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x0a\x2a\x20\x54\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x64\x75\x72\x69\x6e\x67\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x61\x74\x69\x6f\x6e\x2e\x20\x2a\x0a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x0a\x0a\x54\x68\x69\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x6e\x64\x20\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x70\x61\x74\x68\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x2e\x20\x20\x4f\x6e\x0a\x55\x6e\x69\x78\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x4d\x61\x63\x20\x4f\x53\x58\x29\x2c\x20\x69\x74\x20\x73\x74\x61\x72\x74\x73\x20\x77\x69\x74\x68\x20\x73\x79\x73\x2e\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x0a\x73\x79\x73\x2e\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x28\x69\x66\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x29\x20\x61\x6e\x64\x20\x61\x70\x70\x65\x6e\x64\x73\x0a\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x3c\x76\x65\x72\x73\x69\x6f\x6e\x3e\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x2e\x0a\x4f\x6e\x20\x6f\x74\x68\x65\x72\x20\x70\x6c\x61\x74\x66\x6f\x72\x6d\x73\x20\x28\x73\x75\x63\x68\x20\x61\x73\x20\x57\x69\x6e\x64\x6f\x77\x73\x29\x2c\x20\x69\x74\x20\x74\x72\x69\x65\x73\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x0a\x70\x72\x65\x66\x69\x78\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x61\x73\x20\x77\x65\x6c\x6c\x20\x61\x73\x20\x77\x69\x74\x68\x20\x6c\x69\x62\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x61\x70\x70\x65\x6e\x64\x65\x64\x2e\x20\x20\x54\x68\x65\x0a\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x20\x69\x66\x20\x74\x68\x65\x79\x20\x65\x78\x69\x73\x74\x2c\x20\x61\x72\x65\x20\x61\x70\x70\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2c\x20\x61\x6e\x64\x0a\x61\x6c\x73\x6f\x20\x69\x6e\x73\x70\x65\x63\x74\x65\x64\x20\x66\x6f\x72\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x73\x2e\x0a\x0a\x49\x66\x20\x61\x20\x66\x69\x6c\x65\x20\x6e\x61\x6d\x65\x64\x20\x22\x70\x79\x76\x65\x6e\x76\x2e\x63\x66\x67\x22\x20\x65\x78\x69\x73\x74\x73\x20\x6f\x6e\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x62\x6f\x76\x65\x20\x73\x79\x73\x2e\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x2c\x0a\x73\x79\x73\x2e\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x20\x73\x79\x73\x2e\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x61\x72\x65\x20\x73\x65\x74\x20\x74\x6f\x20\x74\x68\x61\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x0a\x69\x74\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x63\x68\x65\x63\x6b\x65\x64\x20\x66\x6f\x72\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x28\x73\x79\x73\x2e\x62\x61\x73\x65\x5f\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x0a\x73\x79\x73\x2e\x62\x61\x73\x65\x5f\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\x65\x20\x74\x68\x65\x20\x22\x72\x65\x61\x6c\x22\x20\x70\x72\x65\x66\x69\x78\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x0a\x69\x6e\x73\x74\x61\x6c\x6c\x61\x74\x69\x6f\x6e\x29\x2e\x20\x49\x66\x20\x22\x70\x79\x76\x65\x6e\x76\x2e\x63\x66\x67\x22\x20\x28\x61\x20\x62\x6f\x6f\x74\x73\x74\x72\x61\x70\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x29\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x0a\x74\x68\x65\x20\x6b\x65\x79\x20\x22\x69\x6e\x63\x6c\x75\x64\x65\x2d\x73\x79\x73\x74\x65\x6d\x2d\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x22\x20\x73\x65\x74\x20\x74\x6f\x20\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x6f\x74\x68\x65\x72\x20\x74\x68\x61\x6e\x20\x22\x66\x61\x6c\x73\x65\x22\x0a\x28\x63\x61\x73\x65\x2d\x69\x6e\x73\x65\x6e\x73\x69\x74\x69\x76\x65\x29\x2c\x20\x74\x68\x65\x20\x73\x79\x73\x74\x65\x6d\x2d\x6c\x65\x76\x65\x6c\x20\x70\x72\x65\x66\x69\x78\x65\x73\x20\x77\x69\x6c\x6c\x20\x73\x74\x69\x6c\x6c\x20\x61\x6c\x73\x6f\x20\x62\x65\x0a\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x3b\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x74\x68\x65\x79\x20\x77\x6f\x6e\x27\x74\x2e\x0a\x0a\x41\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x20\x69\x66\x20\x74\x68\x65\x79\x20\x65\x78\x69\x73\x74\x2c\x20\x61\x72\x65\x0a\x61\x70\x70\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2c\x20\x61\x6e\x64\x20\x61\x6c\x73\x6f\x20\x69\x6e\x73\x70\x65\x63\x74\x65\x64\x20\x66\x6f\x72\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x0a\x66\x69\x6c\x65\x73\x2e\x0a\x0a\x41\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x20\x69\x73\x20\x61\x20\x66\x69\x6c\x65\x20\x77\x68\x6f\x73\x65\x20\x6e\x61\x6d\x65\x20\x68\x61\x73\x20\x74\x68\x65\x20\x66\x6f\x72\x6d\x0a\x3c\x70\x61\x63\x6b\x61\x67\x65\x3e\x2e\x70\x74\x68\x3b\x20\x69\x74\x73\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x20\x61\x72\x65\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x28\x6f\x6e\x65\x20\x70\x65\x72\x20\x6c\x69\x6e\x65\x29\x0a\x74\x6f\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2e\x20\x20\x4e\x6f\x6e\x2d\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x28\x6f\x72\x0a\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x29\x20\x61\x72\x65\x20\x6e\x65\x76\x65\x72\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x3b\x20\x6e\x6f\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x0a\x73\x79\x73\x2e\x70\x61\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x6f\x6e\x63\x65\x2e\x20\x20\x42\x6c\x61\x6e\x6b\x20\x6c\x69\x6e\x65\x73\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x73\x20\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x0a\x27\x23\x27\x20\x61\x72\x65\x20\x73\x6b\x69\x70\x70\x65\x64\x2e\x20\x4c\x69\x6e\x65\x73\x20\x73\x74\x61\x72\x74\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x27\x69\x6d\x70\x6f\x72\x74\x27\x20\x61\x72\x65\x20\x65\x78\x65\x63\x75\x74\x65\x64\x2e\x0a\x0a\x46\x6f\x72\x20\x65\x78\x61\x6d\x70\x6c\x65\x2c\x20\x73\x75\x70\x70\x6f\x73\x65\x20\x73\x79\x73\x2e\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x20\x73\x79\x73\x2e\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x61\x72\x65\x20\x73\x65\x74\x20\x74\x6f\x0a\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x20\x61\x6e\x64\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x32\x2e\x35\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x0a\x77\x69\x74\x68\x20\x74\x68\x72\x65\x65\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x20\x66\x6f\x6f\x2c\x20\x62\x61\x72\x20\x61\x6e\x64\x20\x73\x70\x61\x6d\x2c\x20\x61\x6e\x64\x20\x74\x77\x6f\x20\x70\x61\x74\x68\x0a\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x73\x2c\x20\x66\x6f\x6f\x2e\x70\x74\x68\x20\x61\x6e\x64\x20\x62\x61\x72\x2e\x70\x74\x68\x2e\x20\x20\x41\x73\x73\x75\x6d\x65\x20\x66\x6f\x6f\x2e\x70\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x74\x68\x65\x0a\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x3a\x0a\x0a\x20\x20\x23\x20\x66\x6f\x6f\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x0a\x20\x20\x66\x6f\x6f\x0a\x20\x20\x62\x61\x72\x0a\x20\x20\x62\x6c\x65\x74\x63\x68\x0a\x0a\x61\x6e\x64\x20\x62\x61\x72\x2e\x70\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x3a\x0a\x0a\x20\x20\x23\x20\x62\x61\x72\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x0a\x20\x20\x62\x61\x72\x0a\x0a\x54\x68\x65\x6e\x20\x74\x68\x65\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2c\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x6f\x72\x64\x65\x72\x3a\x0a\x0a\x20\x20\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x32\x2e\x35\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x2f\x62\x61\x72\x0a\x20\x20\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x32\x2e\x35\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x2f\x66\x6f\x6f\x0a\x0a\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x62\x6c\x65\x74\x63\x68\x20\x69\x73\x20\x6f\x6d\x69\x74\x74\x65\x64\x20\x62\x65\x63\x61\x75\x73\x65\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x65\x78\x69\x73\x74\x3b\x20\x62\x61\x72\x20\x70\x72\x65\x63\x65\x64\x65\x73\x20\x66\x6f\x6f\x0a\x62\x65\x63\x61\x75\x73\x65\x20\x62\x61\x72\x2e\x70\x74\x68\x20\x63\x6f\x6d\x65\x73\x20\x61\x6c\x70\x68\x61\x62\x65\x74\x69\x63\x61\x6c\x6c\x79\x20\x62\x65\x66\x6f\x72\x65\x20\x66\x6f\x6f\x2e\x70\x74\x68\x3b\x20\x61\x6e\x64\x20\x73\x70\x61\x6d\x20\x69\x73\x0a\x6f\x6d\x69\x74\x74\x65\x64\x20\x62\x65\x63\x61\x75\x73\x65\x20\x69\x74\x20\x69\x73\x20\x6e\x6f\x74\x20\x6d\x65\x6e\x74\x69\x6f\x6e\x65\x64\x20\x69\x6e\x20\x65\x69\x74\x68\x65\x72\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x2e\x0a\x0a\x54\x68\x65\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x65\x64\x20\x74\x6f\x20\x65\x6e\x61\x62\x6c\x65\x0a\x63\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x20\x66\x6f\x72\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x61\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x69\x74\x2e\x20\x20\x54\x68\x69\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x6f\x76\x65\x72\x72\x69\x64\x64\x65\x6e\x20\x69\x6e\x0a\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x2c\x20\x75\x73\x65\x72\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x20\x6f\x72\x20\x50\x59\x54\x48\x4f\x4e\x53\x54\x41\x52\x54\x55\x50\x2e\x20\x20\x53\x74\x61\x72\x74\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x69\x6e\x0a\x69\x73\x6f\x6c\x61\x74\x65\x64\x20\x6d\x6f\x64\x65\x20\x28\x2d\x49\x29\x20\x64\x69\x73\x61\x62\x6c\x65\x73\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x41\x66\x74\x65\x72\x20\x74\x68\x65\x73\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x2c\x20\x61\x6e\x20\x61\x74\x74\x65\x6d\x70\x74\x20\x69\x73\x20\x6d\x61\x64\x65\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x0a\x6e\x61\x6d\x65\x64\x20\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x2c\x20\x77\x68\x69\x63\x68\x20\x63\x61\x6e\x20\x70\x65\x72\x66\x6f\x72\x6d\x20\x61\x72\x62\x69\x74\x72\x61\x72\x79\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x0a\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x63\x75\x73\x74\x6f\x6d\x69\x7a\x61\x74\x69\x6f\x6e\x73\x2e\x20\x20\x49\x66\x20\x74\x68\x69\x73\x20\x69\x6d\x70\x6f\x72\x74\x20\x66\x61\x69\x6c\x73\x20\x77\x69\x74\x68\x20\x61\x6e\x0a\x49\x6d\x70\x6f\x72\x74\x45\x72\x72\x6f\x72\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x2c\x20\x69\x74\x20\x69\x73\x20\x73\x69\x6c\x65\x6e\x74\x6c\x79\x20\x69\x67\x6e\x6f\x72\x65\x64\x2e\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +site_toplevel_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_verbose._ascii.ob_base, + & const_str_print._ascii.ob_base, + &_Py_ID(stderr), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +site_toplevel_consts_3_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str__trace = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_trace", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[53]; + } +site_toplevel_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 52, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x07\x0a\x84\x79\xd4\x07\x18\xf0\x00\x01\x05\x28\xdd\x08\x0d\x88\x67\x9d\x43\x9c\x4a\xd0\x08\x27\xd1\x08\x27\xd4\x08\x27\xd0\x08\x27\xd0\x08\x27\xd0\x08\x27\xf0\x03\x01\x05\x28\xf0\x00\x01\x05\x28", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +site_toplevel_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_message._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(98) +site_toplevel_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & site_toplevel_consts_3_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 92, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str__trace._ascii.ob_base, + .co_qualname = & const_str__trace._ascii.ob_base, + .co_linetable = & site_toplevel_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1d\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xac\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +site_toplevel_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + &_Py_ID(path), + &_Py_ID(join), + & const_str_abspath._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_normcase._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_makepath = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "makepath", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[102]; + } +site_toplevel_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 101, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0a\x0c\x8c\x27\x8c\x2c\x98\x05\xd0\x0a\x1e\x80\x43\xf0\x02\x03\x05\x0d\xdd\x0e\x10\x8c\x67\x8f\x6f\x8a\x6f\x98\x63\xd1\x0e\x22\xd4\x0e\x22\x88\x03\x88\x03\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xe0\x0b\x0e\x95\x02\x94\x07\xd7\x10\x20\xd2\x10\x20\xa0\x13\xd1\x10\x25\xd4\x10\x25\xd0\x0b\x25\xd0\x04\x25", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +site_toplevel_consts_4_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x95\x1f\x35\x00\xb5\x0a\x41\x02\x03\xc1\x01\x01\x41\x02\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_paths._ascii.ob_base, + & const_str_dir._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(204) +site_toplevel_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 102, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 97, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_makepath._ascii.ob_base, + .co_qualname = & const_str_makepath._ascii.ob_base, + .co_linetable = & site_toplevel_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x8e\x00\x7d\x01\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x10\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[70]; + } +site_toplevel_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 69, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set all module __file__ and __cached__ attributes to an absolute path", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_5_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__frozen_importlib._ascii.ob_base, + & const_str__frozen_importlib_external._ascii.ob_base, + }, + }, +}; +// TODO: The above tuple should be a frozenset +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & site_toplevel_consts_5_consts_0._ascii.ob_base, + Py_None, + & site_toplevel_consts_5_consts_2._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +site_toplevel_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & const_str_set._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + &_Py_ID(values), + &_Py_ID(__loader__), + &_Py_ID(__module__), + & const_str_AttributeError._ascii.ob_base, + &_Py_ID(__spec__), + & const_str_loader._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_abspath._ascii.ob_base, + &_Py_ID(__file__), + & const_str_OSError._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str___cached__._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_abs_paths = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "abs_paths", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[308]; + } +site_toplevel_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 307, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0d\x10\x95\x13\x94\x1b\xd7\x11\x23\xd2\x11\x23\xd1\x11\x25\xd4\x11\x25\xd1\x0d\x26\xd4\x0d\x26\xf0\x00\x12\x05\x11\xf0\x00\x12\x05\x11\x88\x01\xd8\x18\x1c\x88\x0d\xf0\x02\x06\x09\x15\xd8\x1c\x1d\x9c\x4c\xd4\x1c\x33\x88\x4d\x88\x4d\xf8\xdd\x0f\x1d\xf0\x00\x04\x09\x15\xf0\x00\x04\x09\x15\xf0\x00\x04\x09\x15\xf0\x02\x03\x0d\x15\xd8\x20\x21\xa4\x0a\xd4\x20\x31\xd4\x20\x3c\x90\x0d\x90\x0d\xf8\xdd\x13\x21\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf8\xf0\x07\x04\x09\x15\xf8\xf8\xf8\xf0\x0a\x00\x0c\x19\xd0\x20\x53\xd0\x0b\x53\xd0\x0b\x53\xd8\x0c\x14\xf0\x02\x03\x09\x11\xdd\x19\x1b\x9c\x17\x9f\x1f\x9a\x1f\xa8\x11\xac\x1a\xd1\x19\x34\xd4\x19\x34\x88\x41\x8c\x4a\x88\x4a\xf8\xdd\x10\x1e\xa5\x07\xad\x19\xd0\x0f\x33\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x04\x03\x09\x11\xdd\x1b\x1d\x9c\x37\x9f\x3f\x9a\x3f\xa8\x31\xac\x3c\xd1\x1b\x38\xd4\x1b\x38\x88\x41\x8c\x4c\x88\x4c\xf8\xdd\x10\x1e\xa5\x07\xad\x19\xd0\x0f\x33\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x23\x12\x05\x11\xf0\x00\x12\x05\x11", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[88]; + } +site_toplevel_consts_5_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 87, + }, + .ob_shash = -1, + .ob_sval = "\xb1\x0c\x3e\x02\xbe\x0a\x41\x2e\x05\xc1\x09\x11\x41\x1b\x04\xc1\x1a\x01\x41\x2e\x05\xc1\x1b\x0a\x41\x28\x07\xc1\x25\x02\x41\x2e\x05\xc1\x27\x01\x41\x28\x07\xc1\x28\x03\x41\x2e\x05\xc1\x2d\x01\x41\x2e\x05\xc1\x37\x29\x42\x21\x02\xc2\x21\x17\x42\x3b\x05\xc2\x3a\x01\x42\x3b\x05\xc2\x3f\x29\x43\x29\x02\xc3\x29\x17\x44\x03\x05\xc4\x02\x01\x44\x03\x05", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_loader_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "loader_module", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_m._ascii.ob_base, + & const_str_loader_module._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(528) +site_toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 264, + }, + .co_consts = & site_toplevel_consts_5_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_5_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 106, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_abs_paths._ascii.ob_base, + .co_qualname = & const_str_abs_paths._ascii.ob_base, + .co_linetable = & site_toplevel_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\xd9\x7d\x00\x64\x01\x7d\x01\x09\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x33\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x26\x01\x00\x09\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x10\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x64\x02\x76\x01\x72\x01\x8c\x4a\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x1d\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x8c\xbd\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x03\x01\x00\x59\x00\x8c\xd6\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[76]; + } +site_toplevel_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 75, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x52\x65\x6d\x6f\x76\x65\x20\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x66\x72\x6f\x6d\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x20\x61\x6c\x6f\x6e\x67\x20\x77\x69\x74\x68\x20\x6d\x61\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x20\x20\x20\x20\x61\x62\x73\x6f\x6c\x75\x74\x65", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & site_toplevel_consts_6_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +site_toplevel_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_set._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(path), + & const_str_makepath._ascii.ob_base, + &_Py_ID(append), + &_Py_ID(add), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_removeduppaths = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "removeduppaths", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[119]; + } +site_toplevel_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 118, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x09\x0b\x80\x41\xdd\x12\x15\x91\x25\x94\x25\x80\x4b\xdd\x0f\x12\x8c\x78\xf0\x00\x07\x05\x25\xf0\x00\x07\x05\x25\x88\x03\xf5\x08\x00\x18\x20\xa0\x03\x91\x7d\x94\x7d\x89\x0c\x88\x03\x88\x57\xd8\x0b\x12\x98\x2b\xd0\x0b\x25\xd0\x0b\x25\xd8\x0c\x0d\x8f\x48\x8a\x48\x90\x53\x89\x4d\x8c\x4d\x88\x4d\xd8\x0c\x17\x8f\x4f\x8a\x4f\x98\x47\xd1\x0c\x24\xd4\x0c\x24\xd0\x0c\x24\xf8\xd8\x12\x13\x85\x43\x84\x48\x88\x51\x88\x51\x88\x51\x81\x4b\xd8\x0b\x16\xd0\x04\x16", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_L = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "L", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_known_paths = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "known_paths", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_dircase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dircase", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +site_toplevel_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_L._ascii.ob_base, + & const_str_known_paths._ascii.ob_base, + & const_str_dir._ascii.ob_base, + & const_str_dircase._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(230) +site_toplevel_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 115, + }, + .co_consts = & site_toplevel_consts_6_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 129, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_removeduppaths._ascii.ob_base, + .co_qualname = & const_str_removeduppaths._ascii.ob_base, + .co_linetable = & site_toplevel_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7d\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x42\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x03\x7c\x01\x76\x01\x72\x2a\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x43\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x01\x85\x02\x3c\x00\x00\x00\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[70]; + } +site_toplevel_consts_7_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 69, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return a set containing all existing file system items from sys.path.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +site_toplevel_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & site_toplevel_consts_7_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +site_toplevel_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_set._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(path), + & const_str_os._ascii.ob_base, + & const_str_exists._ascii.ob_base, + & const_str_makepath._ascii.ob_base, + &_Py_ID(add), + & const_str_TypeError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__init_pathinfo = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_init_pathinfo", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[124]; + } +site_toplevel_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 123, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x08\x0b\x89\x05\x8c\x05\x80\x41\xdd\x10\x13\x94\x08\xf0\x00\x06\x05\x15\xf0\x00\x06\x05\x15\x88\x04\xf0\x02\x05\x09\x15\xdd\x0f\x11\x8c\x77\x8f\x7e\x8a\x7e\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x02\x0d\x20\xdd\x1e\x26\xa0\x74\x99\x6e\x9c\x6e\x91\x0b\x90\x01\x90\x38\xd8\x10\x11\x97\x05\x92\x05\x90\x68\x91\x0f\x94\x0f\x90\x0f\xf8\xf8\xdd\x0f\x18\xf0\x00\x01\x09\x15\xf0\x00\x01\x09\x15\xf0\x00\x01\x09\x15\xd8\x0c\x14\x88\x48\xf0\x03\x01\x09\x15\xf8\xf8\xf8\xe0\x0b\x0c\x80\x48", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +site_toplevel_consts_7_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\x9e\x41\x06\x41\x25\x02\xc1\x25\x0a\x41\x32\x05\xc1\x31\x01\x41\x32\x05", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_itemcase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "itemcase", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +site_toplevel_consts_7_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_d._ascii.ob_base, + & const_str_item._ascii.ob_base, + &_Py_ID(_), + & const_str_itemcase._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(238) +site_toplevel_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 119, + }, + .co_consts = & site_toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_7_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 148, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_7_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str__init_pathinfo._ascii.ob_base, + .co_qualname = & const_str__init_pathinfo._ascii.ob_base, + .co_linetable = & site_toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x59\x7d\x01\x09\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x27\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x4a\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x8c\x56\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[215]; + } +site_toplevel_consts_8_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 214, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x50\x72\x6f\x63\x65\x73\x73\x20\x61\x20\x2e\x70\x74\x68\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x69\x6e\x20\x74\x68\x65\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x46\x6f\x72\x20\x65\x61\x63\x68\x20\x6c\x69\x6e\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x2c\x20\x65\x69\x74\x68\x65\x72\x20\x63\x6f\x6d\x62\x69\x6e\x65\x20\x69\x74\x20\x77\x69\x74\x68\x20\x73\x69\x74\x65\x64\x69\x72\x20\x74\x6f\x20\x61\x20\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x61\x64\x64\x20\x74\x68\x61\x74\x20\x74\x6f\x20\x6b\x6e\x6f\x77\x6e\x5f\x70\x61\x74\x68\x73\x2c\x20\x6f\x72\x20\x65\x78\x65\x63\x75\x74\x65\x20\x69\x74\x20\x69\x66\x20\x69\x74\x20\x73\x74\x61\x72\x74\x73\x20\x77\x69\x74\x68\x20\x27\x69\x6d\x70\x6f\x72\x74\x20\x27\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_st_flags = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "st_flags", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_st_file_attributes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "st_file_attributes", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[28]; + } +site_toplevel_consts_8_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 27, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Skipping hidden .pth file: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +site_toplevel_consts_8_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Processing .pth file: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +site_toplevel_consts_8_consts_13_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x69\x6d\x70\x6f\x72\x74\x09", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_8_consts_13 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_18_consts_1_1._ascii.ob_base, + & site_toplevel_consts_8_consts_13_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[35]; + } +site_toplevel_consts_8_consts_14 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 34, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x72\x72\x6f\x72\x20\x70\x72\x6f\x63\x65\x73\x73\x69\x6e\x67\x20\x6c\x69\x6e\x65\x20\x7b\x3a\x64\x7d\x20\x6f\x66\x20\x7b\x7d\x3a\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +site_toplevel_consts_8_consts_17 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +site_toplevel_consts_8_consts_18 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x0a\x52\x65\x6d\x61\x69\x6e\x64\x65\x72\x20\x6f\x66\x20\x66\x69\x6c\x65\x20\x69\x67\x6e\x6f\x72\x65\x64", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[19]; + }_object; + } +site_toplevel_consts_8_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 19, + }, + .ob_item = { + & site_toplevel_consts_8_consts_0._ascii.ob_base, + Py_None, + Py_True, + Py_False, + & const_str_st_flags._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & const_str_st_file_attributes._ascii.ob_base, + & site_toplevel_consts_8_consts_7._ascii.ob_base, + & site_toplevel_consts_8_consts_8._ascii.ob_base, + &_Py_ID(locale), + & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_18_consts_1_0._ascii.ob_base, + &_Py_STR(empty), + & site_toplevel_consts_8_consts_13._object.ob_base.ob_base, + & site_toplevel_consts_8_consts_14._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, + & site_toplevel_consts_8_consts_17._ascii.ob_base, + & site_toplevel_consts_8_consts_18._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_UF_HIDDEN = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UF_HIDDEN", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_FILE_ATTRIBUTE_HIDDEN = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_HIDDEN", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_strip = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "strip", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_traceback = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "traceback", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_format_exception = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "format_exception", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_exc_info = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exc_info", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[32]; + }_object; + } +site_toplevel_consts_8_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 32, + }, + .ob_item = { + & const_str__init_pathinfo._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(path), + &_Py_ID(join), + & const_str_lstat._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + &_Py_ID(getattr), + & const_str_stat._ascii.ob_base, + & const_str_UF_HIDDEN._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_HIDDEN._ascii.ob_base, + & const_str__trace._ascii.ob_base, + & const_str_io._ascii.ob_base, + &_Py_ID(TextIOWrapper), + & const_str_open_code._ascii.ob_base, + & const_str_enumerate._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + & const_str_strip._ascii.ob_base, + & const_str_exec._ascii.ob_base, + & const_str_rstrip._ascii.ob_base, + & const_str_makepath._ascii.ob_base, + & const_str_exists._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(append), + &_Py_ID(add), + & const_str_Exception._ascii.ob_base, + & const_str_print._ascii.ob_base, + & const_str_format._ascii.ob_base, + &_Py_ID(stderr), + & const_str_traceback._ascii.ob_base, + & const_str_format_exception._ascii.ob_base, + & const_str_exc_info._ascii.ob_base, + & const_str_splitlines._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_addpackage = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "addpackage", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[825]; + } +site_toplevel_consts_8_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 824, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x08\x13\xd0\x07\x1a\xdd\x16\x24\xd1\x16\x26\xd4\x16\x26\x88\x0b\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x15\x88\x05\xdd\x0f\x11\x8c\x77\x8f\x7c\x8a\x7c\x98\x47\xa0\x54\xd1\x0f\x2a\xd4\x0f\x2a\x80\x48\xf0\x02\x03\x05\x0f\xdd\x0d\x0f\x8c\x58\x90\x68\xd1\x0d\x1f\xd4\x0d\x1f\x88\x02\x88\x02\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xd8\x08\x0e\x88\x06\x88\x06\xf0\x03\x01\x05\x0f\xf8\xf8\xf8\xe5\x09\x10\x90\x12\x90\x5a\xa0\x11\xd1\x09\x23\xd4\x09\x23\xa5\x64\xa4\x6e\xd1\x09\x34\xf0\x00\x03\x05\x0f\xdd\x09\x10\x90\x12\xd0\x15\x29\xa8\x31\xd1\x09\x2d\xd4\x09\x2d\xb5\x04\xd4\x30\x4a\xd1\x09\x4a\xf0\x03\x03\x05\x0f\xe5\x08\x0e\xd0\x0f\x39\xa8\x58\xd0\x0f\x39\xd0\x0f\x39\xd1\x08\x3a\xd4\x08\x3a\xd0\x08\x3a\xd8\x08\x0e\x88\x06\xdd\x04\x0a\xd0\x0b\x30\xa0\x48\xd0\x0b\x30\xd0\x0b\x30\xd1\x04\x31\xd4\x04\x31\xd0\x04\x31\xf0\x02\x05\x05\x0f\xf5\x06\x00\x0d\x0f\xd4\x0c\x1c\x9d\x52\x9c\x5c\xa8\x28\xd1\x1d\x33\xd4\x1d\x33\xb8\x68\xd0\x0c\x47\xd1\x0c\x47\xd4\x0c\x47\x88\x01\x88\x01\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xd8\x08\x0e\x88\x06\x88\x06\xf0\x03\x01\x05\x0f\xf8\xf8\xf8\xe0\x09\x0a\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xdd\x17\x20\xa0\x11\x91\x7c\x94\x7c\xf0\x00\x16\x09\x16\xf1\x00\x16\x09\x16\x89\x47\x88\x41\x88\x74\xd8\x0f\x13\x8f\x7f\x8a\x7f\x98\x73\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x01\x0d\x19\xd8\x10\x18\xd8\x0f\x13\x8f\x7a\x8a\x7a\x89\x7c\x8c\x7c\x98\x72\xd2\x0f\x21\xd0\x0f\x21\xd8\x10\x18\xf0\x02\x11\x0d\x16\xd8\x13\x17\x97\x3f\x92\x3f\xd0\x23\x3a\xd1\x13\x3b\xd4\x13\x3b\xf0\x00\x02\x11\x1d\xdd\x14\x18\x98\x14\x91\x4a\x94\x4a\x90\x4a\xd8\x14\x1c\xd8\x17\x1b\x97\x7b\x92\x7b\x91\x7d\x94\x7d\x90\x04\xdd\x1f\x27\xa8\x07\xb0\x14\xd1\x1f\x36\xd4\x1f\x36\x91\x0c\x90\x03\x90\x57\xd8\x17\x1e\xa0\x2b\xd0\x17\x2d\xd0\x17\x2d\xb5\x22\xb4\x27\xb7\x2e\xb2\x2e\xc0\x13\xd1\x32\x45\xd4\x32\x45\xd0\x17\x2d\xdd\x14\x17\x94\x48\x97\x4f\x92\x4f\xa0\x43\xd1\x14\x28\xd4\x14\x28\xd0\x14\x28\xd8\x14\x1f\x97\x4f\x92\x4f\xa0\x47\xd1\x14\x2c\xd4\x14\x2c\xd0\x14\x2c\xf8\xf8\xdd\x13\x1c\xf0\x00\x08\x0d\x16\xf0\x00\x08\x0d\x16\xf0\x00\x08\x0d\x16\xdd\x10\x15\xd0\x16\x3b\xd7\x16\x42\xd2\x16\x42\xc0\x31\xc0\x51\xc1\x33\xc8\x08\xd1\x16\x51\xd4\x16\x51\xdd\x1b\x1e\x9c\x3a\xf0\x03\x01\x11\x27\xf1\x00\x01\x11\x27\xf4\x00\x01\x11\x27\xf0\x00\x01\x11\x27\xe0\x10\x20\xd0\x10\x20\xd0\x10\x20\xd0\x10\x20\xd8\x1e\x38\x98\x69\xd4\x1e\x38\xbd\x23\xbc\x2c\xb9\x2e\xbc\x2e\xd0\x1e\x49\xf0\x00\x02\x11\x3a\xf0\x00\x02\x11\x3a\x90\x46\xd8\x20\x26\xd7\x20\x31\xd2\x20\x31\xd1\x20\x33\xd4\x20\x33\xf0\x00\x01\x15\x3a\xf0\x00\x01\x15\x3a\x98\x04\xdd\x18\x1d\x98\x64\xa0\x34\x99\x69\xad\x63\xac\x6a\xd0\x18\x39\xd1\x18\x39\xd4\x18\x39\xd0\x18\x39\xd0\x18\x39\xf0\x03\x01\x15\x3a\xe5\x10\x15\xd0\x16\x33\xbd\x23\xbc\x2a\xd0\x10\x45\xd1\x10\x45\xd4\x10\x45\xd0\x10\x45\xd8\x10\x15\x90\x05\x90\x05\xf0\x11\x08\x0d\x16\xf8\xf8\xf8\xf0\x1f\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf1\x00\x17\x05\x16\xf4\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf8\xf8\xf8\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x30\x00\x08\x0d\xf0\x00\x01\x05\x1b\xd8\x16\x1a\x88\x0b\xd8\x0b\x16\xd0\x04\x16", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[105]; + } +site_toplevel_consts_8_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 104, + }, + .ob_shash = -1, + .ob_sval = "\xb7\x14\x41\x0c\x00\xc1\x0c\x0a\x41\x1a\x03\xc1\x19\x01\x41\x1a\x03\xc3\x00\x28\x43\x29\x00\xc3\x29\x0a\x43\x37\x03\xc3\x36\x01\x43\x37\x03\xc3\x3c\x41\x05\x4a\x27\x03\xc5\x02\x24\x47\x26\x04\xc5\x26\x01\x4a\x27\x03\xc5\x27\x41\x3e\x47\x26\x04\xc7\x25\x01\x4a\x27\x03\xc7\x26\x42\x2e\x4a\x18\x07\xca\x14\x03\x4a\x27\x03\xca\x17\x01\x4a\x18\x07\xca\x18\x03\x4a\x27\x03\xca\x27\x04\x4a\x2b\x07\xca\x2e\x01\x4a\x2b\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_sitedir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sitedir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_record = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "record", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +site_toplevel_consts_8_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_sitedir._ascii.ob_base, + &_Py_ID(name), + & const_str_known_paths._ascii.ob_base, + &_Py_ID(reset), + & const_str_fullname._ascii.ob_base, + & const_str_st._ascii.ob_base, + & const_str_f._ascii.ob_base, + & const_str_n._ascii.ob_base, + &_Py_ID(line), + & const_str_dir._ascii.ob_base, + & const_str_dircase._ascii.ob_base, + & const_str_traceback._ascii.ob_base, + & const_str_record._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(1392) +site_toplevel_consts_8 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 696, + }, + .co_consts = & site_toplevel_consts_8_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_8_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_8_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 9, + .co_firstlineno = 161, + .co_nlocalsplus = 13, + .co_nlocals = 13, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_8_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_addpackage._ascii.ob_base, + .co_qualname = & const_str_addpackage._ascii.ob_base, + .co_linetable = & site_toplevel_consts_8_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x80\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x02\x7d\x03\x6e\x02\x64\x03\x7d\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x09\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x11\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x04\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x01\x00\x00\x73\x1e\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x06\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x01\x00\x00\x72\x14\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x04\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x04\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xac\x0a\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x6e\x11\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x06\x35\x00\x01\x00\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x90\x01\x5d\x8d\x5c\x02\x00\x00\x7d\x07\x7d\x08\x7c\x08\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x01\x8c\x1c\x7c\x08\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x6b\x02\x00\x00\x00\x00\x72\x01\x8c\x35\x09\x00\x7c\x08\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x5b\x7c\x08\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x74\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x7c\x0a\x7c\x02\x76\x01\x72\x53\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x34\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\xa0\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xda\x23\x00\x74\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\xa8\x01\x00\x74\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0e\xa0\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x64\x0f\x7a\x00\x00\x00\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x10\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x05\x64\x01\x6c\x1c\x7d\x0b\x02\x00\x7c\x0b\x6a\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x74\x2b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1e\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x00\x44\x00\x5d\x37\x7d\x0c\x7c\x0c\xa0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x20\x7d\x08\x74\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\x7c\x08\x7a\x00\x00\x00\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x10\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x21\x8c\x38\x74\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x12\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x10\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x01\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x03\x72\x02\x64\x01\x7d\x02\x7c\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[85]; + } +site_toplevel_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 84, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x64\x64\x20\x27\x73\x69\x74\x65\x64\x69\x72\x27\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x20\x69\x66\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x61\x6e\x64\x20\x68\x61\x6e\x64\x6c\x65\x20\x2e\x70\x74\x68\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x0a\x20\x20\x20\x20\x27\x73\x69\x74\x65\x64\x69\x72\x27", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +site_toplevel_consts_9_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Adding directory: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +site_toplevel_consts_9_consts_5_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ".pth", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_9_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & site_toplevel_consts_9_consts_5_consts_0._ascii.ob_base, + &_Py_STR(dot), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_9_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_endswith._ascii.ob_base, + & const_str_startswith._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +site_toplevel_consts_9_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "addsitedir..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[85]; + } +site_toplevel_consts_9_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 84, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\x90\x64\xd8\x10\x14\x97\x0d\x92\x0d\x98\x66\xd1\x10\x25\xd4\x10\x25\xf0\x03\x01\x0d\x44\x01\xd8\x2e\x32\xaf\x6f\xaa\x6f\xb8\x63\xd1\x2e\x42\xd4\x2e\x42\xf0\x03\x01\x0d\x44\x01\x88\x54\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_9_consts_5_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + &_Py_ID(name), + }, + }, +}; +static + struct _PyCode_DEF(102) +site_toplevel_consts_9_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 51, + }, + .co_consts = & site_toplevel_consts_9_consts_5_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_9_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 233, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_9_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & site_toplevel_consts_9_consts_5_qualname._ascii.ob_base, + .co_linetable = & site_toplevel_consts_9_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x2e\x7d\x01\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x17\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x2c\x7c\x01\x91\x02\x8c\x2f\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +site_toplevel_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & site_toplevel_consts_9_consts_0._ascii.ob_base, + & site_toplevel_consts_9_consts_1._ascii.ob_base, + Py_None, + Py_True, + Py_False, + & site_toplevel_consts_9_consts_5.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +site_toplevel_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + & const_str__trace._ascii.ob_base, + & const_str__init_pathinfo._ascii.ob_base, + & const_str_makepath._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(path), + &_Py_ID(append), + &_Py_ID(add), + & const_str_os._ascii.ob_base, + & const_str_listdir._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_sorted._ascii.ob_base, + & const_str_addpackage._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_addsitedir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "addsitedir", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[275]; + } +site_toplevel_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 274, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x05\x0b\xd0\x0b\x2b\xa0\x07\xd0\x0b\x2b\xd0\x0b\x2b\xd1\x04\x2c\xd4\x04\x2c\xd0\x04\x2c\xd8\x07\x12\xd0\x07\x1a\xdd\x16\x24\xd1\x16\x26\xd4\x16\x26\x88\x0b\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x15\x88\x05\xdd\x1b\x23\xa0\x47\xd1\x1b\x2c\xd4\x1b\x2c\xd1\x04\x18\x80\x47\x88\x5b\xd8\x0b\x16\x98\x2b\xd0\x0b\x25\xd0\x0b\x25\xdd\x08\x0b\x8c\x08\x8f\x0f\x8a\x0f\x98\x07\xd1\x08\x20\xd4\x08\x20\xd0\x08\x20\xd8\x08\x13\x8f\x0f\x8a\x0f\x98\x0b\xd1\x08\x24\xd4\x08\x24\xd0\x08\x24\xf0\x02\x03\x05\x0f\xdd\x10\x12\x94\x0a\x98\x37\xd1\x10\x23\xd4\x10\x23\x88\x05\x88\x05\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xd8\x08\x0e\x88\x06\x88\x06\xf0\x03\x01\x05\x0f\xf8\xf8\xf8\xf0\x04\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\x98\x65\xf0\x00\x01\x0d\x44\x01\xf1\x00\x01\x0d\x44\x01\xf4\x00\x01\x0d\x44\x01\x80\x45\xe5\x10\x16\x90\x75\x91\x0d\x94\x0d\xf0\x00\x01\x05\x2f\xf0\x00\x01\x05\x2f\x88\x04\xdd\x08\x12\x90\x37\x98\x44\xa0\x2b\xd1\x08\x2e\xd4\x08\x2e\xd0\x08\x2e\xd0\x08\x2e\xd8\x07\x0c\xf0\x00\x01\x05\x1b\xd8\x16\x1a\x88\x0b\xd8\x0b\x16\xd0\x04\x16", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +site_toplevel_consts_9_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x33\x14\x42\x08\x00\xc2\x08\x0a\x42\x16\x03\xc2\x15\x01\x42\x16\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_sitedircase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sitedircase", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +site_toplevel_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_sitedir._ascii.ob_base, + & const_str_known_paths._ascii.ob_base, + &_Py_ID(reset), + & const_str_sitedircase._ascii.ob_base, + & const_str_names._ascii.ob_base, + &_Py_ID(name), + }, + }, +}; +static + struct _PyCode_DEF(412) +site_toplevel_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 206, + }, + .co_consts = & site_toplevel_consts_9_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_9_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 216, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_addsitedir._ascii.ob_base, + .co_qualname = & const_str_addsitedir._ascii.ob_base, + .co_linetable = & site_toplevel_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x80\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x03\x7d\x02\x6e\x02\x64\x04\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x03\x7c\x03\x7c\x01\x76\x01\x72\x34\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x11\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x05\x84\x00\x7c\x04\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x13\x7d\x05\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x05\x7c\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x14\x7c\x02\x72\x02\x64\x02\x7d\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[301]; + } +site_toplevel_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 300, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x68\x65\x63\x6b\x20\x69\x66\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x73\x61\x66\x65\x20\x66\x6f\x72\x20\x69\x6e\x63\x6c\x75\x73\x69\x6f\x6e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x65\x73\x74\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6c\x69\x6e\x65\x20\x66\x6c\x61\x67\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x29\x2c\x0a\x20\x20\x20\x20\x70\x72\x6f\x63\x65\x73\x73\x20\x75\x69\x64\x2f\x67\x69\x64\x20\x65\x71\x75\x61\x6c\x20\x74\x6f\x20\x65\x66\x66\x65\x63\x74\x69\x76\x65\x20\x75\x69\x64\x2f\x67\x69\x64\x2e\x0a\x0a\x20\x20\x20\x20\x4e\x6f\x6e\x65\x3a\x20\x44\x69\x73\x61\x62\x6c\x65\x64\x20\x66\x6f\x72\x20\x73\x65\x63\x75\x72\x69\x74\x79\x20\x72\x65\x61\x73\x6f\x6e\x73\x0a\x20\x20\x20\x20\x46\x61\x6c\x73\x65\x3a\x20\x44\x69\x73\x61\x62\x6c\x65\x64\x20\x62\x79\x20\x75\x73\x65\x72\x20\x28\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6c\x69\x6e\x65\x20\x6f\x70\x74\x69\x6f\x6e\x29\x0a\x20\x20\x20\x20\x54\x72\x75\x65\x3a\x20\x53\x61\x66\x65\x20\x61\x6e\x64\x20\x65\x6e\x61\x62\x6c\x65\x64\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_geteuid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "geteuid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_getgid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getgid", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_getegid = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getegid", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +site_toplevel_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & site_toplevel_consts_10_consts_0._ascii.ob_base, + Py_False, + & const_str_getuid._ascii.ob_base, + & const_str_geteuid._ascii.ob_base, + Py_None, + & const_str_getgid._ascii.ob_base, + & const_str_getegid._ascii.ob_base, + Py_True, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_no_user_site = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "no_user_site", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +site_toplevel_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_no_user_site._ascii.ob_base, + & const_str_hasattr._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_geteuid._ascii.ob_base, + & const_str_getuid._ascii.ob_base, + & const_str_getegid._ascii.ob_base, + & const_str_getgid._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str_check_enableusersite = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "check_enableusersite", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[154]; + } +site_toplevel_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 153, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x14\x00\x08\x0b\x84\x79\xd4\x07\x1d\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\xe5\x07\x0e\x8d\x72\x90\x38\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x03\x05\x18\xa5\x17\xad\x12\xa8\x59\xd1\x21\x37\xd4\x21\x37\xf0\x00\x03\x05\x18\xe5\x0b\x0d\x8c\x3a\x89\x3c\x8c\x3c\x9d\x32\x9c\x39\x99\x3b\x9c\x3b\xd2\x0b\x26\xd0\x0b\x26\xd8\x13\x17\x90\x34\xdd\x07\x0e\x8d\x72\x90\x38\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x03\x05\x18\xa5\x17\xad\x12\xa8\x59\xd1\x21\x37\xd4\x21\x37\xf0\x00\x03\x05\x18\xe5\x0b\x0d\x8c\x3a\x89\x3c\x8c\x3c\x9d\x32\x9c\x39\x99\x3b\x9c\x3b\xd2\x0b\x26\xd0\x0b\x26\xd8\x13\x17\x90\x34\xe0\x0b\x0f\x88\x34", +}; +static + struct _PyCode_DEF(380) +site_toplevel_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 190, + }, + .co_consts = & site_toplevel_consts_10_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 242, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_check_enableusersite._ascii.ob_base, + .co_qualname = & const_str_check_enableusersite._ascii.ob_base, + .co_linetable = & site_toplevel_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x3f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2a\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x3f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2a\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x64\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_PYTHONUSERBASE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "PYTHONUSERBASE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_emscripten = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "emscripten", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_wasi = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "wasi", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_11_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_emscripten._ascii.ob_base, + & const_str_vxworks._ascii.ob_base, + & const_str_wasi._ascii.ob_base, + }, + }, +}; +// TODO: The above tuple should be a frozenset +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +site_toplevel_consts_11_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_expanduser._ascii.ob_base, + &_Py_ID(join), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_joinuser = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "joinuser", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +site_toplevel_consts_11_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_getuserbase..joinuser", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +site_toplevel_consts_11_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x11\x8c\x77\xd7\x0f\x21\xd2\x0f\x21\xa5\x22\xa4\x27\xa4\x2c\xb0\x04\xd0\x22\x35\xd1\x0f\x36\xd4\x0f\x36\xd0\x08\x36", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +site_toplevel_consts_11_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_args._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(98) +site_toplevel_consts_11_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_11_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 23, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 283, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_11_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_joinuser._ascii.ob_base, + .co_qualname = & site_toplevel_consts_11_consts_3_qualname._ascii.ob_base, + .co_linetable = & site_toplevel_consts_11_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x8e\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_APPDATA = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "APPDATA", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_Python = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Python", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_Library = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Library", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +site_toplevel_consts_11_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ".local", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +site_toplevel_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + Py_None, + & const_str_PYTHONUSERBASE._ascii.ob_base, + & site_toplevel_consts_11_consts_2._object.ob_base.ob_base, + & site_toplevel_consts_11_consts_3.ob_base.ob_base, + & const_str_nt._ascii.ob_base, + & const_str_APPDATA._ascii.ob_base, + & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, + & const_str_Python._ascii.ob_base, + & const_str_darwin._ascii.ob_base, + & const_str_Library._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_53_consts_6_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & site_toplevel_consts_11_consts_12._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str__framework = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_framework", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +site_toplevel_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_environ._ascii.ob_base, + &_Py_ID(get), + & const_str_sys._ascii.ob_base, + & const_str_platform._ascii.ob_base, + &_Py_ID(name), + & const_str__framework._ascii.ob_base, + & const_str_version_info._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str__getuserbase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_getuserbase", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[217]; + } +site_toplevel_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 216, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0f\x11\x8c\x7a\x8f\x7e\x8a\x7e\xd0\x1e\x2e\xb0\x04\xd1\x0f\x35\xd4\x0f\x35\x80\x48\xd8\x07\x0f\xf0\x00\x01\x05\x18\xd8\x0f\x17\x88\x0f\xf5\x06\x00\x08\x0b\x84\x7c\xd0\x17\x38\xd0\x07\x38\xd0\x07\x38\xd8\x0f\x13\x88\x74\xf0\x04\x01\x05\x37\xf0\x00\x01\x05\x37\xf0\x00\x01\x05\x37\xf5\x06\x00\x08\x0a\x84\x77\x90\x24\x82\x7f\x80\x7f\xdd\x0f\x11\x8c\x7a\x8f\x7e\x8a\x7e\x98\x69\xd1\x0f\x28\xd4\x0f\x28\xd0\x0f\x2f\xa8\x43\x88\x04\xd8\x0f\x17\x88\x78\x98\x04\x98\x68\xd1\x0f\x27\xd4\x0f\x27\xd0\x08\x27\xe5\x07\x0a\x84\x7c\x90\x78\xd2\x07\x1f\xd0\x07\x1f\xa5\x43\xa4\x4e\xd0\x07\x1f\xd8\x0f\x17\x88\x78\x98\x03\x98\x59\xad\x03\xac\x0e\xd8\x18\x1f\xa5\x23\xd4\x22\x32\xb0\x32\xb0\x41\xb0\x32\xd4\x22\x36\xd1\x18\x36\xf1\x03\x01\x10\x38\xf4\x00\x01\x10\x38\xf0\x00\x01\x09\x38\xf0\x06\x00\x0c\x14\x88\x38\x90\x43\x98\x18\xd1\x0b\x22\xd4\x0b\x22\xd0\x04\x22", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_env_base = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "env_base", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_env_base._ascii.ob_base, + & const_str_joinuser._ascii.ob_base, + & const_str_base._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(404) +site_toplevel_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 202, + }, + .co_consts = & site_toplevel_consts_11_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 9, + .co_firstlineno = 274, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str__getuserbase._ascii.ob_base, + .co_qualname = & const_str__getuserbase._ascii.ob_base, + .co_linetable = & site_toplevel_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x72\x02\x7c\x00\x53\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x76\x00\x72\x02\x64\x00\x53\x00\x64\x03\x84\x00\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x6b\x02\x00\x00\x00\x00\x72\x2d\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x06\x7d\x02\x02\x00\x7c\x01\x7c\x02\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x39\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2d\x02\x00\x7c\x01\x64\x06\x64\x09\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x02\x00\x7c\x01\x64\x06\x64\x0c\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +site_toplevel_consts_12_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\\Python", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +site_toplevel_consts_12_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\\site-packages", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +site_toplevel_consts_12_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "/lib/python/site-packages", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +site_toplevel_consts_12_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "/lib/python", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +site_toplevel_consts_12_consts_11 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "/site-packages", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[12]; + }_object; + } +site_toplevel_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 12, + }, + .ob_item = { + Py_None, + & const_str_nt._ascii.ob_base, + &_Py_STR(dot), + &_Py_STR(empty), + & site_toplevel_consts_12_consts_4._ascii.ob_base, + & site_toplevel_consts_12_consts_5._ascii.ob_base, + & const_str_darwin._ascii.ob_base, + & site_toplevel_consts_12_consts_7._ascii.ob_base, + & site_toplevel_consts_12_consts_8._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & site_toplevel_consts_12_consts_11._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_winver = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "winver", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +site_toplevel_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_version_info._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(name), + & const_str_winver._ascii.ob_base, + &_Py_ID(replace), + & const_str_platform._ascii.ob_base, + & const_str__framework._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__get_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_path", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[142]; + } +site_toplevel_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 141, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x0e\x11\xd4\x0e\x1e\x80\x47\xe5\x07\x09\x84\x77\x90\x24\x82\x7f\x80\x7f\xdd\x14\x17\x94\x4a\xd7\x14\x26\xd2\x14\x26\xa0\x73\xa8\x42\xd1\x14\x2f\xd4\x14\x2f\x88\x09\xd8\x12\x1a\xd0\x0f\x3e\xd0\x0f\x3e\xa0\x49\xd0\x0f\x3e\xd0\x0f\x3e\xd0\x0f\x3e\xd0\x08\x3e\xe5\x07\x0a\x84\x7c\x90\x78\xd2\x07\x1f\xd0\x07\x1f\xa5\x43\xa4\x4e\xd0\x07\x1f\xd8\x12\x1a\xd0\x0f\x35\xd0\x0f\x35\xd0\x0f\x35\xd0\x08\x35\xe0\x0e\x16\xd0\x0b\x4a\xd0\x0b\x4a\xa0\x37\xa8\x31\xa4\x3a\xd0\x0b\x4a\xd0\x0b\x4a\xb0\x07\xb8\x01\xb4\x0a\xd0\x0b\x4a\xd0\x0b\x4a\xd0\x0b\x4a\xd0\x04\x4a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_userbase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "userbase", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_ver_nodot = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ver_nodot", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_12_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_userbase._ascii.ob_base, + &_Py_ID(version), + & const_str_ver_nodot._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(250) +site_toplevel_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 125, + }, + .co_consts = & site_toplevel_consts_12_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 298, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_12_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str__get_path._ascii.ob_base, + .co_qualname = & const_str__get_path._ascii.ob_base, + .co_linetable = & site_toplevel_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x28\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x9b\x00\x64\x04\x7c\x02\x9b\x00\x64\x05\x9d\x04\x53\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x11\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x72\x05\x7c\x00\x9b\x00\x64\x07\x9d\x02\x53\x00\x7c\x00\x9b\x00\x64\x08\x7c\x01\x64\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x7c\x01\x64\x0a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0b\x9d\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[204]; + } +site_toplevel_consts_13_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 203, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x60\x75\x73\x65\x72\x20\x62\x61\x73\x65\x60\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x60\x75\x73\x65\x72\x20\x62\x61\x73\x65\x60\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x73\x74\x6f\x72\x65\x20\x64\x61\x74\x61\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x0a\x20\x20\x20\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x60\x60\x55\x53\x45\x52\x5f\x42\x41\x53\x45\x60\x60\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64\x20\x79\x65\x74\x2c\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x61\x6c\x73\x6f\x20\x73\x65\x74\x0a\x20\x20\x20\x20\x69\x74\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +site_toplevel_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & site_toplevel_consts_13_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_USER_BASE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "USER_BASE", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_USER_BASE._ascii.ob_base, + & const_str__getuserbase._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_getuserbase = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getuserbase", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +site_toplevel_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x08\x11\xd0\x07\x18\xdd\x14\x20\x91\x4e\x94\x4e\x88\x09\xdd\x0b\x14\xd0\x04\x14", +}; +static + struct _PyCode_DEF(58) +site_toplevel_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 29, + }, + .co_consts = & site_toplevel_consts_13_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 311, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_getuserbase._ascii.ob_base, + .co_qualname = & const_str_getuserbase._ascii.ob_base, + .co_linetable = & site_toplevel_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0e\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[163]; + } +site_toplevel_consts_14_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 162, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x75\x73\x65\x72\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x60\x60\x55\x53\x45\x52\x5f\x53\x49\x54\x45\x60\x60\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64\x20\x79\x65\x74\x2c\x20\x74\x68\x69\x73\x0a\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x61\x6c\x73\x6f\x20\x73\x65\x74\x20\x69\x74\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_14_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & site_toplevel_consts_14_consts_0._ascii.ob_base, + Py_None, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_USER_SITE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "USER_SITE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_ENABLE_USER_SITE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ENABLE_USER_SITE", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +site_toplevel_consts_14_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_getuserbase._ascii.ob_base, + & const_str_USER_SITE._ascii.ob_base, + & const_str_ENABLE_USER_SITE._ascii.ob_base, + & const_str__get_path._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str_getusersitepackages = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getusersitepackages", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[54]; + } +site_toplevel_consts_14_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 53, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0e\x00\x10\x1b\x89\x7d\x8c\x7d\x80\x48\xe5\x07\x10\xd0\x07\x18\xd8\x0b\x13\xd0\x0b\x1b\xd8\x1f\x24\xd0\x0c\x1c\xd0\x0c\x1c\xe5\x18\x21\xa0\x28\xd1\x18\x2b\xd4\x18\x2b\x88\x49\xe5\x0b\x14\xd0\x04\x14", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +site_toplevel_consts_14_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_userbase._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(98) +site_toplevel_consts_14 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 49, + }, + .co_consts = & site_toplevel_consts_14_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_14_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 324, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_getusersitepackages._ascii.ob_base, + .co_qualname = & const_str_getusersitepackages._ascii.ob_base, + .co_linetable = & site_toplevel_consts_14_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x14\x7c\x00\x80\x03\x64\x02\x61\x02\x6e\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x61\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[135]; + } +site_toplevel_consts_15_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 134, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x64\x64\x20\x61\x20\x70\x65\x72\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x0a\x0a\x20\x20\x20\x20\x45\x61\x63\x68\x20\x75\x73\x65\x72\x20\x68\x61\x73\x20\x69\x74\x73\x20\x6f\x77\x6e\x20\x70\x79\x74\x68\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x77\x69\x74\x68\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x68\x6f\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +site_toplevel_consts_15_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Processing user site-packages", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & site_toplevel_consts_15_consts_0._ascii.ob_base, + & site_toplevel_consts_15_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +site_toplevel_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__trace._ascii.ob_base, + & const_str_getusersitepackages._ascii.ob_base, + & const_str_ENABLE_USER_SITE._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_isdir._ascii.ob_base, + & const_str_addsitedir._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str_addusersitepackages = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "addusersitepackages", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[82]; + } +site_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 81, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x05\x0b\xd0\x0b\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xdd\x10\x23\xd1\x10\x25\xd4\x10\x25\x80\x49\xe5\x07\x17\xf0\x00\x01\x05\x2b\x9d\x42\x9c\x47\x9f\x4d\x9a\x4d\xa8\x29\xd1\x1c\x34\xd4\x1c\x34\xf0\x00\x01\x05\x2b\xdd\x08\x12\x90\x39\x98\x6b\xd1\x08\x2a\xd4\x08\x2a\xd0\x08\x2a\xd8\x0b\x16\xd0\x04\x16", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_user_site = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "user_site", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_15_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_known_paths._ascii.ob_base, + & const_str_user_site._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(172) +site_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 86, + }, + .co_consts = & site_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 341, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_addusersitepackages._ascii.ob_base, + .co_qualname = & const_str_addusersitepackages._ascii.ob_base, + .co_linetable = & site_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2f\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[287]; + } +site_toplevel_consts_16_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 286, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x6c\x69\x73\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x6c\x6c\x20\x67\x6c\x6f\x62\x61\x6c\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x46\x6f\x72\x20\x65\x61\x63\x68\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x70\x72\x65\x73\x65\x6e\x74\x20\x69\x6e\x20\x60\x60\x70\x72\x65\x66\x69\x78\x65\x73\x60\x60\x20\x28\x6f\x72\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x20\x60\x60\x50\x52\x45\x46\x49\x58\x45\x53\x60\x60\x29\x2c\x0a\x20\x20\x20\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x66\x69\x6e\x64\x20\x69\x74\x73\x20\x60\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x60\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x64\x65\x70\x65\x6e\x64\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x79\x73\x74\x65\x6d\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2c\x20\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x72\x65\x74\x75\x72\x6e\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x66\x75\x6c\x6c\x20\x70\x61\x74\x68\x73\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_lib = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "lib", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +site_toplevel_consts_16_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "python%d.%d", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +site_toplevel_consts_16_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "site-packages", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_Lib = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Lib", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +site_toplevel_consts_16_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & site_toplevel_consts_16_consts_0._ascii.ob_base, + Py_None, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, + & const_str_lib._ascii.ob_base, + & site_toplevel_consts_16_consts_4._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & site_toplevel_consts_16_consts_6._ascii.ob_base, + & const_str_Lib._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_PREFIXES = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "PREFIXES", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_platlibdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "platlibdir", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +site_toplevel_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_set._ascii.ob_base, + & const_str_PREFIXES._ascii.ob_base, + &_Py_ID(add), + & const_str_os._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_platlibdir._ascii.ob_base, + &_Py_ID(append), + &_Py_ID(path), + &_Py_ID(join), + & const_str_version_info._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_getsitepackages = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "getsitepackages", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[298]; + } +site_toplevel_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 297, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0e\x00\x14\x16\x80\x4c\xdd\x0b\x0e\x89\x35\x8c\x35\x80\x44\xe0\x07\x0f\xd0\x07\x17\xdd\x13\x1b\x88\x08\xe0\x12\x1a\xf0\x00\x11\x05\x4e\x01\xf0\x00\x11\x05\x4e\x01\x88\x06\xd8\x0f\x15\xf0\x00\x01\x09\x15\x98\x16\xa0\x34\x98\x1e\x98\x1e\xd8\x0c\x14\xd8\x08\x0c\x8f\x08\x8a\x08\x90\x16\xd1\x08\x18\xd4\x08\x18\xd0\x08\x18\xe5\x0b\x0d\x8c\x36\x90\x53\x8a\x3d\x88\x3d\xdd\x17\x1a\x94\x7e\xd0\x16\x26\x88\x47\xdd\x0f\x12\x8c\x7e\xa0\x15\xd2\x0f\x26\xd0\x0f\x26\xd8\x10\x17\x97\x0e\x92\x0e\x98\x75\xd1\x10\x25\xd4\x10\x25\xd0\x10\x25\xe0\x1a\x21\xf0\x00\x04\x0d\x2a\xf0\x00\x04\x0d\x2a\x90\x06\xdd\x17\x19\x94\x77\x97\x7c\x92\x7c\xa0\x46\xa8\x46\xd8\x24\x31\xb5\x43\xd4\x34\x44\xc0\x52\xc0\x61\xc0\x52\xd4\x34\x48\xd1\x24\x48\xd8\x24\x33\xf1\x05\x02\x18\x35\xf4\x00\x02\x18\x35\x90\x04\xf0\x06\x00\x11\x1d\xd7\x10\x23\xd2\x10\x23\xa0\x44\xd1\x10\x29\xd4\x10\x29\xd0\x10\x29\xd0\x10\x29\xf0\x09\x04\x0d\x2a\xf0\x0c\x00\x0d\x19\xd7\x0c\x1f\xd2\x0c\x1f\xa0\x06\xd1\x0c\x27\xd4\x0c\x27\xd0\x0c\x27\xd8\x0c\x18\xd7\x0c\x1f\xd2\x0c\x1f\xa5\x02\xa4\x07\xa7\x0c\xa2\x0c\xa8\x56\xb0\x55\xb8\x4f\xd1\x20\x4c\xd4\x20\x4c\xd1\x0c\x4d\xd4\x0c\x4d\xd0\x0c\x4d\xd0\x0c\x4d\xd8\x0b\x17\xd0\x04\x17", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_prefixes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "prefixes", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_sitepackages = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sitepackages", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_libdirs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "libdirs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_libdir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "libdir", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +site_toplevel_consts_16_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_prefixes._ascii.ob_base, + & const_str_sitepackages._ascii.ob_base, + & const_str_seen._ascii.ob_base, + & const_str_prefix._ascii.ob_base, + & const_str_libdirs._ascii.ob_base, + & const_str_libdir._ascii.ob_base, + &_Py_ID(path), + }, + }, +}; +static + struct _PyCode_DEF(564) +site_toplevel_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 282, + }, + .co_consts = & site_toplevel_consts_16_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 10, + .co_firstlineno = 356, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_getsitepackages._ascii.ob_base, + .co_qualname = & const_str_getsitepackages._ascii.ob_base, + .co_linetable = & site_toplevel_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x80\x07\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x44\x00\x5d\xfb\x7d\x03\x7c\x03\x72\x04\x7c\x03\x7c\x02\x76\x00\x72\x01\x8c\x09\x7c\x02\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x84\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x67\x01\x7d\x04\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x03\x00\x00\x00\x00\x72\x15\x7c\x04\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x04\x44\x00\x5d\x4e\x7d\x05\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x05\x64\x04\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\x64\x06\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x4f\x8c\xb2\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x07\x64\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xfc\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[30]; + } +site_toplevel_consts_17_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 29, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Add site-packages to sys.path", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +site_toplevel_consts_17_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Processing global site-packages", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_17_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & site_toplevel_consts_17_consts_0._ascii.ob_base, + & site_toplevel_consts_17_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +site_toplevel_consts_17_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str__trace._ascii.ob_base, + & const_str_getsitepackages._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_isdir._ascii.ob_base, + & const_str_addsitedir._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_addsitepackages = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "addsitepackages", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[86]; + } +site_toplevel_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 85, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x04\x0a\xd0\x0b\x2c\xd1\x04\x2d\xd4\x04\x2d\xd0\x04\x2d\xdd\x13\x22\xa0\x38\xd1\x13\x2c\xd4\x13\x2c\xf0\x00\x02\x05\x2d\xf0\x00\x02\x05\x2d\x88\x07\xdd\x0b\x0d\x8c\x37\x8f\x3d\x8a\x3d\x98\x17\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x09\x2d\xdd\x0c\x16\x90\x77\xa0\x0b\xd1\x0c\x2c\xd4\x0c\x2c\xd0\x0c\x2c\xf8\xe0\x0b\x16\xd0\x04\x16", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_17_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_known_paths._ascii.ob_base, + & const_str_prefixes._ascii.ob_base, + & const_str_sitedir._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(166) +site_toplevel_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 83, + }, + .co_consts = & site_toplevel_consts_17_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_17_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 389, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_addsitepackages._ascii.ob_base, + .co_qualname = & const_str_addsitepackages._ascii.ob_base, + .co_linetable = & site_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x31\x7d\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x32\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[174]; + } +site_toplevel_consts_18_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 173, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x65\x66\x69\x6e\x65\x20\x6e\x65\x77\x20\x62\x75\x69\x6c\x74\x69\x6e\x73\x20\x27\x71\x75\x69\x74\x27\x20\x61\x6e\x64\x20\x27\x65\x78\x69\x74\x27\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x73\x65\x20\x61\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x63\x68\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x69\x6e\x74\x65\x72\x70\x72\x65\x74\x65\x72\x20\x65\x78\x69\x74\x20\x77\x68\x65\x6e\x20\x63\x61\x6c\x6c\x65\x64\x2e\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x72\x65\x70\x72\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x68\x69\x6e\x74\x20\x61\x74\x20\x68\x6f\x77\x20\x69\x74\x20\x77\x6f\x72\x6b\x73\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +site_toplevel_consts_18_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Ctrl-Z plus Return", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +site_toplevel_consts_18_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Ctrl-D (i.e. EOF)", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_quit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "quit", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_exit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exit", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +site_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & site_toplevel_consts_18_consts_0._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, + & site_toplevel_consts_18_consts_2._ascii.ob_base, + & site_toplevel_consts_18_consts_3._ascii.ob_base, + & const_str_quit._ascii.ob_base, + & const_str_exit._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__sitebuiltins = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_sitebuiltins", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +site_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_sep._ascii.ob_base, + & const_str__sitebuiltins._ascii.ob_base, + & const_str_Quitter._ascii.ob_base, + &_Py_ID(builtins), + & const_str_quit._ascii.ob_base, + & const_str_exit._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_setquit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "setquit", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[72]; + } +site_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 71, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x0e\x00\x08\x0a\x84\x76\x90\x14\x82\x7e\x80\x7e\xd8\x0e\x22\x88\x03\x88\x03\xe0\x0e\x21\x88\x03\xe5\x14\x21\xd4\x14\x29\xa8\x26\xb0\x23\xd1\x14\x36\xd4\x14\x36\x85\x48\x84\x4d\xdd\x14\x21\xd4\x14\x29\xa8\x26\xb0\x23\xd1\x14\x36\xd4\x14\x36\x85\x48\x84\x4d\x80\x4d\x80\x4d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +site_toplevel_consts_18_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_eof._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(172) +site_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 86, + }, + .co_consts = & site_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 398, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_setquit._ascii.ob_base, + .co_qualname = & const_str_setquit._ascii.ob_base, + .co_linetable = & site_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x03\x64\x02\x7d\x00\x6e\x02\x64\x03\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[42]; + } +site_toplevel_consts_19_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 41, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Set 'copyright' and 'credits' in builtins", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_copyright = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "copyright", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_java = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "java", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_credits = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "credits", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[64]; + } +site_toplevel_consts_19_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 63, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Jython is maintained by the Jython developers (www.jython.org).", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[159]; + } +site_toplevel_consts_19_consts_7 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 158, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x20\x20\x20\x54\x68\x61\x6e\x6b\x73\x20\x74\x6f\x20\x43\x57\x49\x2c\x20\x43\x4e\x52\x49\x2c\x20\x42\x65\x4f\x70\x65\x6e\x2e\x63\x6f\x6d\x2c\x20\x5a\x6f\x70\x65\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x20\x61\x6e\x64\x20\x61\x20\x63\x61\x73\x74\x20\x6f\x66\x20\x74\x68\x6f\x75\x73\x61\x6e\x64\x73\x0a\x20\x20\x20\x20\x66\x6f\x72\x20\x73\x75\x70\x70\x6f\x72\x74\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x64\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x2e\x20\x20\x53\x65\x65\x20\x77\x77\x77\x2e\x70\x79\x74\x68\x6f\x6e\x2e\x6f\x72\x67\x20\x66\x6f\x72\x20\x6d\x6f\x72\x65\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x2e", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +site_toplevel_consts_19_consts_10 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LICENSE.txt", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_LICENSE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LICENSE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_license = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "license", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[40]; + } +site_toplevel_consts_19_consts_13 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 39, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "See https://www.python.org/psf/license/", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +site_toplevel_consts_19_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + & site_toplevel_consts_19_consts_0._ascii.ob_base, + & const_str_copyright._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], + & const_str_java._ascii.ob_base, + & const_str_credits._ascii.ob_base, + & site_toplevel_consts_19_consts_6._ascii.ob_base, + & site_toplevel_consts_19_consts_7._ascii.ob_base, + & const_str__stdlib_dir._ascii.ob_base, + &_Py_ID(__file__), + & site_toplevel_consts_19_consts_10._ascii.ob_base, + & const_str_LICENSE._ascii.ob_base, + & const_str_license._ascii.ob_base, + & site_toplevel_consts_19_consts_13._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[18]; + }_object; + } +site_toplevel_consts_19_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 18, + }, + .ob_item = { + & const_str__sitebuiltins._ascii.ob_base, + & const_str__Printer._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_copyright._ascii.ob_base, + &_Py_ID(builtins), + & const_str_platform._ascii.ob_base, + & const_str_credits._ascii.ob_base, + &_Py_ID(getattr), + & const_str_hasattr._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_dirname._ascii.ob_base, + &_Py_ID(__file__), + &_Py_ID(extend), + &_Py_ID(join), + & const_str_pardir._ascii.ob_base, + & const_str_curdir._ascii.ob_base, + & const_str_license._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_setcopyright = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "setcopyright", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[304]; + } +site_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 303, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x19\x26\xd4\x19\x2f\xb0\x0b\xbd\x53\xbc\x5d\xd1\x19\x4b\xd4\x19\x4b\x85\x48\xd4\x04\x16\xdd\x07\x0a\x84\x7c\x90\x42\x90\x51\x90\x42\xd4\x07\x17\x98\x36\xd2\x07\x21\xd0\x07\x21\xdd\x1b\x28\xd4\x1b\x31\xd8\x0c\x15\xd8\x0c\x4d\xf1\x05\x02\x1c\x4f\x01\xf4\x00\x02\x1c\x4f\x01\x8d\x08\xd4\x08\x18\xd0\x08\x18\xf5\x08\x00\x1c\x29\xd4\x1b\x31\xb0\x29\xf0\x00\x02\x3e\x54\x01\xf1\x00\x02\x1c\x55\x01\xf4\x00\x02\x1c\x55\x01\x8d\x08\xd4\x08\x18\xf0\x06\x00\x13\x15\x90\x62\x88\x34\x80\x45\xf5\x06\x00\x0c\x13\x95\x33\x98\x0d\xa0\x74\xd1\x0b\x2c\xd4\x0b\x2c\x80\x44\xd8\x0b\x0f\xf0\x00\x01\x05\x2c\x95\x47\x9d\x42\xa0\x0a\xd1\x14\x2b\xd4\x14\x2b\xf0\x00\x01\x05\x2c\xdd\x0f\x11\x8c\x77\x8f\x7f\x8a\x7f\x9d\x72\x9c\x7b\xd1\x0f\x2b\xd4\x0f\x2b\x88\x04\xd8\x07\x0b\xf0\x00\x02\x05\x46\x01\xd8\x08\x0d\x8f\x0c\x8a\x0c\x90\x6d\xa0\x59\xd0\x15\x2f\xd1\x08\x30\xd4\x08\x30\xd0\x08\x30\xd8\x08\x0c\x8f\x0b\x8a\x0b\x95\x52\x94\x57\x97\x5c\x92\x5c\xa0\x24\xad\x02\xac\x09\xd1\x15\x32\xd4\x15\x32\xb0\x44\xbd\x22\xbc\x29\xd0\x14\x44\xd1\x08\x45\xd4\x08\x45\xd0\x08\x45\xdd\x17\x24\xd4\x17\x2d\xd8\x08\x11\xd8\x08\x31\xd8\x08\x0d\x88\x74\xf1\x07\x03\x18\x15\xf4\x00\x03\x18\x15\x85\x48\xd4\x04\x14\xd0\x04\x14\xd0\x04\x14", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_here = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "here", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_files._ascii.ob_base, + & const_str_dirs._ascii.ob_base, + & const_str_here._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(706) +site_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 353, + }, + .co_consts = & site_toplevel_consts_19_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 414, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_setcopyright._ascii.ob_base, + .co_qualname = & const_str_setcopyright._ascii.ob_base, + .co_linetable = & site_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x6b\x02\x00\x00\x00\x00\x72\x20\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x1f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x67\x00\x7d\x01\x7d\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x73\x3e\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x29\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x72\x61\x7c\x00\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x64\x0b\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x67\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x64\x0d\x7c\x00\x7c\x01\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x11\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +site_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__sitebuiltins._ascii.ob_base, + & const_str__Helper._ascii.ob_base, + &_Py_ID(builtins), + & const_str_help._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_sethelper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sethelper", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +site_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x14\x21\xd4\x14\x29\xd1\x14\x2b\xd4\x14\x2b\x85\x48\x84\x4d\x80\x4d\x80\x4d", +}; +static + struct _PyCode_DEF(64) +site_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 32, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 440, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_sethelper._ascii.ob_base, + .co_qualname = & const_str_sethelper._ascii.ob_base, + .co_linetable = & site_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[363]; + } +site_toplevel_consts_21_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 362, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x6e\x61\x62\x6c\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x6f\x6e\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x70\x72\x6f\x6d\x70\x74\x73\x2c\x20\x62\x79\x0a\x20\x20\x20\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x61\x20\x73\x79\x73\x2e\x5f\x5f\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x68\x6f\x6f\x6b\x5f\x5f\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x63\x61\x6e\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2c\x20\x74\x68\x65\x20\x68\x6f\x6f\x6b\x20\x77\x69\x6c\x6c\x20\x73\x65\x74\x20\x74\x68\x65\x20\x54\x61\x62\x20\x6b\x65\x79\x0a\x20\x20\x20\x20\x61\x73\x20\x63\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x20\x6b\x65\x79\x20\x61\x6e\x64\x20\x72\x65\x67\x69\x73\x74\x65\x72\x20\x7e\x2f\x2e\x70\x79\x74\x68\x6f\x6e\x5f\x68\x69\x73\x74\x6f\x72\x79\x20\x61\x73\x20\x68\x69\x73\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x2e\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x6f\x76\x65\x72\x72\x69\x64\x64\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x20\x6f\x72\x20\x75\x73\x65\x72\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x0a\x20\x20\x20\x20\x6f\x72\x20\x69\x6e\x20\x61\x20\x50\x59\x54\x48\x4f\x4e\x53\x54\x41\x52\x54\x55\x50\x20\x66\x69\x6c\x65\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_libedit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "libedit", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +site_toplevel_consts_21_consts_1_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bind ^I rl_complete", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +site_toplevel_consts_21_consts_1_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "tab: complete", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +site_toplevel_consts_21_consts_1_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ".python_history", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_write_history_file = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "write_history_file", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_21_consts_1_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_write_history_file._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_write_history = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "write_history", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[68]; + } +site_toplevel_consts_21_consts_1_consts_9_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 67, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "enablerlcompleter..register_readline..write_history", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[71]; + } +site_toplevel_consts_21_consts_1_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 70, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf0\x02\x05\x11\x19\xd8\x14\x1c\xd7\x14\x2f\xd2\x14\x2f\xb0\x07\xd1\x14\x38\xd4\x14\x38\xd0\x14\x38\xd0\x14\x38\xd0\x14\x38\xf8\xdd\x17\x1e\xf0\x00\x03\x11\x19\xf0\x00\x03\x11\x19\xf0\x00\x03\x11\x19\xf0\x06\x00\x15\x19\x90\x44\x90\x44\xf0\x07\x03\x11\x19\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[13]; + } +site_toplevel_consts_21_consts_1_consts_9_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 12, + }, + .ob_shash = -1, + .ob_sval = "\x83\x15\x1a\x00\x9a\x0a\x28\x03\xa7\x01\x28\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_history = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "history", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_21_consts_1_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_history._ascii.ob_base, + &_Py_ID(readline), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +site_toplevel_consts_21_consts_1_consts_9_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "\x80\x80", +}; +static + struct _PyCode_DEF(86) +site_toplevel_consts_21_consts_1_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 43, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_21_consts_1_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_21_consts_1_consts_9_exceptiontable.ob_base.ob_base, + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 490, + .co_nlocalsplus = 2, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 2, + .co_localsplusnames = & site_toplevel_consts_21_consts_1_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & site_toplevel_consts_21_consts_1_consts_9_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_write_history._ascii.ob_base, + .co_qualname = & site_toplevel_consts_21_consts_1_consts_9_qualname._ascii.ob_base, + .co_linetable = & site_toplevel_consts_21_consts_1_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x02\x97\x00\x09\x00\x89\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +site_toplevel_consts_21_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + &_Py_ID(__doc__), + &_Py_STR(empty), + & const_str_libedit._ascii.ob_base, + & site_toplevel_consts_21_consts_1_consts_5._ascii.ob_base, + & site_toplevel_consts_21_consts_1_consts_6._ascii.ob_base, + & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, + & site_toplevel_consts_21_consts_1_consts_8._ascii.ob_base, + & site_toplevel_consts_21_consts_1_consts_9.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_atexit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "atexit", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_rlcompleter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "rlcompleter", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_parse_and_bind = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "parse_and_bind", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_read_init_file = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "read_init_file", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +const_str_get_current_history_length = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "get_current_history_length", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_read_history_file = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "read_history_file", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +site_toplevel_consts_21_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & const_str_atexit._ascii.ob_base, + &_Py_ID(readline), + & const_str_rlcompleter._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + &_Py_ID(getattr), + & const_str_parse_and_bind._ascii.ob_base, + & const_str_read_init_file._ascii.ob_base, + & const_str_OSError._ascii.ob_base, + & const_str_get_current_history_length._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(path), + &_Py_ID(join), + & const_str_expanduser._ascii.ob_base, + & const_str_read_history_file._ascii.ob_base, + & const_str_register._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_register_readline = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "register_readline", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +site_toplevel_consts_21_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "enablerlcompleter..register_readline", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[409]; + } +site_toplevel_consts_21_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 408, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xf8\x80\x00\xd8\x08\x15\x88\x0d\x88\x0d\x88\x0d\xf0\x02\x04\x09\x13\xd8\x0c\x1b\x88\x4f\x88\x4f\x88\x4f\xd8\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xf8\xdd\x0f\x1a\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xd8\x0c\x12\x88\x46\x88\x46\xf0\x03\x01\x09\x13\xf8\xf8\xf8\xf5\x0a\x00\x18\x1f\x98\x78\xa8\x19\xb0\x42\xd1\x17\x37\xd4\x17\x37\x88\x0c\xd8\x0b\x17\xd0\x0b\x23\xa8\x09\xb0\x5c\xd0\x28\x41\xd0\x28\x41\xd8\x0c\x14\xd7\x0c\x23\xd2\x0c\x23\xd0\x24\x39\xd1\x0c\x3a\xd4\x0c\x3a\xd0\x0c\x3a\xd0\x0c\x3a\xe0\x0c\x14\xd7\x0c\x23\xd2\x0c\x23\xa0\x4f\xd1\x0c\x34\xd4\x0c\x34\xd0\x0c\x34\xf0\x04\x07\x09\x11\xd8\x0c\x14\xd7\x0c\x23\xd2\x0c\x23\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xf8\xdd\x0f\x16\xf0\x00\x05\x09\x11\xf0\x00\x05\x09\x11\xf0\x00\x05\x09\x11\xf0\x0a\x00\x0d\x11\x88\x44\xf0\x0b\x05\x09\x11\xf8\xf8\xf8\xf0\x0e\x00\x0c\x14\xd7\x0b\x2e\xd2\x0b\x2e\xd1\x0b\x30\xd4\x0b\x30\xb0\x41\xd2\x0b\x35\xd0\x0b\x35\xf5\x0c\x00\x17\x19\x94\x67\x97\x6c\x92\x6c\xa5\x32\xa4\x37\xd7\x23\x35\xd2\x23\x35\xb0\x63\xd1\x23\x3a\xd4\x23\x3a\xd8\x23\x34\xf1\x03\x01\x17\x36\xf4\x00\x01\x17\x36\x88\x47\xf0\x04\x03\x0d\x15\xd8\x10\x18\xd7\x10\x2a\xd2\x10\x2a\xa8\x37\xd1\x10\x33\xd4\x10\x33\xd0\x10\x33\xd0\x10\x33\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x06\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x10\x00\x0d\x13\x8f\x4f\x8a\x4f\x98\x4d\xd1\x0c\x2a\xd4\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xf0\x2b\x00\x0c\x36\xd0\x0b\x35", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[49]; + } +site_toplevel_consts_21_consts_1_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 48, + }, + .ob_shash = -1, + .ob_sval = "\x88\x08\x11\x00\x91\x0a\x1f\x03\x9e\x01\x1f\x03\xc1\x25\x14\x41\x3a\x00\xc1\x3a\x0a\x42\x07\x03\xc2\x06\x01\x42\x07\x03\xc3\x20\x15\x43\x36\x00\xc3\x36\x0a\x44\x03\x03\xc4\x02\x01\x44\x03\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_readline_doc = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "readline_doc", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +site_toplevel_consts_21_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_atexit._ascii.ob_base, + & const_str_rlcompleter._ascii.ob_base, + & const_str_readline_doc._ascii.ob_base, + & const_str_write_history._ascii.ob_base, + & const_str_history._ascii.ob_base, + &_Py_ID(readline), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[7]; + } +site_toplevel_consts_21_consts_1_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 6, + }, + .ob_shash = -1, + .ob_sval = " @@", +}; +static + struct _PyCode_DEF(586) +site_toplevel_consts_21_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 293, + }, + .co_consts = & site_toplevel_consts_21_consts_1_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_21_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_21_consts_1_exceptiontable.ob_base.ob_base, + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 452, + .co_nlocalsplus = 6, + .co_nlocals = 4, + .co_nplaincellvars = 2, + .co_ncellvars = 2, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_21_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & site_toplevel_consts_21_consts_1_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_register_readline._ascii.ob_base, + .co_qualname = & site_toplevel_consts_21_consts_1_qualname._ascii.ob_base, + .co_linetable = & site_toplevel_consts_21_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x04\x87\x05\x97\x00\x64\x01\x64\x00\x6c\x00\x7d\x00\x09\x00\x64\x01\x64\x00\x6c\x01\x8a\x05\x64\x01\x64\x00\x6c\x02\x7d\x01\x6e\x11\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x05\x64\x02\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x81\x1a\x64\x04\x7c\x02\x76\x00\x72\x16\x89\x05\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x15\x89\x05\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x89\x05\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x89\x05\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x81\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x04\x09\x00\x89\x05\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x88\x04\x88\x05\x66\x02\x64\x09\x84\x08\x7d\x03\x7c\x00\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_21_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & site_toplevel_consts_21_consts_0._ascii.ob_base, + & site_toplevel_consts_21_consts_1.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str___interactivehook__ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__interactivehook__", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_21_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str___interactivehook__._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_enablerlcompleter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "enablerlcompleter", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[35]; + } +site_toplevel_consts_21_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 34, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x12\x2e\x05\x2b\xf0\x00\x2e\x05\x2b\xf0\x00\x2e\x05\x2b\xf0\x60\x01\x00\x1f\x30\x85\x43\xd4\x04\x1b\xd0\x04\x1b\xd0\x04\x1b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +site_toplevel_consts_21_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_register_readline._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(36) +site_toplevel_consts_21 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & site_toplevel_consts_21_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 443, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_enablerlcompleter._ascii.ob_base, + .co_qualname = & const_str_enablerlcompleter._ascii.ob_base, + .co_linetable = & site_toplevel_consts_21_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x84\x00\x7d\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str___PYVENV_LAUNCHER__ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__PYVENV_LAUNCHER__", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +site_toplevel_consts_22_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pyvenv.cfg", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_22_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_isfile._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +site_toplevel_consts_22_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "venv..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[63]; + } +site_toplevel_consts_22_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 62, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x00\x06\x17\x0a\xf0\x00\x06\x17\x0a\xf0\x00\x06\x17\x0a\xd8\x15\x1d\xf5\x08\x00\x0c\x0e\x8c\x37\x8f\x3e\x8a\x3e\x98\x28\xd1\x0b\x23\xd4\x0b\x23\xf0\x0b\x06\x17\x0a\xd8\x08\x10\xf0\x03\x06\x17\x0a\xf0\x00\x06\x17\x0a\xf0\x00\x06\x17\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_conffile = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "conffile", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_22_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, + & const_str_conffile._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(80) +site_toplevel_consts_22_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 40, + }, + .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_names = & site_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 514, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_listcomp), + .co_qualname = & site_toplevel_consts_22_consts_4_qualname._ascii.ob_base, + .co_linetable = & site_toplevel_consts_22_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x23\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x21\x7c\x01\x91\x02\x8c\x24\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_true = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "true", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +site_toplevel_consts_22_consts_9 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "=", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +site_toplevel_consts_22_consts_10 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "include-system-site-packages", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_home = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "home", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +site_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + Py_None, + & const_str_darwin._ascii.ob_base, + & const_str___PYVENV_LAUNCHER__._ascii.ob_base, + & site_toplevel_consts_22_consts_3._ascii.ob_base, + & site_toplevel_consts_22_consts_4.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & const_str_true._ascii.ob_base, + &_Py_STR(utf_8), + & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, + & site_toplevel_consts_22_consts_9._ascii.ob_base, + & site_toplevel_consts_22_consts_10._ascii.ob_base, + & const_str_home._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__base_executable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_base_executable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_executable = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "executable", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__home = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_home", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_exec_prefix = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exec_prefix", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[22]; + }_object; + } +site_toplevel_consts_22_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 22, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + & const_str_environ._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_platform._ascii.ob_base, + & const_str__base_executable._ascii.ob_base, + & const_str_executable._ascii.ob_base, + &_Py_ID(path), + & const_str_split._ascii.ob_base, + & const_str_abspath._ascii.ob_base, + & const_str_dirname._ascii.ob_base, + & const_str__home._ascii.ob_base, + &_Py_ID(join), + &_Py_ID(open), + & const_str_partition._ascii.ob_base, + & const_str_strip._ascii.ob_base, + & const_str_lower._ascii.ob_base, + & const_str_prefix._ascii.ob_base, + & const_str_exec_prefix._ascii.ob_base, + & const_str_addsitepackages._ascii.ob_base, + & const_str_PREFIXES._ascii.ob_base, + & const_str_insert._ascii.ob_base, + & const_str_ENABLE_USER_SITE._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_venv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "venv", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[564]; + } +site_toplevel_consts_22_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 563, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x06\x00\x0b\x0d\x8c\x2a\x80\x43\xdd\x07\x0a\x84\x7c\x90\x78\xd2\x07\x1f\xd0\x07\x1f\xd0\x24\x39\xb8\x53\xd0\x24\x40\xd0\x24\x40\xdd\x2c\x2e\xac\x4a\xd0\x37\x4c\xd4\x2c\x4d\xd0\x08\x4d\x88\x0a\x95\x53\xd4\x15\x29\xd0\x15\x29\xe5\x15\x18\x94\x5e\x88\x0a\xdd\x11\x13\x94\x17\x97\x1d\x92\x1d\x9d\x72\x9c\x77\x9f\x7f\x9a\x7f\xa8\x7a\xd1\x1f\x3a\xd4\x1f\x3a\xd1\x11\x3b\xd4\x11\x3b\x81\x4a\x80\x47\x88\x51\xdd\x12\x14\x94\x27\x97\x2f\x92\x2f\xa0\x27\xd1\x12\x2a\xd4\x12\x2a\x80\x4b\xd8\x10\x14\x85\x43\x84\x49\xd8\x14\x20\x80\x4d\xf0\x02\x06\x17\x0a\xf0\x00\x06\x17\x0a\xe5\x0c\x0e\x8c\x47\x8f\x4c\x8a\x4c\x98\x17\xa0\x2d\xd1\x0c\x30\xd4\x0c\x30\xdd\x0c\x0e\x8c\x47\x8f\x4c\x8a\x4c\x98\x1b\xa0\x6d\xd1\x0c\x34\xd4\x0c\x34\xf0\x05\x03\x22\x0e\xf0\x03\x06\x17\x0a\xf1\x00\x06\x17\x0a\xf4\x00\x06\x17\x0a\x80\x4f\xf0\x10\x00\x08\x17\xf1\x00\x1b\x05\x25\xd8\x17\x26\xa0\x71\xd4\x17\x29\x88\x0c\xd8\x16\x1c\x88\x0b\xf5\x06\x00\x0e\x12\x90\x2c\xa8\x17\xd0\x0d\x31\xd1\x0d\x31\xd4\x0d\x31\xf0\x00\x09\x09\x2a\xb0\x51\xd8\x18\x19\xf0\x00\x08\x0d\x2a\xf0\x00\x08\x0d\x2a\x90\x04\xd8\x13\x16\x98\x24\x90\x3b\x90\x3b\xd8\x24\x28\xa7\x4e\xa2\x4e\xb0\x33\xd1\x24\x37\xd4\x24\x37\x91\x4d\x90\x43\x98\x11\x98\x45\xd8\x1a\x1d\x9f\x29\x9a\x29\x99\x2b\x9c\x2b\xd7\x1a\x2b\xd2\x1a\x2b\xd1\x1a\x2d\xd4\x1a\x2d\x90\x43\xd8\x1c\x21\x9f\x4b\x9a\x4b\x99\x4d\x9c\x4d\x90\x45\xd8\x17\x1a\xd0\x1e\x3c\xd2\x17\x3c\xd0\x17\x3c\xd8\x26\x2b\xa7\x6b\xa2\x6b\xa1\x6d\xa4\x6d\x98\x0b\x98\x0b\xd8\x19\x1c\xa0\x06\x9a\x1d\x98\x1d\xd8\x24\x29\x9d\x03\x9c\x09\xf8\xf0\x11\x08\x0d\x2a\xf0\x03\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf1\x00\x09\x09\x2a\xf4\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf8\xf8\xf8\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x16\x00\x28\x33\xd0\x08\x32\x8d\x03\x8c\x0a\x95\x53\x94\x5f\xf5\x06\x00\x09\x18\x98\x0b\xa5\x63\xa4\x6a\xa0\x5c\xd1\x08\x32\xd4\x08\x32\xd0\x08\x32\xf0\x08\x00\x0c\x17\x98\x26\xd2\x0b\x20\xd0\x0b\x20\xdd\x0c\x14\x8f\x4f\x8a\x4f\x98\x41\x9d\x73\x9c\x7a\xd1\x0c\x2a\xd4\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xe5\x18\x1b\x9c\x0a\x90\x7c\x88\x48\xd8\x1f\x24\xd0\x0c\x1c\xe0\x0b\x16\xd0\x04\x16", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +site_toplevel_consts_22_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\xc4\x20\x42\x0a\x46\x37\x03\xc6\x37\x04\x46\x3b\x07\xc6\x3e\x01\x46\x3b\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_exe_dir = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "exe_dir", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_site_prefix = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "site_prefix", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_conf_basename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "conf_basename", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_candidate_confs = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "candidate_confs", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_virtual_conf = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "virtual_conf", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_system_site = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "system_site", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[14]; + }_object; + } +site_toplevel_consts_22_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 14, + }, + .ob_item = { + & const_str_known_paths._ascii.ob_base, + & const_str_env._ascii.ob_base, + & const_str_executable._ascii.ob_base, + & const_str_exe_dir._ascii.ob_base, + &_Py_ID(_), + & const_str_site_prefix._ascii.ob_base, + & const_str_conf_basename._ascii.ob_base, + & const_str_candidate_confs._ascii.ob_base, + & const_str_virtual_conf._ascii.ob_base, + & const_str_system_site._ascii.ob_base, + & const_str_f._ascii.ob_base, + &_Py_ID(line), + & const_str_key._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(1124) +site_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 562, + }, + .co_consts = & site_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_22_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_22_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 502, + .co_nlocalsplus = 14, + .co_nlocals = 14, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_7_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_venv._ascii.ob_base, + .co_qualname = & const_str_venv._ascii.ob_base, + .co_linetable = & site_toplevel_consts_22_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x23\x64\x02\x7c\x01\x76\x00\x72\x1f\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x7d\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x0c\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x03\x7d\x04\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7d\x06\x64\x04\x84\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x90\x01\x72\x2b\x7c\x07\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x64\x06\x7d\x09\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\x64\x07\xac\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x0a\x7c\x0a\x44\x00\x5d\x86\x7d\x0b\x64\x09\x7c\x0b\x76\x00\x72\x80\x7c\x0b\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x0c\x7d\x04\x7d\x0d\x7c\x0c\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0d\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x7c\x0c\x64\x0a\x6b\x02\x00\x00\x00\x00\x72\x15\x7c\x0d\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x8c\x74\x7c\x0c\x64\x0b\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x0d\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x87\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x05\x78\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x10\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x11\x00\x00\x00\x00\x00\x00\x00\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x67\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x09\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x26\x74\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0f\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x67\x01\x61\x13\x64\x0c\x61\x15\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +site_toplevel_consts_23_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Run custom site specific code, if available.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_sitecustomize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sitecustomize", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[58]; + } +site_toplevel_consts_23_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 57, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x3b\x20\x73\x65\x74\x20\x50\x59\x54\x48\x4f\x4e\x56\x45\x52\x42\x4f\x53\x45\x20\x66\x6f\x72\x20\x74\x72\x61\x63\x65\x62\x61\x63\x6b\x3a\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +site_toplevel_consts_23_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & site_toplevel_consts_23_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & const_str_sitecustomize._ascii.ob_base, + & site_toplevel_consts_23_consts_4._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +site_toplevel_consts_23_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_sitecustomize._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + &_Py_ID(name), + & const_str_Exception._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_verbose._ascii.ob_base, + &_Py_ID(excepthook), + & const_str_exc_info._ascii.ob_base, + &_Py_ID(stderr), + &_Py_ID(write), + &_Py_ID(__class__), + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_execsitecustomize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execsitecustomize", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[270]; + } +site_toplevel_consts_23_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 269, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x04\x0f\x05\x2f\xf0\x02\x06\x09\x16\xd8\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x1a\xf0\x00\x04\x09\x16\xf0\x00\x04\x09\x16\xf0\x00\x04\x09\x16\xd8\x0f\x12\x8c\x78\x98\x3f\xd2\x0f\x2a\xd0\x0f\x2a\xd8\x10\x14\xe0\x10\x15\xf0\x05\x00\x11\x15\x90\x04\x90\x04\x90\x04\x90\x04\x90\x04\xf8\xf8\xf8\xf8\xf0\x05\x04\x09\x16\xf8\xf8\xf8\xf8\xf5\x0a\x00\x0c\x15\xf0\x00\x07\x05\x2f\xf0\x00\x07\x05\x2f\xf0\x00\x07\x05\x2f\xdd\x0b\x0e\x8c\x39\xd4\x0b\x1c\xf0\x00\x06\x09\x2f\xdd\x0c\x0f\x8c\x4e\x9d\x43\x9c\x4c\x99\x4e\x9c\x4e\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xe5\x0c\x0f\x8c\x4a\xd7\x0c\x1c\xd2\x0c\x1c\xd0\x0c\x1c\xf0\x06\x00\x12\x15\x94\x1d\xd4\x11\x27\xd0\x11\x27\xd0\x11\x27\xa8\x13\xa8\x13\xa8\x13\xf0\x05\x02\x11\x2e\xf1\x03\x03\x0d\x2f\xf4\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x05\x00\x0d\x2c\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xf8\xf8\xf8\xf8\xf0\x05\x07\x05\x2f\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[42]; + } +site_toplevel_consts_23_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 41, + }, + .ob_shash = -1, + .ob_sval = "\x83\x04\x09\x00\x89\x0a\x2b\x03\x93\x0d\x26\x03\xa0\x04\x2e\x00\xa6\x05\x2b\x03\xab\x03\x2e\x00\xae\x0a\x42\x2a\x03\xb8\x41\x21\x42\x25\x03\xc2\x25\x05\x42\x2a\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_23_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_sitecustomize._ascii.ob_base, + & const_str_exc._ascii.ob_base, + & const_str_err._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(346) +site_toplevel_consts_23 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 173, + }, + .co_consts = & site_toplevel_consts_23_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_23_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 554, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_23_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_execsitecustomize._ascii.ob_base, + .co_qualname = & const_str_execsitecustomize._ascii.ob_base, + .co_linetable = & site_toplevel_consts_23_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x64\x01\x64\x02\x6c\x00\x7d\x00\x64\x02\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x18\x7d\x01\x7c\x01\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x02\x00\x00\x00\x00\x72\x01\x6e\x01\x82\x00\x59\x00\x64\x02\x7d\x01\x7e\x01\x64\x02\x53\x00\x64\x02\x7d\x01\x7e\x01\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x72\x7d\x02\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x00\x01\x00\x6e\x36\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x02\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x05\x7c\x02\x9b\x01\x64\x06\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x64\x02\x7d\x02\x7e\x02\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +site_toplevel_consts_24_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Run custom user specific code, if available.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_usercustomize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "usercustomize", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[58]; + } +site_toplevel_consts_24_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 57, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x75\x73\x65\x72\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x3b\x20\x73\x65\x74\x20\x50\x59\x54\x48\x4f\x4e\x56\x45\x52\x42\x4f\x53\x45\x20\x66\x6f\x72\x20\x74\x72\x61\x63\x65\x62\x61\x63\x6b\x3a\x0a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +site_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & site_toplevel_consts_24_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & const_str_usercustomize._ascii.ob_base, + & site_toplevel_consts_24_consts_4._ascii.ob_base, + & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, + & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +site_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_usercustomize._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + &_Py_ID(name), + & const_str_Exception._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_verbose._ascii.ob_base, + &_Py_ID(excepthook), + & const_str_exc_info._ascii.ob_base, + &_Py_ID(stderr), + &_Py_ID(write), + &_Py_ID(__class__), + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_execusercustomize = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "execusercustomize", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_24_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_usercustomize._ascii.ob_base, + & const_str_exc._ascii.ob_base, + & const_str_err._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(346) +site_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 173, + }, + .co_consts = & site_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = & site_toplevel_consts_23_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 574, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_24_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_execusercustomize._ascii.ob_base, + .co_qualname = & const_str_execusercustomize._ascii.ob_base, + .co_linetable = & site_toplevel_consts_23_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x64\x01\x64\x02\x6c\x00\x7d\x00\x64\x02\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x18\x7d\x01\x7c\x01\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x02\x00\x00\x00\x00\x72\x01\x6e\x01\x82\x00\x59\x00\x64\x02\x7d\x01\x7e\x01\x64\x02\x53\x00\x64\x02\x7d\x01\x7e\x01\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x72\x7d\x02\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x00\x01\x00\x6e\x36\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x02\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x05\x7c\x02\x9b\x01\x64\x06\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x64\x02\x7d\x02\x7e\x02\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[208]; + } +site_toplevel_consts_25_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 207, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x41\x64\x64\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x61\x6c\x6c\x65\x64\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2c\x0a\x20\x20\x20\x20\x75\x6e\x6c\x65\x73\x73\x20\x74\x68\x65\x20\x70\x79\x74\x68\x6f\x6e\x20\x69\x6e\x74\x65\x72\x70\x72\x65\x74\x65\x72\x20\x77\x61\x73\x20\x73\x74\x61\x72\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x2d\x53\x20\x66\x6c\x61\x67\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_25_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & site_toplevel_consts_25_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_isolated = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "isolated", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +site_toplevel_consts_25_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + &_Py_ID(path), + & const_str_removeduppaths._ascii.ob_base, + & const_str_abs_paths._ascii.ob_base, + & const_str_venv._ascii.ob_base, + & const_str_ENABLE_USER_SITE._ascii.ob_base, + & const_str_check_enableusersite._ascii.ob_base, + & const_str_addusersitepackages._ascii.ob_base, + & const_str_addsitepackages._ascii.ob_base, + & const_str_setquit._ascii.ob_base, + & const_str_setcopyright._ascii.ob_base, + & const_str_sethelper._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_isolated._ascii.ob_base, + & const_str_enablerlcompleter._ascii.ob_base, + & const_str_execsitecustomize._ascii.ob_base, + & const_str_execusercustomize._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_main = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "main", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[212]; + } +site_toplevel_consts_25_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 211, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x10\x00\x11\x14\x94\x08\x98\x11\x98\x11\x98\x11\x94\x0b\x80\x49\xdd\x12\x20\xd1\x12\x22\xd4\x12\x22\x80\x4b\xd8\x07\x10\x95\x43\x94\x48\xd2\x07\x1c\xd0\x07\x1c\xf5\x06\x00\x09\x12\x89\x0b\x8c\x0b\x88\x0b\xe5\x12\x16\x90\x7b\xd1\x12\x23\xd4\x12\x23\x80\x4b\xdd\x07\x17\xd0\x07\x1f\xdd\x1b\x2f\xd1\x1b\x31\xd4\x1b\x31\xd0\x08\x18\xdd\x12\x25\xa0\x6b\xd1\x12\x32\xd4\x12\x32\x80\x4b\xdd\x12\x21\xa0\x2b\xd1\x12\x2e\xd4\x12\x2e\x80\x4b\xdd\x04\x0b\x81\x49\x84\x49\x80\x49\xdd\x04\x10\x81\x4e\x84\x4e\x80\x4e\xdd\x04\x0d\x81\x4b\x84\x4b\x80\x4b\xdd\x0b\x0e\x8c\x39\xd4\x0b\x1d\xf0\x00\x01\x05\x1c\xdd\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xdd\x04\x15\xd1\x04\x17\xd4\x04\x17\xd0\x04\x17\xdd\x07\x17\xf0\x00\x01\x05\x1c\xdd\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xf0\x03\x01\x05\x1c\xf0\x00\x01\x05\x1c", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_orig_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "orig_path", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +site_toplevel_consts_25_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_orig_path._ascii.ob_base, + & const_str_known_paths._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(486) +site_toplevel_consts_25 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 243, + }, + .co_consts = & site_toplevel_consts_25_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_25_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 594, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_25_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_main._ascii.ob_base, + .co_qualname = & const_str_main._ascii.ob_base, + .co_linetable = & site_toplevel_consts_25_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0e\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0e\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x05\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0e\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[435]; + } +site_toplevel_consts_26_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 434, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x20\x20\x20\x20\x25\x73\x20\x5b\x2d\x2d\x75\x73\x65\x72\x2d\x62\x61\x73\x65\x5d\x20\x5b\x2d\x2d\x75\x73\x65\x72\x2d\x73\x69\x74\x65\x5d\x0a\x0a\x20\x20\x20\x20\x57\x69\x74\x68\x6f\x75\x74\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x70\x72\x69\x6e\x74\x20\x73\x6f\x6d\x65\x20\x75\x73\x65\x66\x75\x6c\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x0a\x20\x20\x20\x20\x57\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x70\x72\x69\x6e\x74\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x55\x53\x45\x52\x5f\x42\x41\x53\x45\x20\x61\x6e\x64\x2f\x6f\x72\x20\x55\x53\x45\x52\x5f\x53\x49\x54\x45\x20\x73\x65\x70\x61\x72\x61\x74\x65\x64\x0a\x20\x20\x20\x20\x62\x79\x20\x27\x25\x73\x27\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x69\x74\x20\x63\x6f\x64\x65\x73\x20\x77\x69\x74\x68\x20\x2d\x2d\x75\x73\x65\x72\x2d\x62\x61\x73\x65\x20\x6f\x72\x20\x2d\x2d\x75\x73\x65\x72\x2d\x73\x69\x74\x65\x3a\x0a\x20\x20\x20\x20\x20\x20\x30\x20\x2d\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x65\x6e\x61\x62\x6c\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x31\x20\x2d\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x20\x62\x79\x20\x75\x73\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x32\x20\x2d\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x20\x62\x79\x20\x73\x75\x70\x65\x72\x20\x75\x73\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x20\x66\x6f\x72\x20\x73\x65\x63\x75\x72\x69\x74\x79\x20\x72\x65\x61\x73\x6f\x6e\x73\x0a\x20\x20\x20\x20\x20\x3e\x32\x20\x2d\x20\x75\x6e\x6b\x6e\x6f\x77\x6e\x20\x65\x72\x72\x6f\x72\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +site_toplevel_consts_26_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "sys.path = [", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +site_toplevel_consts_26_consts_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +site_toplevel_consts_26_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ",", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +site_toplevel_consts_26_consts_7_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "doesn't exist", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_26_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & const_str_exists._ascii.ob_base, + & site_toplevel_consts_26_consts_7_consts_2._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +site_toplevel_consts_26_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_isdir._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +site_toplevel_consts_26_consts_7_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_script..exists", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[38]; + } +site_toplevel_consts_26_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 37, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x13\xd0\x0f\x1f\xa5\x42\xa4\x47\xa7\x4d\xa2\x4d\xb0\x24\xd1\x24\x37\xd4\x24\x37\xd0\x0f\x1f\xd8\x17\x1f\x90\x78\xe0\x17\x26\x90\x7f", +}; +static + struct _PyCode_DEF(76) +site_toplevel_consts_26_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 38, + }, + .co_consts = & site_toplevel_consts_26_consts_7_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_26_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 19, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 651, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str_exists._ascii.ob_base, + .co_qualname = & site_toplevel_consts_26_consts_7_qualname._ascii.ob_base, + .co_linetable = & site_toplevel_consts_26_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x81\x21\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +site_toplevel_consts_26_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "USER_BASE: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +site_toplevel_consts_26_consts_11 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "USER_SITE: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +site_toplevel_consts_26_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ENABLE_USER_SITE: ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +site_toplevel_consts_26_consts_14 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "--user-base", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +site_toplevel_consts_26_consts_15 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "--user-site", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[20]; + }_object; + } +site_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 20, + }, + .ob_item = { + Py_None, + & site_toplevel_consts_26_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & site_toplevel_consts_26_consts_3._ascii.ob_base, + & site_toplevel_consts_26_consts_4._ascii.ob_base, + & site_toplevel_consts_26_consts_5._ascii.ob_base, + & _collections_abc_toplevel_consts_44_consts_4_consts_8._ascii.ob_base, + & site_toplevel_consts_26_consts_7.ob_base.ob_base, + & site_toplevel_consts_26_consts_8._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_37_consts_3_consts_3._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_55_consts_6._ascii.ob_base, + & site_toplevel_consts_26_consts_11._ascii.ob_base, + & site_toplevel_consts_26_consts_12._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & site_toplevel_consts_26_consts_14._ascii.ob_base, + & site_toplevel_consts_26_consts_15._ascii.ob_base, + Py_False, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 10], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_argv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "argv", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_textwrap = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "textwrap", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_dedent = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "dedent", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[16]; + }_object; + } +site_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 16, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + & const_str_argv._ascii.ob_base, + & const_str_getuserbase._ascii.ob_base, + & const_str_getusersitepackages._ascii.ob_base, + & const_str_print._ascii.ob_base, + &_Py_ID(path), + & const_str_ENABLE_USER_SITE._ascii.ob_base, + & const_str_exit._ascii.ob_base, + &_Py_ID(append), + & const_str_USER_BASE._ascii.ob_base, + & const_str_USER_SITE._ascii.ob_base, + & const_str_os._ascii.ob_base, + & const_str_pathsep._ascii.ob_base, + &_Py_ID(join), + & const_str_textwrap._ascii.ob_base, + & const_str_dedent._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str__script = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_script", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[527]; + } +site_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 526, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x02\x0d\x0c\x08\x80\x44\xf5\x1c\x00\x0c\x0f\x8c\x38\x90\x41\x90\x42\x90\x42\x8c\x3c\x80\x44\xd8\x0b\x0f\xf0\x00\x0f\x05\x14\xdd\x14\x1f\x91\x4d\x94\x4d\x88\x09\xdd\x14\x27\xd1\x14\x29\xd4\x14\x29\x88\x09\xdd\x08\x0d\x88\x6e\xd1\x08\x1d\xd4\x08\x1d\xd0\x08\x1d\xdd\x13\x16\x94\x38\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\x88\x43\xdd\x0c\x11\x88\x45\x98\x73\x98\x73\x98\x73\xd0\x12\x24\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xdd\x08\x0d\x88\x63\x89\x0a\x8c\x0a\x88\x0a\xf0\x02\x04\x09\x27\xf0\x00\x04\x09\x27\xf0\x00\x04\x09\x27\xf5\x0a\x00\x09\x0e\xd0\x0e\x3f\x98\x49\xd0\x0e\x3f\xd0\x0e\x3f\xa8\x36\xa8\x36\xb0\x29\xd1\x2b\x3c\xd4\x2b\x3c\xd0\x0e\x3f\xd0\x0e\x3f\xd0\x0e\x3f\xd1\x08\x40\xd4\x08\x40\xd0\x08\x40\xdd\x08\x0d\xd0\x0e\x3f\x98\x49\xd0\x0e\x3f\xd0\x0e\x3f\xa8\x36\xa8\x36\xb0\x29\xd1\x2b\x3c\xd4\x2b\x3c\xd0\x0e\x3f\xd0\x0e\x3f\xd0\x0e\x3f\xd1\x08\x40\xd4\x08\x40\xd0\x08\x40\xdd\x08\x0d\xd0\x0e\x37\xd5\x23\x33\xd0\x0e\x37\xd0\x0e\x37\xd1\x08\x38\xd4\x08\x38\xd0\x08\x38\xdd\x08\x0b\x8c\x08\x90\x11\x89\x0b\x8c\x0b\x88\x0b\xe0\x0d\x0f\x80\x46\xd8\x07\x14\x98\x04\xd0\x07\x1c\xd0\x07\x1c\xd8\x08\x0e\x8f\x0d\x8a\x0d\x95\x69\xd1\x08\x20\xd4\x08\x20\xd0\x08\x20\xd8\x07\x14\x98\x04\xd0\x07\x1c\xd0\x07\x1c\xd8\x08\x0e\x8f\x0d\x8a\x0d\x95\x69\xd1\x08\x20\xd4\x08\x20\xd0\x08\x20\xe0\x07\x0d\xf0\x00\x0d\x05\x15\xdd\x08\x0d\x8d\x62\x8c\x6a\x8f\x6f\x8a\x6f\x98\x66\xd1\x0e\x25\xd4\x0e\x25\xd1\x08\x26\xd4\x08\x26\xd0\x08\x26\xdd\x0b\x1b\xf0\x00\x07\x09\x18\xdd\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xdd\x0d\x1d\xa0\x15\xd0\x0d\x26\xd0\x0d\x26\xdd\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xdd\x0d\x1d\xd0\x0d\x25\xdd\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xe5\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xe0\x08\x17\x88\x0f\x88\x0f\x88\x0f\xdd\x08\x0d\x88\x68\x8f\x6f\x8a\x6f\x98\x64\xa5\x63\xa4\x68\xa8\x71\xa4\x6b\xb5\x32\xb4\x3a\xd0\x25\x3e\xd1\x1e\x3e\xd1\x0e\x3f\xd4\x0e\x3f\xd1\x08\x40\xd4\x08\x40\xd0\x08\x40\xdd\x08\x0b\x8c\x08\x90\x12\x89\x0c\x8c\x0c\x88\x0c\x88\x0c\x88\x0c", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_user_base = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "user_base", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +site_toplevel_consts_26_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_help._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_user_base._ascii.ob_base, + & const_str_user_site._ascii.ob_base, + & const_str_dir._ascii.ob_base, + & const_str_exists._ascii.ob_base, + &_Py_ID(buffer), + & const_str_textwrap._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(1070) +site_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 535, + }, + .co_consts = & site_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 628, + .co_nlocalsplus = 8, + .co_nlocals = 8, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & site_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = & const_str__script._ascii.ob_base, + .co_qualname = & const_str__script._ascii.ob_base, + .co_linetable = & site_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7d\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x73\xc8\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x15\x7d\x04\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x04\x9b\x02\x64\x05\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x16\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x07\x84\x00\x7d\x05\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x02\x9b\x02\x64\x09\x02\x00\x7c\x05\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0a\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x7c\x03\x9b\x02\x64\x09\x02\x00\x7c\x05\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0a\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x67\x00\x7d\x06\x64\x0e\x7c\x01\x76\x00\x72\x1a\x7c\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x0f\x7c\x01\x76\x00\x72\x1a\x7c\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x06\x72\x9b\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x16\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\x75\x00\x72\x16\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x16\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x12\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x0d\x64\x00\x6c\x0e\x7d\x07\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x13\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[29]; + }_object; + } +site_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 29, + }, + .ob_item = { + & site_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & site_toplevel_consts_3.ob_base.ob_base, + & site_toplevel_consts_4.ob_base.ob_base, + & site_toplevel_consts_5.ob_base.ob_base, + & site_toplevel_consts_6.ob_base.ob_base, + & site_toplevel_consts_7.ob_base.ob_base, + & site_toplevel_consts_8.ob_base.ob_base, + & site_toplevel_consts_9.ob_base.ob_base, + & site_toplevel_consts_10.ob_base.ob_base, + & site_toplevel_consts_11.ob_base.ob_base, + & site_toplevel_consts_12.ob_base.ob_base, + & site_toplevel_consts_13.ob_base.ob_base, + & site_toplevel_consts_14.ob_base.ob_base, + & site_toplevel_consts_15.ob_base.ob_base, + & site_toplevel_consts_16.ob_base.ob_base, + & site_toplevel_consts_17.ob_base.ob_base, + & site_toplevel_consts_18.ob_base.ob_base, + & site_toplevel_consts_19.ob_base.ob_base, + & site_toplevel_consts_20.ob_base.ob_base, + & site_toplevel_consts_21.ob_base.ob_base, + & site_toplevel_consts_22.ob_base.ob_base, + & site_toplevel_consts_23.ob_base.ob_base, + & site_toplevel_consts_24.ob_base.ob_base, + & site_toplevel_consts_25.ob_base.ob_base, + & site_toplevel_consts_26.ob_base.ob_base, + &_Py_ID(__main__), + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_no_site = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "no_site", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[40]; + }_object; + } +site_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 40, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_sys._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(builtins), + & const_str__sitebuiltins._ascii.ob_base, + & const_str_io._ascii.ob_base, + & const_str_stat._ascii.ob_base, + & const_str_prefix._ascii.ob_base, + & const_str_exec_prefix._ascii.ob_base, + & const_str_PREFIXES._ascii.ob_base, + & const_str_ENABLE_USER_SITE._ascii.ob_base, + & const_str_USER_SITE._ascii.ob_base, + & const_str_USER_BASE._ascii.ob_base, + & const_str__trace._ascii.ob_base, + & const_str_makepath._ascii.ob_base, + & const_str_abs_paths._ascii.ob_base, + & const_str_removeduppaths._ascii.ob_base, + & const_str__init_pathinfo._ascii.ob_base, + & const_str_addpackage._ascii.ob_base, + & const_str_addsitedir._ascii.ob_base, + & const_str_check_enableusersite._ascii.ob_base, + & const_str__getuserbase._ascii.ob_base, + & const_str__get_path._ascii.ob_base, + & const_str_getuserbase._ascii.ob_base, + & const_str_getusersitepackages._ascii.ob_base, + & const_str_addusersitepackages._ascii.ob_base, + & const_str_getsitepackages._ascii.ob_base, + & const_str_addsitepackages._ascii.ob_base, + & const_str_setquit._ascii.ob_base, + & const_str_setcopyright._ascii.ob_base, + & const_str_sethelper._ascii.ob_base, + & const_str_enablerlcompleter._ascii.ob_base, + & const_str_venv._ascii.ob_base, + & const_str_execsitecustomize._ascii.ob_base, + & const_str_execusercustomize._ascii.ob_base, + & const_str_main._ascii.ob_base, + & const_str_flags._ascii.ob_base, + & const_str_no_site._ascii.ob_base, + & const_str__script._ascii.ob_base, + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[560]; + } +site_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 559, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x45\x01\x01\x04\xf0\x00\x45\x01\x01\x04\xf0\x4e\x02\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0f\x80\x0f\x80\x0f\x80\x0f\xd8\x00\x14\xd0\x00\x14\xd0\x00\x14\xd0\x00\x14\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xf0\x06\x00\x0d\x10\x8c\x4a\x98\x03\x9c\x0f\xd0\x0b\x28\x80\x08\xf0\x06\x00\x14\x18\xd0\x00\x10\xf0\x0a\x00\x0d\x11\x80\x09\xd8\x0c\x10\x80\x09\xf0\x06\x02\x01\x28\xf0\x00\x02\x01\x28\xf0\x00\x02\x01\x28\xf0\x0a\x06\x01\x26\xf0\x00\x06\x01\x26\xf0\x00\x06\x01\x26\xf0\x12\x14\x01\x11\xf0\x00\x14\x01\x11\xf0\x00\x14\x01\x11\xf0\x2e\x10\x01\x17\xf0\x00\x10\x01\x17\xf0\x00\x10\x01\x17\xf0\x26\x0a\x01\x0d\xf0\x00\x0a\x01\x0d\xf0\x00\x0a\x01\x0d\xf0\x1a\x34\x01\x17\xf0\x00\x34\x01\x17\xf0\x00\x34\x01\x17\xf0\x6e\x01\x17\x01\x17\xf0\x00\x17\x01\x17\xf0\x00\x17\x01\x17\xf0\x00\x17\x01\x17\xf0\x34\x16\x01\x10\xf0\x00\x16\x01\x10\xf0\x00\x16\x01\x10\xf0\x40\x01\x14\x01\x23\xf0\x00\x14\x01\x23\xf0\x00\x14\x01\x23\xf0\x30\x0a\x01\x4b\x01\xf0\x00\x0a\x01\x4b\x01\xf0\x00\x0a\x01\x4b\x01\xf0\x1a\x0a\x01\x15\xf0\x00\x0a\x01\x15\xf0\x00\x0a\x01\x15\xf0\x1a\x0f\x01\x15\xf0\x00\x0f\x01\x15\xf0\x00\x0f\x01\x15\xf0\x22\x0d\x01\x17\xf0\x00\x0d\x01\x17\xf0\x00\x0d\x01\x17\xf0\x1e\x1f\x01\x18\xf0\x00\x1f\x01\x18\xf0\x00\x1f\x01\x18\xf0\x00\x1f\x01\x18\xf0\x42\x01\x07\x01\x17\xf0\x00\x07\x01\x17\xf0\x00\x07\x01\x17\xf0\x00\x07\x01\x17\xf0\x12\x0d\x01\x37\xf0\x00\x0d\x01\x37\xf0\x00\x0d\x01\x37\xf0\x20\x17\x01\x15\xf0\x00\x17\x01\x15\xf0\x00\x17\x01\x15\xf0\x34\x01\x01\x2c\xf0\x00\x01\x01\x2c\xf0\x00\x01\x01\x2c\xf0\x06\x39\x01\x30\xf0\x00\x39\x01\x30\xf0\x00\x39\x01\x30\xf0\x76\x01\x31\x01\x17\xf0\x00\x31\x01\x17\xf0\x00\x31\x01\x17\xf0\x68\x01\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x28\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x28\x1b\x01\x1c\xf0\x00\x1b\x01\x1c\xf0\x00\x1b\x01\x1c\xf0\x3e\x00\x08\x0b\x84\x79\xd4\x07\x18\xf0\x00\x01\x01\x0b\xd8\x04\x08\x80\x44\x81\x46\x84\x46\x80\x46\xf0\x04\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x6c\x01\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xd8\x04\x0b\x80\x47\x81\x49\x84\x49\x80\x49\x80\x49\x80\x49\xf0\x03\x00\x04\x1a\xd0\x03\x19", +}; +static + struct _PyCode_DEF(328) +site_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 164, + }, + .co_consts = & site_toplevel_consts._object.ob_base.ob_base, + .co_names = & site_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & site_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x64\x01\x64\x02\x6c\x03\x5a\x03\x64\x01\x64\x02\x6c\x04\x5a\x04\x64\x01\x64\x02\x6c\x05\x5a\x05\x64\x01\x64\x02\x6c\x06\x5a\x06\x65\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x65\x01\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x67\x02\x61\x09\x64\x02\x61\x0a\x64\x02\x61\x0b\x64\x02\x61\x0c\x64\x03\x84\x00\x5a\x0d\x64\x04\x84\x00\x5a\x0e\x64\x05\x84\x00\x5a\x0f\x64\x06\x84\x00\x5a\x10\x64\x07\x84\x00\x5a\x11\x64\x08\x84\x00\x5a\x12\x64\x1c\x64\x09\x84\x01\x5a\x13\x64\x0a\x84\x00\x5a\x14\x64\x0b\x84\x00\x5a\x15\x64\x0c\x84\x00\x5a\x16\x64\x0d\x84\x00\x5a\x17\x64\x0e\x84\x00\x5a\x18\x64\x0f\x84\x00\x5a\x19\x64\x1c\x64\x10\x84\x01\x5a\x1a\x64\x1c\x64\x11\x84\x01\x5a\x1b\x64\x12\x84\x00\x5a\x1c\x64\x13\x84\x00\x5a\x1d\x64\x14\x84\x00\x5a\x1e\x64\x15\x84\x00\x5a\x1f\x64\x16\x84\x00\x5a\x20\x64\x17\x84\x00\x5a\x21\x64\x18\x84\x00\x5a\x22\x64\x19\x84\x00\x5a\x23\x65\x01\x6a\x24\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x25\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0a\x02\x00\x65\x23\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x1a\x84\x00\x5a\x26\x65\x27\x64\x1b\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x26\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void site_do_patchups(void) { +} + +PyObject * +_Py_get_site_toplevel(void) +{ + site_do_patchups(); + return Py_NewRef((PyObject *) &site_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[112]; + } +stat_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 111, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x43\x6f\x6e\x73\x74\x61\x6e\x74\x73\x2f\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x66\x6f\x72\x20\x69\x6e\x74\x65\x72\x70\x72\x65\x74\x69\x6e\x67\x20\x72\x65\x73\x75\x6c\x74\x73\x20\x6f\x66\x20\x6f\x73\x2e\x73\x74\x61\x74\x28\x29\x20\x61\x6e\x64\x20\x6f\x73\x2e\x6c\x73\x74\x61\x74\x28\x29\x2e\x0a\x0a\x53\x75\x67\x67\x65\x73\x74\x65\x64\x20\x75\x73\x61\x67\x65\x3a\x20\x66\x72\x6f\x6d\x20\x73\x74\x61\x74\x20\x69\x6d\x70\x6f\x72\x74\x20\x2a\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[78]; + } +stat_toplevel_consts_11_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 77, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x6f\x72\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x27\x73\x20\x6d\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x73\x65\x74\x20\x62\x79\x0a\x20\x20\x20\x20\x6f\x73\x2e\x63\x68\x6d\x6f\x64\x28\x29\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_4095 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 4095 }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & stat_toplevel_consts_11_consts_0._ascii.ob_base, + & const_int_4095.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +stat_toplevel_consts_11_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IMODE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IMODE", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +stat_toplevel_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x0c\x10\x90\x26\x89\x3d\xd0\x04\x18", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + &_Py_ID(mode), + }, + }, +}; +static + struct _PyCode_DEF(12) +stat_toplevel_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 6, + }, + .co_consts = & stat_toplevel_consts_11_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 21, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_IMODE._ascii.ob_base, + .co_qualname = & const_str_S_IMODE._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x64\x01\x7a\x01\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[77]; + } +stat_toplevel_consts_12_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 76, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x6f\x72\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x27\x73\x20\x6d\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x64\x65\x73\x63\x72\x69\x62\x65\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x20\x74\x79\x70\x65\x2e\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & stat_toplevel_consts_12_consts_0._ascii.ob_base, + & const_int_61440.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_S_IFMT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFMT", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[15]; + } +stat_toplevel_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 14, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x0c\x10\x90\x28\x89\x3f\xd0\x04\x1a", +}; +static + struct _PyCode_DEF(12) +stat_toplevel_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 6, + }, + .co_consts = & stat_toplevel_consts_12_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 27, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_IFMT._ascii.ob_base, + .co_qualname = & const_str_S_IFMT._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x64\x01\x7a\x01\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_8192 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 8192 }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_24576 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 24576 }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_4096 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 4096 }, +}; +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_40960 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 8192, 1 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_40960 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 40960 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_49152 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 16384, 1 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_49152 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 49152 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +static + struct { + PyASCIIObject _ascii; + uint8_t _data[41]; + } +stat_toplevel_consts_20_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 40, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a directory.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_20_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & stat_toplevel_consts_20_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IFDIR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFDIR", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFDIR._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +stat_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x11\x90\x24\x89\x3c\x8c\x3c\x9d\x37\xd2\x0b\x22\xd0\x04\x22", +}; +static + struct _PyCode_DEF(50) +stat_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & stat_toplevel_consts_20_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 50, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISDIR._ascii.ob_base, + .co_qualname = & const_str_S_ISDIR._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[61]; + } +stat_toplevel_consts_21_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 60, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a character special device file.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_21_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & stat_toplevel_consts_21_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IFCHR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFCHR", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_21_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFCHR._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISCHR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISCHR", +}; +static + struct _PyCode_DEF(50) +stat_toplevel_consts_21 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & stat_toplevel_consts_21_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 54, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISCHR._ascii.ob_base, + .co_qualname = & const_str_S_ISCHR._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[57]; + } +stat_toplevel_consts_22_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 56, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a block special device file.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & stat_toplevel_consts_22_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IFBLK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFBLK", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_22_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFBLK._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISBLK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISBLK", +}; +static + struct _PyCode_DEF(50) +stat_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & stat_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_22_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 58, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISBLK._ascii.ob_base, + .co_qualname = & const_str_S_ISBLK._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[44]; + } +stat_toplevel_consts_23_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 43, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a regular file.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_23_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & stat_toplevel_consts_23_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IFREG = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFREG", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_23_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFREG._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(50) +stat_toplevel_consts_23 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & stat_toplevel_consts_23_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 62, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISREG._ascii.ob_base, + .co_qualname = & const_str_S_ISREG._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[49]; + } +stat_toplevel_consts_24_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 48, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a FIFO (named pipe).", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & stat_toplevel_consts_24_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IFIFO = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFIFO", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFIFO._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_ISFIFO = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISFIFO", +}; +static + struct _PyCode_DEF(50) +stat_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & stat_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 66, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISFIFO._ascii.ob_base, + .co_qualname = & const_str_S_ISFIFO._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[45]; + } +stat_toplevel_consts_25_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 44, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a symbolic link.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_25_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & stat_toplevel_consts_25_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IFLNK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFLNK", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_25_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFLNK._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(50) +stat_toplevel_consts_25 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & stat_toplevel_consts_25_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_25_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 70, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISLNK._ascii.ob_base, + .co_qualname = & const_str_S_ISLNK._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +stat_toplevel_consts_26_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a socket.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +stat_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & stat_toplevel_consts_26_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_IFSOCK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFSOCK", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFSOCK._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_ISSOCK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISSOCK", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +stat_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x11\x90\x24\x89\x3c\x8c\x3c\x9d\x38\xd2\x0b\x23\xd0\x04\x23", +}; +static + struct _PyCode_DEF(50) +stat_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 25, + }, + .co_consts = & stat_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 74, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISSOCK._ascii.ob_base, + .co_qualname = & const_str_S_ISSOCK._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +stat_toplevel_consts_27_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a door.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_27_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & stat_toplevel_consts_27_consts_0._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_ISDOOR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISDOOR", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[8]; + } +stat_toplevel_consts_27_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 7, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x10\x88\x35", +}; +static + struct _PyCode_DEF(6) +stat_toplevel_consts_27 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & stat_toplevel_consts_27_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 78, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISDOOR._ascii.ob_base, + .co_qualname = & const_str_S_ISDOOR._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_27_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[43]; + } +stat_toplevel_consts_28_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 42, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from an event port.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_28_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & stat_toplevel_consts_28_consts_0._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_ISPORT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISPORT", +}; +static + struct _PyCode_DEF(6) +stat_toplevel_consts_28 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & stat_toplevel_consts_28_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 82, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISPORT._ascii.ob_base, + .co_qualname = & const_str_S_ISPORT._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_27_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[40]; + } +stat_toplevel_consts_29_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 39, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return True if mode is from a whiteout.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +stat_toplevel_consts_29_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & stat_toplevel_consts_29_consts_0._ascii.ob_base, + Py_False, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISWHT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISWHT", +}; +static + struct _PyCode_DEF(6) +stat_toplevel_consts_29 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & stat_toplevel_consts_29_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 86, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_S_ISWHT._ascii.ob_base, + .co_qualname = & const_str_S_ISWHT._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_27_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_1024 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 1024 }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_512 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 512 }, +}; +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_448 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 448 }, +}; +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_65536 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 0, 2 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_65536 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 65536 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_131072 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 0, 4 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_131072 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 131072 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_262144 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 0, 8 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_262144 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 262144 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_1048576 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 0, 32 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_1048576 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 1048576 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +#if PYLONG_BITS_IN_DIGIT == 15 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[2]; + } +const_int_2097152 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 2, + }, + .ob_digit = { 0, 64 }, +}; +#elif PYLONG_BITS_IN_DIGIT == 30 +static + struct { + PyObject_VAR_HEAD + digit ob_digit[1]; + } +const_int_2097152 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyLong_Type, + }, + .ob_size = 1, + }, + .ob_digit = { 2097152 }, +}; +#else +#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" +#endif +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_l = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "l", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +stat_toplevel_consts_47 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "-", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_S = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[2]; + } +const_str_T = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "T", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[60]; + } +stat_toplevel_consts_58_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 59, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Convert a file's mode to a string of the form '-rwxrwxrwx'.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +stat_toplevel_consts_58_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & stat_toplevel_consts_58_consts_0._ascii.ob_base, + & stat_toplevel_consts_47._ascii.ob_base, + &_Py_STR(empty), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__filemode_table = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_filemode_table", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +stat_toplevel_consts_58_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str__filemode_table._ascii.ob_base, + &_Py_ID(append), + &_Py_ID(join), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_filemode = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "filemode", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[122]; + } +stat_toplevel_consts_58_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 121, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0d\x80\x44\xdd\x11\x20\xf0\x00\x06\x05\x1d\xf0\x00\x06\x05\x1d\x88\x05\xd8\x19\x1e\xf0\x00\x05\x09\x1d\xf0\x00\x05\x09\x1d\x89\x49\x88\x43\x90\x14\xd8\x0f\x13\x90\x63\x89\x7a\x98\x53\xd2\x0f\x20\xd0\x0f\x20\xd8\x10\x14\x97\x0b\x92\x0b\x98\x44\xd1\x10\x21\xd4\x10\x21\xd0\x10\x21\xd8\x10\x15\x90\x05\xf0\x05\x00\x10\x21\xf0\x08\x00\x0d\x11\x8f\x4b\x8a\x4b\x98\x03\xd1\x0c\x1c\xd4\x0c\x1c\xd0\x0c\x1c\xf8\xd8\x0b\x0d\x8f\x37\x8a\x37\x90\x34\x89\x3d\x8c\x3d\xd0\x04\x18", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_perm = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "perm", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_table = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "table", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_bit = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "bit", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_char = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "char", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +stat_toplevel_consts_58_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(mode), + & const_str_perm._ascii.ob_base, + & const_str_table._ascii.ob_base, + & const_str_bit._ascii.ob_base, + & const_str_char._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(190) +stat_toplevel_consts_58 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 95, + }, + .co_consts = & stat_toplevel_consts_58_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_consts_58_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 156, + .co_nlocalsplus = 5, + .co_nlocals = 5, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & stat_toplevel_consts_58_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = & const_str_filemode._ascii.ob_base, + .co_qualname = & const_str_filemode._ascii.ob_base, + .co_linetable = & stat_toplevel_consts_58_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x67\x00\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x3f\x7d\x02\x7c\x02\x44\x00\x5d\x25\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x00\x7c\x03\x7a\x01\x00\x00\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x17\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00\x6e\x16\x8c\x26\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x40\x64\x02\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[61]; + }_object; + } +stat_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 61, + }, + .ob_item = { + & stat_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 6], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 7], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 9], + & stat_toplevel_consts_11.ob_base.ob_base, + & stat_toplevel_consts_12.ob_base.ob_base, + & const_int_16384.ob_base.ob_base, + & const_int_8192.ob_base.ob_base, + & const_int_24576.ob_base.ob_base, + & const_int_32768.ob_base.ob_base, + & const_int_4096.ob_base.ob_base, + & const_int_40960.ob_base.ob_base, + & const_int_49152.ob_base.ob_base, + & stat_toplevel_consts_20.ob_base.ob_base, + & stat_toplevel_consts_21.ob_base.ob_base, + & stat_toplevel_consts_22.ob_base.ob_base, + & stat_toplevel_consts_23.ob_base.ob_base, + & stat_toplevel_consts_24.ob_base.ob_base, + & stat_toplevel_consts_25.ob_base.ob_base, + & stat_toplevel_consts_26.ob_base.ob_base, + & stat_toplevel_consts_27.ob_base.ob_base, + & stat_toplevel_consts_28.ob_base.ob_base, + & stat_toplevel_consts_29.ob_base.ob_base, + & const_int_2048.ob_base.ob_base, + & const_int_1024.ob_base.ob_base, + & const_int_512.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 256], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 128], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 64], + & const_int_448.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 56], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], + & const_int_65536.ob_base.ob_base, + & const_int_131072.ob_base.ob_base, + & const_int_262144.ob_base.ob_base, + & const_int_1048576.ob_base.ob_base, + & const_int_2097152.ob_base.ob_base, + & const_str_l._ascii.ob_base, + & const_str_s._ascii.ob_base, + & stat_toplevel_consts_47._ascii.ob_base, + & const_str_b._ascii.ob_base, + & const_str_d._ascii.ob_base, + & const_str_c._ascii.ob_base, + & const_str_p._ascii.ob_base, + & const_str_r._ascii.ob_base, + & const_str_w._ascii.ob_base, + & const_str_S._ascii.ob_base, + & const_str_x._ascii.ob_base, + & const_str_t._ascii.ob_base, + & const_str_T._ascii.ob_base, + & stat_toplevel_consts_58.ob_base.ob_base, + & codecs_toplevel_consts_3._object.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_ST_MODE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_MODE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_ST_INO = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_INO", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_ST_DEV = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_DEV", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_ST_NLINK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_NLINK", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_ST_UID = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_UID", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_ST_GID = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_GID", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_ST_SIZE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_SIZE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_ST_ATIME = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_ATIME", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_ST_MTIME = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_MTIME", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_ST_CTIME = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ST_CTIME", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_IFDOOR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFDOOR", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_IFPORT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFPORT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IFWHT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IFWHT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISUID = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISUID", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISGID = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISGID", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ENFMT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ENFMT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_ISVTX = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_ISVTX", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IREAD = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IREAD", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_S_IWRITE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IWRITE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IEXEC = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IEXEC", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IRWXU = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IRWXU", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IRUSR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IRUSR", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IWUSR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IWUSR", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IXUSR = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IXUSR", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IRWXG = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IRWXG", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IRGRP = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IRGRP", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IWGRP = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IWGRP", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IXGRP = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IXGRP", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IRWXO = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IRWXO", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IROTH = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IROTH", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IWOTH = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IWOTH", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_S_IXOTH = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "S_IXOTH", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_UF_NODUMP = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UF_NODUMP", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_UF_IMMUTABLE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UF_IMMUTABLE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_UF_APPEND = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UF_APPEND", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_UF_OPAQUE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UF_OPAQUE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_UF_NOUNLINK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UF_NOUNLINK", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_UF_COMPRESSED = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "UF_COMPRESSED", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_SF_ARCHIVED = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SF_ARCHIVED", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_SF_IMMUTABLE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SF_IMMUTABLE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_SF_APPEND = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SF_APPEND", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_SF_NOUNLINK = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SF_NOUNLINK", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_SF_SNAPSHOT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "SF_SNAPSHOT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str_FILE_ATTRIBUTE_ARCHIVE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_ARCHIVE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +const_str_FILE_ATTRIBUTE_COMPRESSED = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_COMPRESSED", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_FILE_ATTRIBUTE_DEVICE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_DEVICE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str_FILE_ATTRIBUTE_DIRECTORY = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_DIRECTORY", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str_FILE_ATTRIBUTE_ENCRYPTED = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_ENCRYPTED", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +const_str_FILE_ATTRIBUTE_INTEGRITY_STREAM = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_INTEGRITY_STREAM", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_FILE_ATTRIBUTE_NORMAL = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_NORMAL", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[35]; + } +const_str_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 34, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_NOT_CONTENT_INDEXED", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +const_str_FILE_ATTRIBUTE_NO_SCRUB_DATA = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_NO_SCRUB_DATA", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str_FILE_ATTRIBUTE_OFFLINE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_OFFLINE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +const_str_FILE_ATTRIBUTE_READONLY = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_READONLY", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +const_str_FILE_ATTRIBUTE_REPARSE_POINT = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_REPARSE_POINT", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[27]; + } +const_str_FILE_ATTRIBUTE_SPARSE_FILE = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 26, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_SPARSE_FILE", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +const_str_FILE_ATTRIBUTE_SYSTEM = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_SYSTEM", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str_FILE_ATTRIBUTE_TEMPORARY = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_TEMPORARY", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +const_str_FILE_ATTRIBUTE_VIRTUAL = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "FILE_ATTRIBUTE_VIRTUAL", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str__stat = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_stat", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[85]; + }_object; + } +stat_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 85, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_ST_MODE._ascii.ob_base, + & const_str_ST_INO._ascii.ob_base, + & const_str_ST_DEV._ascii.ob_base, + & const_str_ST_NLINK._ascii.ob_base, + & const_str_ST_UID._ascii.ob_base, + & const_str_ST_GID._ascii.ob_base, + & const_str_ST_SIZE._ascii.ob_base, + & const_str_ST_ATIME._ascii.ob_base, + & const_str_ST_MTIME._ascii.ob_base, + & const_str_ST_CTIME._ascii.ob_base, + & const_str_S_IMODE._ascii.ob_base, + & const_str_S_IFMT._ascii.ob_base, + & const_str_S_IFDIR._ascii.ob_base, + & const_str_S_IFCHR._ascii.ob_base, + & const_str_S_IFBLK._ascii.ob_base, + & const_str_S_IFREG._ascii.ob_base, + & const_str_S_IFIFO._ascii.ob_base, + & const_str_S_IFLNK._ascii.ob_base, + & const_str_S_IFSOCK._ascii.ob_base, + & const_str_S_IFDOOR._ascii.ob_base, + & const_str_S_IFPORT._ascii.ob_base, + & const_str_S_IFWHT._ascii.ob_base, + & const_str_S_ISDIR._ascii.ob_base, + & const_str_S_ISCHR._ascii.ob_base, + & const_str_S_ISBLK._ascii.ob_base, + & const_str_S_ISREG._ascii.ob_base, + & const_str_S_ISFIFO._ascii.ob_base, + & const_str_S_ISLNK._ascii.ob_base, + & const_str_S_ISSOCK._ascii.ob_base, + & const_str_S_ISDOOR._ascii.ob_base, + & const_str_S_ISPORT._ascii.ob_base, + & const_str_S_ISWHT._ascii.ob_base, + & const_str_S_ISUID._ascii.ob_base, + & const_str_S_ISGID._ascii.ob_base, + & const_str_S_ENFMT._ascii.ob_base, + & const_str_S_ISVTX._ascii.ob_base, + & const_str_S_IREAD._ascii.ob_base, + & const_str_S_IWRITE._ascii.ob_base, + & const_str_S_IEXEC._ascii.ob_base, + & const_str_S_IRWXU._ascii.ob_base, + & const_str_S_IRUSR._ascii.ob_base, + & const_str_S_IWUSR._ascii.ob_base, + & const_str_S_IXUSR._ascii.ob_base, + & const_str_S_IRWXG._ascii.ob_base, + & const_str_S_IRGRP._ascii.ob_base, + & const_str_S_IWGRP._ascii.ob_base, + & const_str_S_IXGRP._ascii.ob_base, + & const_str_S_IRWXO._ascii.ob_base, + & const_str_S_IROTH._ascii.ob_base, + & const_str_S_IWOTH._ascii.ob_base, + & const_str_S_IXOTH._ascii.ob_base, + & const_str_UF_NODUMP._ascii.ob_base, + & const_str_UF_IMMUTABLE._ascii.ob_base, + & const_str_UF_APPEND._ascii.ob_base, + & const_str_UF_OPAQUE._ascii.ob_base, + & const_str_UF_NOUNLINK._ascii.ob_base, + & const_str_UF_COMPRESSED._ascii.ob_base, + & const_str_UF_HIDDEN._ascii.ob_base, + & const_str_SF_ARCHIVED._ascii.ob_base, + & const_str_SF_IMMUTABLE._ascii.ob_base, + & const_str_SF_APPEND._ascii.ob_base, + & const_str_SF_NOUNLINK._ascii.ob_base, + & const_str_SF_SNAPSHOT._ascii.ob_base, + & const_str__filemode_table._ascii.ob_base, + & const_str_filemode._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_ARCHIVE._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_COMPRESSED._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_DEVICE._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_DIRECTORY._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_ENCRYPTED._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_HIDDEN._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_INTEGRITY_STREAM._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_NORMAL._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_NO_SCRUB_DATA._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_OFFLINE._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_READONLY._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_REPARSE_POINT._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_SPARSE_FILE._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_SYSTEM._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_TEMPORARY._ascii.ob_base, + & const_str_FILE_ATTRIBUTE_VIRTUAL._ascii.ob_base, + & const_str__stat._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[876]; + } +stat_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 875, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x03\x01\x04\xf0\x00\x03\x01\x04\xf0\x0e\x00\x0c\x0d\x80\x07\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x07\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xf0\x08\x04\x01\x19\xf0\x00\x04\x01\x19\xf0\x00\x04\x01\x19\xf0\x0c\x04\x01\x1b\xf0\x00\x04\x01\x1b\xf0\x00\x04\x01\x1b\xf0\x12\x00\x0c\x14\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x08\xe0\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0a\x0b\x80\x07\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x24\xf0\x00\x02\x01\x24\xf0\x00\x02\x01\x24\xf0\x08\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x08\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x08\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x0c\x00\x0b\x11\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x11\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0b\x11\x80\x08\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xf0\x08\x00\x10\x1a\x80\x09\xd8\x0f\x19\x80\x0c\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x0b\xd8\x10\x1a\x80\x0d\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x0b\xd8\x0f\x19\x80\x0c\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x0b\xd8\x0f\x19\x80\x0b\xf0\x08\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd8\x06\x0e\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x0d\x06\x05\x1d\xf0\x10\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x88\x67\x81\x6f\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x05\x02\x05\x1d\xf0\x08\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x88\x67\x81\x6f\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x05\x02\x05\x1d\xf0\x08\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x88\x67\x81\x6f\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x05\x02\x05\x1d\xf0\x2f\x1a\x13\x02\x80\x0f\xf0\x38\x0a\x01\x19\xf0\x00\x0a\x01\x19\xf0\x00\x0a\x01\x19\xf0\x20\x00\x1a\x1c\xd0\x00\x16\xd8\x1c\x20\xd0\x00\x19\xd8\x18\x1a\xd0\x00\x15\xd8\x1b\x1d\xd0\x00\x18\xd8\x1b\x20\xd0\x00\x18\xd8\x18\x19\xd0\x00\x15\xd8\x22\x27\xd0\x00\x1f\xd8\x18\x1b\xd0\x00\x15\xd8\x25\x29\xd0\x00\x22\xd8\x1f\x25\xd0\x00\x1c\xd8\x19\x1d\xd0\x00\x16\xd8\x1a\x1b\xd0\x00\x17\xd8\x1f\x23\xd0\x00\x1c\xd8\x1d\x20\xd0\x00\x1a\xd8\x18\x19\xd0\x00\x15\xd8\x1b\x1e\xd0\x00\x18\xd8\x19\x1e\xd0\x00\x16\xf0\x08\x03\x01\x09\xd8\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xf8\xd8\x07\x12\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xd8\x04\x08\x80\x44\x80\x44\xf0\x03\x01\x01\x09\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[19]; + } +stat_toplevel_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 18, + }, + .ob_shash = -1, + .ob_sval = "\xc4\x0a\x04\x44\x10\x00\xc4\x10\x05\x44\x19\x03\xc4\x18\x01\x44\x19\x03", +}; +static + struct _PyCode_DEF(568) +stat_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 284, + }, + .co_consts = & stat_toplevel_consts._object.ob_base.ob_base, + .co_names = & stat_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = & stat_toplevel_exceptiontable.ob_base.ob_base, + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 13, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & stat_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x64\x02\x5a\x02\x64\x03\x5a\x03\x64\x04\x5a\x04\x64\x05\x5a\x05\x64\x06\x5a\x06\x64\x07\x5a\x07\x64\x08\x5a\x08\x64\x09\x5a\x09\x64\x0a\x5a\x0a\x64\x0b\x84\x00\x5a\x0b\x64\x0c\x84\x00\x5a\x0c\x64\x0d\x5a\x0d\x64\x0e\x5a\x0e\x64\x0f\x5a\x0f\x64\x10\x5a\x10\x64\x11\x5a\x11\x64\x12\x5a\x12\x64\x13\x5a\x13\x64\x01\x5a\x14\x64\x01\x5a\x15\x64\x01\x5a\x16\x64\x14\x84\x00\x5a\x17\x64\x15\x84\x00\x5a\x18\x64\x16\x84\x00\x5a\x19\x64\x17\x84\x00\x5a\x1a\x64\x18\x84\x00\x5a\x1b\x64\x19\x84\x00\x5a\x1c\x64\x1a\x84\x00\x5a\x1d\x64\x1b\x84\x00\x5a\x1e\x64\x1c\x84\x00\x5a\x1f\x64\x1d\x84\x00\x5a\x20\x64\x1e\x5a\x21\x64\x1f\x5a\x22\x65\x22\x5a\x23\x64\x20\x5a\x24\x64\x21\x5a\x25\x64\x22\x5a\x26\x64\x23\x5a\x27\x64\x24\x5a\x28\x64\x21\x5a\x29\x64\x22\x5a\x2a\x64\x23\x5a\x2b\x64\x25\x5a\x2c\x64\x26\x5a\x2d\x64\x27\x5a\x2e\x64\x09\x5a\x2f\x64\x08\x5a\x30\x64\x05\x5a\x31\x64\x03\x5a\x32\x64\x02\x5a\x33\x64\x02\x5a\x34\x64\x03\x5a\x35\x64\x05\x5a\x36\x64\x09\x5a\x37\x64\x27\x5a\x38\x64\x26\x5a\x39\x64\x10\x5a\x3a\x64\x28\x5a\x3b\x64\x29\x5a\x3c\x64\x2a\x5a\x3d\x64\x2b\x5a\x3e\x64\x2c\x5a\x3f\x65\x12\x64\x2d\x66\x02\x65\x13\x64\x2e\x66\x02\x65\x10\x64\x2f\x66\x02\x65\x0f\x64\x30\x66\x02\x65\x0d\x64\x31\x66\x02\x65\x0e\x64\x32\x66\x02\x65\x11\x64\x33\x66\x02\x66\x07\x65\x29\x64\x34\x66\x02\x66\x01\x65\x2a\x64\x35\x66\x02\x66\x01\x65\x2b\x65\x21\x7a\x07\x00\x00\x64\x2e\x66\x02\x65\x21\x64\x36\x66\x02\x65\x2b\x64\x37\x66\x02\x66\x03\x65\x2d\x64\x34\x66\x02\x66\x01\x65\x2e\x64\x35\x66\x02\x66\x01\x65\x2f\x65\x22\x7a\x07\x00\x00\x64\x2e\x66\x02\x65\x22\x64\x36\x66\x02\x65\x2f\x64\x37\x66\x02\x66\x03\x65\x31\x64\x34\x66\x02\x66\x01\x65\x32\x64\x35\x66\x02\x66\x01\x65\x33\x65\x24\x7a\x07\x00\x00\x64\x38\x66\x02\x65\x24\x64\x39\x66\x02\x65\x33\x64\x37\x66\x02\x66\x03\x66\x0a\x5a\x40\x64\x3a\x84\x00\x5a\x41\x64\x26\x5a\x42\x64\x1e\x5a\x43\x64\x23\x5a\x44\x64\x27\x5a\x45\x64\x0d\x5a\x46\x64\x03\x5a\x47\x64\x10\x5a\x48\x64\x22\x5a\x49\x64\x0e\x5a\x4a\x64\x29\x5a\x4b\x64\x11\x5a\x4c\x64\x02\x5a\x4d\x64\x1f\x5a\x4e\x64\x20\x5a\x4f\x64\x05\x5a\x50\x64\x21\x5a\x51\x64\x28\x5a\x52\x09\x00\x64\x01\x64\x3b\x6c\x53\x54\x00\x64\x3c\x53\x00\x23\x00\x65\x54\x24\x00\x72\x04\x01\x00\x59\x00\x64\x3c\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static void stat_do_patchups(void) { +} + +PyObject * +_Py_get_stat_toplevel(void) +{ + stat_do_patchups(); + return Py_NewRef((PyObject *) &stat_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[46]; + } +importlib_util_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 45, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Utility code for constructing importers, etc.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str_Loader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Loader", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_Loader._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_module_from_spec._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__resolve_name._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_spec_from_loader._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_6 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__find_spec._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_7 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_MAGIC_NUMBER._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_8 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_9 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_cache_from_source._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_10 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_decode_source._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_11 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_source_from_cache._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_contextmanager = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "contextmanager", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_14 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_contextmanager._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[67]; + } +importlib_util_toplevel_consts_16_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 66, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Return the hash of *source_bytes* as used in hash-based pyc files.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_16_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & importlib_util_toplevel_consts_16_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib_util_toplevel_consts_16_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str__imp._ascii.ob_base, + & const_str_source_hash._ascii.ob_base, + & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +importlib_util_toplevel_consts_16_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +importlib_util_toplevel_consts_16_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x0f\xd4\x0b\x1b\xd5\x1c\x2d\xa8\x7c\xd1\x0b\x3c\xd4\x0b\x3c\xd0\x04\x3c", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_16_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_source_bytes._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(54) +importlib_util_toplevel_consts_16 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 27, + }, + .co_consts = & importlib_util_toplevel_consts_16_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_16_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 23, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_source_hash._ascii.ob_base, + .co_qualname = & const_str_source_hash._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_16_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +importlib_util_toplevel_consts_17_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "no package specified for ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +importlib_util_toplevel_consts_17_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " (required for relative module names)", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib_util_toplevel_consts_17_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & importlib__bootstrap_toplevel_consts_43_consts_0._ascii.ob_base, + &_Py_STR(dot), + & importlib_util_toplevel_consts_17_consts_2._ascii.ob_base, + & importlib_util_toplevel_consts_17_consts_3._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib_util_toplevel_consts_17_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_startswith._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_repr._ascii.ob_base, + & const_str__resolve_name._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_resolve_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "resolve_name", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[164]; + } +importlib_util_toplevel_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 163, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x0b\x0f\x8f\x3f\x8a\x3f\x98\x33\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x04\x05\x42\x01\xd8\x0f\x13\x88\x0b\xd8\x0d\x14\xf0\x00\x02\x05\x42\x01\xdd\x0e\x19\xf0\x00\x01\x1b\x41\x01\xb5\x64\xb8\x34\xb1\x6a\xb4\x6a\xf0\x00\x01\x1b\x41\x01\xf0\x00\x01\x1b\x41\x01\xf0\x00\x01\x1b\x41\x01\xf1\x00\x01\x0f\x42\x01\xf4\x00\x01\x0f\x42\x01\xf0\x00\x01\x09\x42\x01\xe0\x0c\x0d\x80\x45\xd8\x15\x19\xf0\x00\x03\x05\x13\xf0\x00\x03\x05\x13\x88\x09\xd8\x0b\x14\x98\x03\xd2\x0b\x1b\xd0\x0b\x1b\xd8\x0c\x11\x88\x45\xd8\x08\x0d\x90\x11\x89\x0a\x88\x05\x88\x05\xdd\x0b\x18\x98\x14\x98\x65\x98\x66\x98\x66\x9c\x1c\xa0\x77\xb0\x05\xd1\x0b\x36\xd4\x0b\x36\xd0\x04\x36", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_character = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "character", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib_util_toplevel_consts_17_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(name), + & const_str_package._ascii.ob_base, + & const_str_level._ascii.ob_base, + & const_str_character._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(206) +importlib_util_toplevel_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 103, + }, + .co_consts = & importlib_util_toplevel_consts_17_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_17_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 28, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_resolve_name._ascii.ob_base, + .co_qualname = & const_str_resolve_name._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x7c\x01\x73\x20\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x03\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x04\x7d\x02\x7c\x00\x44\x00\x5d\x0f\x7d\x03\x7c\x03\x64\x01\x6b\x03\x00\x00\x00\x00\x72\x02\x01\x00\x6e\x06\x7c\x02\x64\x05\x7a\x0d\x00\x00\x7d\x02\x8c\x10\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x64\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[648]; + } +importlib_util_toplevel_consts_18_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 647, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x73\x70\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x46\x69\x72\x73\x74\x2c\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x20\x74\x6f\x20\x73\x65\x65\x20\x69\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x61\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x20\x49\x66\x0a\x20\x20\x20\x20\x73\x6f\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x5b\x6e\x61\x6d\x65\x5d\x2e\x5f\x5f\x73\x70\x65\x63\x5f\x5f\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x61\x74\x20\x68\x61\x70\x70\x65\x6e\x73\x20\x74\x6f\x20\x62\x65\x0a\x20\x20\x20\x20\x73\x65\x74\x20\x74\x6f\x20\x4e\x6f\x6e\x65\x2c\x20\x74\x68\x65\x6e\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x0a\x20\x20\x20\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x65\x74\x61\x5f\x70\x61\x74\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x73\x70\x65\x63\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x27\x70\x61\x74\x68\x27\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x69\x6e\x64\x65\x72\x73\x2e\x20\x4e\x6f\x6e\x65\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x69\x66\x20\x6e\x6f\x20\x73\x70\x65\x63\x20\x63\x6f\x75\x6c\x64\x0a\x20\x20\x20\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20\x44\x6f\x74\x74\x65\x64\x20\x6e\x61\x6d\x65\x73\x20\x64\x6f\x20\x6e\x6f\x74\x20\x68\x61\x76\x65\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6d\x70\x6c\x69\x63\x69\x74\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x20\x59\x6f\x75\x20\x77\x69\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x6f\x73\x74\x20\x6c\x69\x6b\x65\x6c\x79\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x65\x78\x70\x6c\x69\x63\x69\x74\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x20\x61\x6c\x6c\x20\x70\x61\x72\x65\x6e\x74\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x70\x65\x72\x0a\x20\x20\x20\x20\x6f\x72\x64\x65\x72\x20\x66\x6f\x72\x20\x61\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x20\x74\x6f\x20\x67\x65\x74\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x63\x74\x20\x73\x70\x65\x63\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +importlib_util_toplevel_consts_18_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "{}.__spec__ is None", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +importlib_util_toplevel_consts_18_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "{}.__spec__ is not set", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib_util_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & importlib_util_toplevel_consts_18_consts_0._ascii.ob_base, + Py_None, + & importlib_util_toplevel_consts_18_consts_2._ascii.ob_base, + & importlib_util_toplevel_consts_18_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib_util_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str__find_spec._ascii.ob_base, + &_Py_ID(__spec__), + & const_str_ValueError._ascii.ob_base, + & const_str_format._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str__find_spec_from_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_find_spec_from_path", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[173]; + } +importlib_util_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 172, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x1e\x00\x08\x0c\x95\x33\x94\x3b\xd0\x07\x1e\xd0\x07\x1e\xdd\x0f\x19\x98\x24\xa0\x04\xd1\x0f\x25\xd4\x0f\x25\xd0\x08\x25\xe5\x11\x14\x94\x1b\x98\x54\xd4\x11\x22\x88\x06\xd8\x0b\x11\x88\x3e\xd8\x13\x17\x90\x34\xf0\x02\x07\x09\x18\xd8\x13\x19\x94\x3f\x88\x44\xf0\x08\x00\x10\x14\x88\x7c\xdd\x16\x20\xd0\x21\x36\xd7\x21\x3d\xd2\x21\x3d\xb8\x64\xd1\x21\x43\xd4\x21\x43\xd1\x16\x44\xd4\x16\x44\xd0\x10\x44\xd8\x13\x17\x88\x4b\xf8\xf5\x0b\x00\x10\x1e\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xdd\x12\x1c\xd0\x1d\x35\xd7\x1d\x3c\xd2\x1d\x3c\xb8\x54\xd1\x1d\x42\xd4\x1d\x42\xd1\x12\x43\xd4\x12\x43\xc8\x14\xd0\x0c\x4d\xf0\x03\x01\x09\x4e\x01\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[12]; + } +importlib_util_toplevel_consts_18_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 11, + }, + .ob_shash = -1, + .ob_sval = "\xb6\x07\x41\x23\x00\xc1\x23\x2e\x42\x11\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib_util_toplevel_consts_18_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(name), + &_Py_ID(path), + & const_str_module._ascii.ob_base, + & const_str_spec._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(296) +importlib_util_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 148, + }, + .co_consts = & importlib_util_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib_util_toplevel_consts_18_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 43, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str__find_spec_from_path._ascii.ob_base, + .co_qualname = & const_str__find_spec_from_path._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x10\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x80\x02\x64\x01\x53\x00\x09\x00\x7c\x02\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x80\x22\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[688]; + } +importlib_util_toplevel_consts_19_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 687, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x73\x70\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x46\x69\x72\x73\x74\x2c\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x20\x74\x6f\x20\x73\x65\x65\x20\x69\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x61\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x20\x49\x66\x0a\x20\x20\x20\x20\x73\x6f\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x5b\x6e\x61\x6d\x65\x5d\x2e\x5f\x5f\x73\x70\x65\x63\x5f\x5f\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x61\x74\x20\x68\x61\x70\x70\x65\x6e\x73\x20\x74\x6f\x20\x62\x65\x0a\x20\x20\x20\x20\x73\x65\x74\x20\x74\x6f\x20\x4e\x6f\x6e\x65\x2c\x20\x74\x68\x65\x6e\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x0a\x20\x20\x20\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x65\x74\x61\x5f\x70\x61\x74\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x73\x70\x65\x63\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x27\x70\x61\x74\x68\x27\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x69\x6e\x64\x65\x72\x73\x2e\x20\x4e\x6f\x6e\x65\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x69\x66\x20\x6e\x6f\x20\x73\x70\x65\x63\x20\x63\x6f\x75\x6c\x64\x0a\x20\x20\x20\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x20\x69\x73\x20\x66\x6f\x72\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x20\x28\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x64\x6f\x74\x29\x2c\x20\x74\x68\x65\x20\x70\x61\x72\x65\x6e\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x0a\x20\x20\x20\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x6e\x61\x6d\x65\x20\x61\x6e\x64\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x77\x6f\x72\x6b\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x61\x73\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x2e\x69\x6d\x70\x6f\x72\x74\x5f\x6d\x6f\x64\x75\x6c\x65\x28\x29\x2e\x0a\x20\x20\x20\x20\x49\x6e\x20\x6f\x74\x68\x65\x72\x20\x77\x6f\x72\x64\x73\x2c\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x73\x20\x28\x77\x69\x74\x68\x20\x6c\x65\x61\x64\x69\x6e\x67\x20\x64\x6f\x74\x73\x29\x20\x77\x6f\x72\x6b\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_19_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_fromlist._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[33]; + } +importlib_util_toplevel_consts_19_consts_5 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 32, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__path__ attribute not found on ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +importlib_util_toplevel_consts_19_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " while trying to find ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +importlib_util_toplevel_consts_19_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & importlib_util_toplevel_consts_19_consts_0._ascii.ob_base, + &_Py_STR(dot), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + &_Py_ID(__path__), + & importlib_util_toplevel_consts_19_consts_4._object.ob_base.ob_base, + & importlib_util_toplevel_consts_19_consts_5._ascii.ob_base, + & importlib_util_toplevel_consts_19_consts_6._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, + Py_None, + & importlib_util_toplevel_consts_18_consts_2._ascii.ob_base, + & importlib_util_toplevel_consts_18_consts_3._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +importlib_util_toplevel_consts_19_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_startswith._ascii.ob_base, + & const_str_resolve_name._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str_rpartition._ascii.ob_base, + &_Py_ID(__import__), + &_Py_ID(__path__), + & const_str_AttributeError._ascii.ob_base, + & const_str_ModuleNotFoundError._ascii.ob_base, + & const_str__find_spec._ascii.ob_base, + &_Py_ID(__spec__), + & const_str_ValueError._ascii.ob_base, + & const_str_format._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[382]; + } +importlib_util_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 381, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x22\x00\x2f\x33\xaf\x6f\xaa\x6f\xb8\x63\xd1\x2e\x42\xd4\x2e\x42\xd0\x0f\x4c\x8d\x7c\x98\x44\xa0\x27\xd1\x0f\x2a\xd4\x0f\x2a\xd0\x0f\x2a\xc8\x04\x80\x48\xd8\x07\x0f\x95\x73\x94\x7b\xd0\x07\x22\xd0\x07\x22\xd8\x16\x1e\xd7\x16\x29\xd2\x16\x29\xa8\x23\xd1\x16\x2e\xd4\x16\x2e\xa8\x71\xd4\x16\x31\x88\x0b\xd8\x0b\x16\xf0\x00\x09\x09\x1f\xdd\x15\x1f\xa0\x0b\xb0\x7a\xb0\x6c\xd0\x15\x43\xd1\x15\x43\xd4\x15\x43\x88\x46\xf0\x02\x05\x0d\x50\x01\xd8\x1e\x24\x9c\x6f\x90\x0b\x90\x0b\xf8\xdd\x13\x21\xf0\x00\x03\x0d\x50\x01\xf0\x00\x03\x0d\x50\x01\xf0\x00\x03\x0d\x50\x01\xdd\x16\x29\xf0\x02\x01\x15\x39\xb0\x7b\xf0\x00\x01\x15\x39\xf0\x00\x01\x15\x39\xd8\x2c\x34\xf0\x03\x01\x15\x39\xf0\x00\x01\x15\x39\xd8\x3f\x47\xf0\x05\x02\x17\x49\x01\xf1\x00\x02\x17\x49\x01\xf4\x00\x02\x17\x49\x01\xe0\x4e\x4f\xf0\x05\x02\x11\x50\x01\xf8\xf8\xf8\xf8\xf0\x03\x03\x0d\x50\x01\xf8\xf8\xf8\xf0\x0a\x00\x1b\x1f\x88\x4b\xdd\x0f\x19\x98\x28\xa0\x4b\xd1\x0f\x30\xd4\x0f\x30\xd0\x08\x30\xe5\x11\x14\x94\x1b\x98\x58\xd4\x11\x26\x88\x06\xd8\x0b\x11\x88\x3e\xd8\x13\x17\x90\x34\xf0\x02\x07\x09\x18\xd8\x13\x19\x94\x3f\x88\x44\xf0\x08\x00\x10\x14\x88\x7c\xdd\x16\x20\xd0\x21\x36\xd7\x21\x3d\xd2\x21\x3d\xb8\x64\xd1\x21\x43\xd4\x21\x43\xd1\x16\x44\xd4\x16\x44\xd0\x10\x44\xd8\x13\x17\x88\x4b\xf8\xf5\x0b\x00\x10\x1e\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xdd\x12\x1c\xd0\x1d\x35\xd7\x1d\x3c\xd2\x1d\x3c\xb8\x54\xd1\x1d\x42\xd4\x1d\x42\xd1\x12\x43\xd4\x12\x43\xc8\x14\xd0\x0c\x4d\xf0\x03\x01\x09\x4e\x01\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[37]; + } +importlib_util_toplevel_consts_19_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 36, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x26\x07\x41\x2e\x00\xc1\x2e\x0a\x42\x15\x03\xc1\x38\x18\x42\x10\x03\xc2\x10\x05\x42\x15\x03\xc3\x01\x07\x43\x2e\x00\xc3\x2e\x2e\x44\x1c\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_parent_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "parent_name", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +importlib_util_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(name), + & const_str_package._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + & const_str_parent_name._ascii.ob_base, + &_Py_ID(parent), + & const_str_parent_path._ascii.ob_base, + & const_str_e._ascii.ob_base, + & const_str_module._ascii.ob_base, + & const_str_spec._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(574) +importlib_util_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 287, + }, + .co_consts = & importlib_util_toplevel_consts_19_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib_util_toplevel_consts_19_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 74, + .co_nlocalsplus = 9, + .co_nlocals = 9, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_find_spec._ascii.ob_base, + .co_qualname = & const_str_find_spec._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x00\x7d\x02\x7c\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x74\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x72\x45\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x03\x67\x01\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x09\x00\x7c\x04\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x2c\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1d\x7d\x06\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x03\x9b\x02\x64\x06\x7c\x02\x9b\x02\x9d\x04\x7c\x02\xac\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x82\x02\x64\x08\x7d\x06\x7e\x06\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x64\x08\x7d\x05\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x80\x02\x64\x08\x53\x00\x09\x00\x7c\x07\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x80\x22\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x08\x53\x00\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str___initializing__ = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__initializing__", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib_util_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + &_Py_ID(get), + & const_str_type._ascii.ob_base, + & const_str___initializing__._ascii.ob_base, + & const_str_Exception._ascii.ob_base, + & const_str_KeyError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str__module_to_load = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_module_to_load", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[228]; + } +importlib_util_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 227, + }, + .ob_shash = -1, + .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xe0\x10\x14\x9d\x03\x9c\x0b\xd0\x10\x23\x80\x49\xe5\x0d\x10\x8c\x5b\x8f\x5f\x8a\x5f\x98\x54\xd1\x0d\x22\xd4\x0d\x22\x80\x46\xd8\x0b\x14\xf0\x00\x08\x05\x23\xf0\x08\x00\x12\x1b\x95\x14\x95\x63\x91\x19\x94\x19\x98\x34\x91\x1f\x94\x1f\x88\x06\xf0\x06\x00\x23\x27\x88\x06\xd4\x08\x1f\xd8\x1c\x22\x8d\x03\x8c\x0b\x90\x44\xd1\x08\x19\xf0\x02\x09\x05\x28\xd8\x0e\x14\x88\x0c\x88\x0c\x88\x0c\x88\x0c\xf8\xdd\x0b\x14\xf0\x00\x05\x05\x15\xf0\x00\x05\x05\x15\xf0\x00\x05\x05\x15\xd8\x0f\x18\xf0\x00\x04\x09\x15\xf0\x02\x03\x0d\x15\xdd\x14\x17\x94\x4b\xa0\x04\xd0\x14\x25\xd0\x14\x25\xf8\xdd\x13\x1b\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf8\xf0\x09\x05\x05\x15\xf8\xf8\xf8\xf0\x0e\x00\x23\x28\x88\x06\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xf8\xa0\x25\x88\x06\xd4\x08\x1f\xd0\x08\x27\xd0\x08\x27\xd0\x08\x27\xd0\x08\x27", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[79]; + } +importlib_util_toplevel_consts_20_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 78, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x26\x04\x41\x2b\x00\xc1\x2a\x01\x42\x25\x00\xc1\x2b\x0c\x42\x19\x03\xc1\x38\x0d\x42\x06\x02\xc2\x05\x01\x42\x19\x03\xc2\x06\x0a\x42\x13\x05\xc2\x10\x02\x42\x19\x03\xc2\x12\x01\x42\x13\x05\xc2\x13\x03\x42\x19\x03\xc2\x16\x02\x42\x25\x00\xc2\x18\x01\x42\x19\x03\xc2\x19\x03\x42\x25\x00\xc2\x25\x09\x42\x2e\x03", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib_util_toplevel_consts_20_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + &_Py_ID(name), + & const_str_is_reload._ascii.ob_base, + & const_str_module._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(354) +importlib_util_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 177, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib_util_toplevel_consts_20_exceptiontable.ob_base.ob_base, + .co_flags = 35, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 119, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str__module_to_load._ascii.ob_base, + .co_qualname = & const_str__module_to_load._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x01\x73\x33\x02\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x01\x7c\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x3c\x00\x00\x00\x09\x00\x7c\x02\x56\x00\x97\x01\x01\x00\x6e\x31\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x7c\x01\x73\x1f\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x3d\x00\x6e\x10\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x7c\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00\x23\x00\x64\x02\x7c\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 2, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[80]; + } +importlib_util_toplevel_consts_21_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 79, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x65\x74\x20\x5f\x5f\x70\x61\x63\x6b\x61\x67\x65\x5f\x5f\x20\x6f\x6e\x20\x74\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[108]; + } +importlib_util_toplevel_consts_21_consts_1_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 107, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "The import system now takes care of this automatically; this decorator is slated for removal in Python 3.12", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib_util_toplevel_consts_21_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + Py_None, + & importlib_util_toplevel_consts_21_consts_1_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, + &_Py_ID(__package__), + &_Py_ID(__path__), + &_Py_STR(dot), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib_util_toplevel_consts_21_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + &_Py_ID(warnings), + & const_str_warn._ascii.ob_base, + & const_str_DeprecationWarning._ascii.ob_base, + &_Py_ID(getattr), + &_Py_ID(__name__), + &_Py_ID(__package__), + & const_str_hasattr._ascii.ob_base, + & const_str_rpartition._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str_set_package_wrapper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set_package_wrapper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[41]; + } +importlib_util_toplevel_consts_21_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 40, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set_package..set_package_wrapper", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[144]; + } +importlib_util_toplevel_consts_21_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 143, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xe5\x08\x10\x8c\x0d\xf0\x00\x01\x17\x4c\x01\xe5\x16\x28\xb0\x51\xf0\x05\x02\x09\x38\xf1\x00\x02\x09\x38\xf4\x00\x02\x09\x38\xf0\x00\x02\x09\x38\xf0\x06\x00\x12\x15\x90\x13\x90\x64\xd0\x11\x25\x98\x66\xd0\x11\x25\xd0\x11\x25\x88\x06\xdd\x0b\x12\x90\x36\x98\x3d\xa8\x24\xd1\x0b\x2f\xd4\x0b\x2f\xd0\x0b\x37\xd8\x21\x27\xa4\x1f\x88\x46\xd4\x0c\x1e\xdd\x13\x1a\x98\x36\xa0\x3a\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x4b\x01\xd8\x25\x2b\xd4\x25\x37\xd7\x25\x42\xd2\x25\x42\xc0\x33\xd1\x25\x47\xd4\x25\x47\xc8\x01\xd4\x25\x4a\x90\x06\xd4\x10\x22\xd8\x0f\x15\x88\x0d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib_util_toplevel_consts_21_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_args._ascii.ob_base, + & const_str_kwargs._ascii.ob_base, + & const_str_module._ascii.ob_base, + & const_str_fxn._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(244) +importlib_util_toplevel_consts_21_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 122, + }, + .co_consts = & importlib_util_toplevel_consts_21_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_21_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 31, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 151, + .co_nlocalsplus = 4, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & importlib_util_toplevel_consts_21_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_set_package_wrapper._ascii.ob_base, + .co_qualname = & importlib_util_toplevel_consts_21_consts_1_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_21_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x89\x03\x7c\x00\x69\x00\x7c\x01\xa4\x01\x8e\x01\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x04\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x41\x7c\x02\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x25\x7c\x02\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_21_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib_util_toplevel_consts_21_consts_0._ascii.ob_base, + & importlib_util_toplevel_consts_21_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_functools = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "functools", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_wraps = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "wraps", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_21_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_functools._ascii.ob_base, + & const_str_wraps._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_set_package = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set_package", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[60]; + } +importlib_util_toplevel_consts_21_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 59, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x06\x0f\x84\x5f\x90\x53\xd1\x05\x19\xd4\x05\x19\xf0\x02\x09\x05\x16\xf0\x00\x09\x05\x16\xf0\x00\x09\x05\x16\xf0\x00\x09\x05\x16\xf1\x03\x00\x06\x1a\xd4\x05\x19\xf0\x02\x09\x05\x16\xf0\x14\x00\x0c\x1f\xd0\x04\x1e", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_21_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_fxn._ascii.ob_base, + & const_str_set_package_wrapper._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(70) +importlib_util_toplevel_consts_21 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 35, + }, + .co_consts = & importlib_util_toplevel_consts_21_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 145, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_set_package._ascii.ob_base, + .co_qualname = & const_str_set_package._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_21_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[79]; + } +importlib_util_toplevel_consts_22_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 78, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x53\x65\x74\x20\x5f\x5f\x6c\x6f\x61\x64\x65\x72\x5f\x5f\x20\x6f\x6e\x20\x74\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib_util_toplevel_consts_22_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + & importlib_util_toplevel_consts_21_consts_1_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, + &_Py_ID(__loader__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib_util_toplevel_consts_22_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(warnings), + & const_str_warn._ascii.ob_base, + & const_str_DeprecationWarning._ascii.ob_base, + &_Py_ID(getattr), + &_Py_ID(__loader__), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +const_str_set_loader_wrapper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set_loader_wrapper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[39]; + } +importlib_util_toplevel_consts_22_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 38, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set_loader..set_loader_wrapper", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[104]; + } +importlib_util_toplevel_consts_22_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 103, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xe5\x08\x10\x8c\x0d\xf0\x00\x01\x17\x4c\x01\xe5\x16\x28\xb0\x51\xf0\x05\x02\x09\x38\xf1\x00\x02\x09\x38\xf4\x00\x02\x09\x38\xf0\x00\x02\x09\x38\xf0\x06\x00\x12\x15\x90\x13\x90\x54\xd0\x11\x2b\x98\x44\xd0\x11\x2b\xd0\x11\x2b\xd0\x11\x2b\xa0\x46\xd0\x11\x2b\xd0\x11\x2b\x88\x06\xdd\x0b\x12\x90\x36\x98\x3c\xa8\x14\xd1\x0b\x2e\xd4\x0b\x2e\xd0\x0b\x36\xd8\x20\x24\x88\x46\xd4\x0c\x1d\xd8\x0f\x15\x88\x0d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib_util_toplevel_consts_22_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_kwargs._ascii.ob_base, + & const_str_module._ascii.ob_base, + & const_str_fxn._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(136) +importlib_util_toplevel_consts_22_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 68, + }, + .co_consts = & importlib_util_toplevel_consts_22_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_22_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 31, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 171, + .co_nlocalsplus = 5, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & importlib_util_toplevel_consts_22_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_41_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_set_loader_wrapper._ascii.ob_base, + .co_qualname = & importlib_util_toplevel_consts_22_consts_1_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_22_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x89\x04\x7c\x00\x67\x01\x7c\x01\xa2\x01\x52\x00\x69\x00\x7c\x02\xa4\x01\x8e\x01\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x04\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x7c\x00\x7c\x03\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_22_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib_util_toplevel_consts_22_consts_0._ascii.ob_base, + & importlib_util_toplevel_consts_22_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_set_loader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "set_loader", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[60]; + } +importlib_util_toplevel_consts_22_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 59, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x06\x0f\x84\x5f\x90\x53\xd1\x05\x19\xd4\x05\x19\xf0\x02\x07\x05\x16\xf0\x00\x07\x05\x16\xf0\x00\x07\x05\x16\xf0\x00\x07\x05\x16\xf1\x03\x00\x06\x1a\xd4\x05\x19\xf0\x02\x07\x05\x16\xf0\x10\x00\x0c\x1e\xd0\x04\x1d", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_22_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_fxn._ascii.ob_base, + & const_str_set_loader_wrapper._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(70) +importlib_util_toplevel_consts_22 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 35, + }, + .co_consts = & importlib_util_toplevel_consts_22_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_21_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 165, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_set_loader._ascii.ob_base, + .co_qualname = & const_str_set_loader._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_22_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[811]; + } +importlib_util_toplevel_consts_23_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 810, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x44\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x73\x65\x6c\x65\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x70\x72\x6f\x70\x65\x72\x20\x6d\x6f\x64\x75\x6c\x65\x20\x66\x6f\x72\x20\x6c\x6f\x61\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x0a\x20\x20\x20\x20\x6e\x61\x6d\x65\x2e\x20\x54\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x70\x61\x73\x73\x65\x64\x20\x69\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x65\x69\x74\x68\x65\x72\x20\x66\x72\x6f\x6d\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x66\x0a\x20\x20\x20\x20\x69\x74\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x65\x78\x69\x73\x74\x73\x20\x6f\x72\x20\x69\x73\x20\x61\x20\x6e\x65\x77\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x65\x77\x2c\x20\x74\x68\x65\x6e\x20\x5f\x5f\x6e\x61\x6d\x65\x5f\x5f\x0a\x20\x20\x20\x20\x69\x73\x20\x73\x65\x74\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x2c\x20\x5f\x5f\x6c\x6f\x61\x64\x65\x72\x5f\x5f\x20\x69\x73\x20\x73\x65\x74\x20\x74\x6f\x20\x73\x65\x6c\x66\x2c\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x5f\x5f\x70\x61\x63\x6b\x61\x67\x65\x5f\x5f\x20\x69\x73\x20\x73\x65\x74\x20\x61\x63\x63\x6f\x72\x64\x69\x6e\x67\x6c\x79\x20\x28\x69\x66\x20\x73\x65\x6c\x66\x2e\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x28\x29\x20\x69\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x29\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x74\x0a\x20\x20\x20\x20\x62\x65\x66\x6f\x72\x65\x20\x69\x74\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x28\x69\x66\x20\x73\x65\x6c\x66\x2e\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x28\x29\x20\x64\x6f\x65\x73\x0a\x20\x20\x20\x20\x6e\x6f\x74\x20\x77\x6f\x72\x6b\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x74\x20\x70\x6f\x73\x74\x2d\x6c\x6f\x61\x64\x29\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x64\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x74\x20\x69\x73\x0a\x20\x20\x20\x20\x73\x75\x62\x73\x65\x71\x75\x65\x6e\x74\x6c\x79\x20\x72\x65\x6d\x6f\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x61\x73\x73\x75\x6d\x65\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x61\x6b\x65\x73\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x20\x61\x73\x0a\x20\x20\x20\x20\x74\x68\x65\x20\x73\x65\x63\x6f\x6e\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib_util_toplevel_consts_23_consts_4_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + &_Py_STR(dot), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib_util_toplevel_consts_23_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str__module_to_load._ascii.ob_base, + &_Py_ID(__loader__), + & const_str_is_package._ascii.ob_base, + &_Py_ID(__package__), + & const_str_rpartition._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[26]; + } +const_str_module_for_loader_wrapper = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 25, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module_for_loader_wrapper", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[53]; + } +importlib_util_toplevel_consts_23_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 52, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module_for_loader..module_for_loader_wrapper", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[270]; + } +importlib_util_toplevel_consts_23_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 269, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xe5\x0d\x1c\x98\x58\xd1\x0d\x26\xd4\x0d\x26\xf0\x00\x0c\x09\x36\xa8\x26\xd8\x20\x24\x88\x46\xd4\x0c\x1d\xf0\x02\x08\x0d\x45\x01\xd8\x1d\x21\x9f\x5f\x9a\x5f\xa8\x58\xd1\x1d\x36\xd4\x1d\x36\x90\x0a\xf0\x08\x00\x14\x1e\xf0\x00\x03\x11\x45\x01\xd8\x29\x31\x90\x46\xd4\x14\x26\xd0\x14\x26\xe0\x29\x31\xd7\x29\x3c\xd2\x29\x3c\xb8\x53\xd1\x29\x41\xd4\x29\x41\xc0\x21\xd4\x29\x44\x90\x46\xd4\x14\x26\xd0\x14\x26\xf8\xf5\x0d\x00\x15\x20\xa5\x1e\xd0\x13\x30\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x10\x00\x14\x17\x90\x33\x90\x74\x98\x56\xd0\x13\x35\xa0\x64\xd0\x13\x35\xd0\x13\x35\xd0\x13\x35\xa8\x66\xd0\x13\x35\xd0\x13\x35\xf0\x19\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf1\x00\x0c\x09\x36\xf4\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf8\xf8\xf8\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[52]; + } +importlib_util_toplevel_consts_23_consts_4_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 51, + }, + .ob_shash = -1, + .ob_sval = "\x91\x08\x42\x0a\x03\x9a\x15\x41\x1a\x02\xaf\x2b\x42\x0a\x03\xc1\x1a\x11\x41\x2e\x05\xc1\x2b\x02\x42\x0a\x03\xc1\x2d\x01\x41\x2e\x05\xc1\x2e\x0f\x42\x0a\x03\xc2\x0a\x04\x42\x0e\x07\xc2\x11\x01\x42\x0e\x07", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib_util_toplevel_consts_23_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_fullname._ascii.ob_base, + & const_str_args._ascii.ob_base, + & const_str_kwargs._ascii.ob_base, + & const_str_module._ascii.ob_base, + & const_str_is_package._ascii.ob_base, + & const_str_fxn._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(302) +importlib_util_toplevel_consts_23_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 151, + }, + .co_consts = & importlib_util_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_23_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib_util_toplevel_consts_23_consts_4_exceptiontable.ob_base.ob_base, + .co_flags = 31, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 204, + .co_nlocalsplus = 7, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 1, + .co_localsplusnames = & importlib_util_toplevel_consts_23_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & abc_toplevel_consts_10_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_module_for_loader_wrapper._ascii.ob_base, + .co_qualname = & importlib_util_toplevel_consts_23_consts_4_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_23_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x04\x7c\x00\x7c\x04\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x72\x08\x7c\x01\x7c\x04\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x38\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x17\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x89\x06\x7c\x00\x7c\x04\x67\x02\x7c\x02\xa2\x01\x52\x00\x69\x00\x7c\x03\xa4\x01\x8e\x01\x63\x02\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib_util_toplevel_consts_23_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & importlib_util_toplevel_consts_23_consts_0._ascii.ob_base, + & importlib_util_toplevel_consts_21_consts_1_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, + & importlib_util_toplevel_consts_23_consts_4.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib_util_toplevel_consts_23_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + &_Py_ID(warnings), + & const_str_warn._ascii.ob_base, + & const_str_DeprecationWarning._ascii.ob_base, + & const_str_functools._ascii.ob_base, + & const_str_wraps._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[18]; + } +const_str_module_for_loader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 17, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module_for_loader", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[98]; + } +importlib_util_toplevel_consts_23_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 97, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xf5\x24\x00\x05\x0d\x84\x4d\xf0\x00\x01\x13\x48\x01\xe5\x12\x24\xb0\x11\xf0\x05\x02\x05\x34\xf1\x00\x02\x05\x34\xf4\x00\x02\x05\x34\xf0\x00\x02\x05\x34\xf5\x06\x00\x06\x0f\x84\x5f\x90\x53\xd1\x05\x19\xd4\x05\x19\xf0\x02\x0d\x05\x36\xf0\x00\x0d\x05\x36\xf0\x00\x0d\x05\x36\xf0\x00\x0d\x05\x36\xf1\x03\x00\x06\x1a\xd4\x05\x19\xf0\x02\x0d\x05\x36\xf0\x1e\x00\x0c\x25\xd0\x04\x24", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_23_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_fxn._ascii.ob_base, + & const_str_module_for_loader_wrapper._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(126) +importlib_util_toplevel_consts_23 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 63, + }, + .co_consts = & importlib_util_toplevel_consts_23_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_23_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 183, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 1, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_23_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_module_for_loader._ascii.ob_base, + .co_qualname = & const_str_module_for_loader._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_23_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x04\x84\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str__LazyModule = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_LazyModule", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[76]; + } +importlib_util_toplevel_consts_24_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 75, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "A subclass of the module type which triggers loading upon attribute access.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[57]; + } +importlib_util_toplevel_consts_24_consts_2_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 56, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Trigger the load of the module and return the attribute.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_is_loading = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "is_loading", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +importlib_util_toplevel_consts_24_consts_2_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "module object for ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[47]; + } +importlib_util_toplevel_consts_24_consts_2_consts_9 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 46, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " substituted in sys.modules during a lazy load", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +importlib_util_toplevel_consts_24_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & importlib_util_toplevel_consts_24_consts_2_consts_0._ascii.ob_base, + &_Py_ID(__spec__), + & const_str_lock._ascii.ob_base, + &_Py_ID(__class__), + & const_str_is_loading._ascii.ob_base, + Py_None, + Py_True, + &_Py_ID(__dict__), + & importlib_util_toplevel_consts_24_consts_2_consts_8._ascii.ob_base, + & importlib_util_toplevel_consts_24_consts_2_consts_9._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_types = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "types", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_ModuleType = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "ModuleType", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[17]; + }_object; + } +importlib_util_toplevel_consts_24_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 17, + }, + .ob_item = { + & const_str_object._ascii.ob_base, + &_Py_ID(__getattribute__), + & const_str_loader_state._ascii.ob_base, + & const_str__LazyModule._ascii.ob_base, + &_Py_ID(name), + &_Py_ID(items), + & const_str_id._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_exec_module._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str_ValueError._ascii.ob_base, + & const_str_update._ascii.ob_base, + & const_str_types._ascii.ob_base, + & const_str_ModuleType._ascii.ob_base, + &_Py_ID(__class__), + &_Py_ID(getattr), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +importlib_util_toplevel_consts_24_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_LazyModule.__getattribute__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[555]; + } +importlib_util_toplevel_consts_24_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 554, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x13\x19\xd7\x13\x2a\xd2\x13\x2a\xa8\x34\xb0\x1a\xd1\x13\x3c\xd4\x13\x3c\x88\x08\xd8\x17\x1f\xd4\x17\x2c\x88\x0c\xd8\x0d\x19\x98\x26\xd4\x0d\x21\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf5\x06\x00\x10\x16\xd7\x0f\x26\xd2\x0f\x26\xa0\x74\xa8\x5b\xd1\x0f\x39\xd4\x0f\x39\xbd\x5b\xd0\x0f\x48\xd1\x0f\x48\xf0\x0a\x00\x14\x20\xa0\x0c\xd4\x13\x2d\xf0\x00\x01\x11\x3f\xdd\x1b\x21\xd7\x1b\x32\xd2\x1b\x32\xb0\x34\xb8\x14\xd1\x1b\x3e\xd4\x1b\x3e\xf0\x13\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf1\x00\x2b\x09\x32\xf4\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x14\x00\x2e\x32\x90\x0c\x98\x5c\xd1\x10\x2a\xe5\x1b\x21\xd7\x1b\x32\xd2\x1b\x32\xb0\x34\xb8\x1a\xd1\x1b\x44\xd4\x1b\x44\x90\x08\xf0\x0c\x00\x21\x29\xa4\x0d\x90\x0d\xf0\x06\x00\x1e\x2a\xa8\x2a\xd4\x1d\x35\x90\x0a\xd8\x1c\x24\x90\x09\xd8\x20\x22\x90\x0d\xd8\x22\x2b\xa7\x2f\xa2\x2f\xd1\x22\x33\xd4\x22\x33\xf0\x00\x06\x11\x33\xf0\x00\x06\x11\x33\x91\x4a\x90\x43\x98\x15\xf0\x06\x00\x18\x1b\xa0\x2a\xd0\x17\x2c\xd0\x17\x2c\xd8\x2d\x32\x98\x0d\xa0\x63\xd1\x18\x2a\xd0\x18\x2a\xdd\x19\x1b\x98\x49\xa0\x63\x9c\x4e\xd1\x19\x2b\xd4\x19\x2b\xad\x72\xb0\x2a\xb8\x53\xb4\x2f\xd1\x2f\x42\xd4\x2f\x42\xd2\x19\x42\xd0\x19\x42\xd8\x2d\x32\x98\x0d\xa0\x63\xd1\x18\x2a\xf8\xd8\x10\x18\x94\x0f\xd7\x10\x2b\xd2\x10\x2b\xa8\x44\xd1\x10\x31\xd4\x10\x31\xd0\x10\x31\xf0\x06\x00\x14\x21\xa5\x43\xa4\x4b\xd0\x13\x2f\xd0\x13\x2f\xdd\x17\x19\x98\x24\x91\x78\x94\x78\xa5\x32\xa5\x63\xa4\x6b\xb0\x2d\xd4\x26\x40\xd1\x23\x41\xd4\x23\x41\xd2\x17\x41\xd0\x17\x41\xdd\x1e\x28\xf0\x00\x02\x2a\x31\xb8\x6d\xf0\x00\x02\x2a\x31\xf0\x00\x02\x2a\x31\xf0\x00\x02\x2a\x31\xf1\x00\x02\x1f\x32\xf4\x00\x02\x1f\x32\xf0\x00\x02\x19\x32\xf0\x0a\x00\x11\x19\x97\x0f\x92\x0f\xa0\x0d\xd1\x10\x2e\xd4\x10\x2e\xd0\x10\x2e\xe5\x21\x26\xd4\x21\x31\x90\x04\x94\x0e\xf0\x57\x01\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf1\x00\x2b\x09\x32\xf4\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf8\xf8\xf8\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf5\x5a\x01\x00\x10\x17\x90\x74\x98\x54\xd1\x0f\x22\xd4\x0f\x22\xd0\x08\x22", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[26]; + } +importlib_util_toplevel_consts_24_consts_2_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 25, + }, + .ob_shash = -1, + .ob_sval = "\xab\x41\x06\x46\x23\x03\xc1\x3e\x44\x19\x46\x23\x03\xc6\x23\x04\x46\x27\x07\xc6\x2a\x01\x46\x27\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_attr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "attr", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_original_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "original_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_attrs_then = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "attrs_then", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_attrs_now = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "attrs_now", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_attrs_updated = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "attrs_updated", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +importlib_util_toplevel_consts_24_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_attr._ascii.ob_base, + &_Py_ID(__spec__), + & const_str_loader_state._ascii.ob_base, + &_Py_ID(__dict__), + & const_str_original_name._ascii.ob_base, + & const_str_attrs_then._ascii.ob_base, + & const_str_attrs_now._ascii.ob_base, + & const_str_attrs_updated._ascii.ob_base, + & const_str_key._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(892) +importlib_util_toplevel_consts_24_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 446, + }, + .co_consts = & importlib_util_toplevel_consts_24_consts_2_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_24_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = & importlib_util_toplevel_consts_24_consts_2_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 227, + .co_nlocalsplus = 11, + .co_nlocals = 11, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_24_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_8_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = &_Py_ID(__getattribute__), + .co_qualname = & importlib_util_toplevel_consts_24_consts_2_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_24_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x90\x01\x72\x48\x7c\x03\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x27\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x64\x05\x64\x05\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x64\x06\x7c\x03\x64\x04\x3c\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x03\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x04\x7d\x07\x69\x00\x7d\x08\x7c\x07\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x40\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x7c\x09\x7c\x06\x76\x01\x72\x06\x7c\x0a\x7c\x08\x7c\x09\x3c\x00\x00\x00\x8c\x0f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x05\x7c\x0a\x7c\x08\x7c\x09\x3c\x00\x00\x00\x8c\x41\x7c\x02\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x05\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x43\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x13\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x05\x9b\x02\x64\x09\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x04\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x64\x05\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[48]; + } +importlib_util_toplevel_consts_24_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 47, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Trigger the load and then perform the deletion.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_24_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib_util_toplevel_consts_24_consts_3_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_delattr = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "delattr", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_24_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + &_Py_ID(__getattribute__), + & const_str_delattr._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +importlib_util_toplevel_consts_24_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_LazyModule.__delattr__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[47]; + } +importlib_util_toplevel_consts_24_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 46, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x09\x0d\xd7\x08\x1d\xd2\x08\x1d\x98\x64\xd1\x08\x23\xd4\x08\x23\xd0\x08\x23\xdd\x08\x0f\x90\x04\x90\x64\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_24_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_attr._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(80) +importlib_util_toplevel_consts_24_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 40, + }, + .co_consts = & importlib_util_toplevel_consts_24_consts_3_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_24_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 278, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_24_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = &_Py_ID(__delattr__), + .co_qualname = & importlib_util_toplevel_consts_24_consts_3_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_24_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib_util_toplevel_consts_24_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__LazyModule._ascii.ob_base, + & importlib_util_toplevel_consts_24_consts_1._ascii.ob_base, + & importlib_util_toplevel_consts_24_consts_2.ob_base.ob_base, + & importlib_util_toplevel_consts_24_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +importlib_util_toplevel_consts_24_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__getattribute__), + &_Py_ID(__delattr__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[58]; + } +importlib_util_toplevel_consts_24_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 57, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x04\x55\xd0\x04\x55\xf0\x04\x31\x05\x23\xf0\x00\x31\x05\x23\xf0\x00\x31\x05\x23\xf0\x66\x01\x05\x05\x1c\xf0\x00\x05\x05\x1c\xf0\x00\x05\x05\x1c\xf0\x00\x05\x05\x1c\xf0\x00\x05\x05\x1c", +}; +static + struct _PyCode_DEF(30) +importlib_util_toplevel_consts_24 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 15, + }, + .co_consts = & importlib_util_toplevel_consts_24_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_24_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 223, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str__LazyModule._ascii.ob_base, + .co_qualname = & const_str__LazyModule._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_24_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_LazyLoader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LazyLoader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[76]; + } +importlib_util_toplevel_consts_26_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 75, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "A loader that creates a module which defers loading until attribute access.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[33]; + } +importlib_util_toplevel_consts_26_consts_2_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 32, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "loader must define exec_module()", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib_util_toplevel_consts_26_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & const_str_exec_module._ascii.ob_base, + & importlib_util_toplevel_consts_26_consts_2_consts_2._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_26_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_hasattr._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +const_str___check_eager_loader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "__check_eager_loader", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +importlib_util_toplevel_consts_26_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LazyLoader.__check_eager_loader", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[49]; + } +importlib_util_toplevel_consts_26_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 48, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0f\x16\x90\x76\x98\x7d\xd1\x0f\x2d\xd4\x0f\x2d\xf0\x00\x01\x09\x40\x01\xdd\x12\x1b\xd0\x1c\x3e\xd1\x12\x3f\xd4\x12\x3f\xd0\x0c\x3f\xf0\x03\x01\x09\x40\x01\xf0\x00\x01\x09\x40\x01", +}; +static + struct _PyCode_DEF(68) +importlib_util_toplevel_consts_26_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 34, + }, + .co_consts = & importlib_util_toplevel_consts_26_consts_2_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 290, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_26_consts_4._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str___check_eager_loader._ascii.ob_base, + .co_qualname = & importlib_util_toplevel_consts_26_consts_2_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_26_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[63]; + } +importlib_util_toplevel_consts_26_consts_3_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 62, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Construct a callable which returns the eager loader made lazy.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[37]; + } +importlib_util_toplevel_consts_26_consts_3_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 36, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LazyLoader.factory..", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[33]; + } +importlib_util_toplevel_consts_26_consts_3_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 32, + }, + .ob_shash = -1, + .ob_sval = "\xf8\x80\x00\xa0\x73\xa0\x73\xa8\x36\xa8\x36\xb0\x34\xd0\x2b\x42\xb8\x36\xd0\x2b\x42\xd0\x2b\x42\xd1\x27\x43\xd4\x27\x43\x80\x00", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +importlib_util_toplevel_consts_26_consts_3_consts_1_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_args._ascii.ob_base, + & const_str_kwargs._ascii.ob_base, + & const_str_cls._ascii.ob_base, + & const_str_loader._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(38) +importlib_util_toplevel_consts_26_consts_3_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 19, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 31, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 299, + .co_nlocalsplus = 4, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 2, + .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_3_consts_1_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & ntpath_toplevel_consts_45_consts_9_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_lambda), + .co_qualname = & importlib_util_toplevel_consts_26_consts_3_consts_1_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_26_consts_3_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x95\x02\x97\x00\x02\x00\x89\x02\x02\x00\x89\x03\x7c\x00\x69\x00\x7c\x01\xa4\x01\x8e\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 1, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_26_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & importlib_util_toplevel_consts_26_consts_3_consts_0._ascii.ob_base, + & importlib_util_toplevel_consts_26_consts_3_consts_1.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +const_str__LazyLoader__check_eager_loader = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_LazyLoader__check_eager_loader", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_util_toplevel_consts_26_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str__LazyLoader__check_eager_loader._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_factory = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "factory", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +importlib_util_toplevel_consts_26_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LazyLoader.factory", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[45]; + } +importlib_util_toplevel_consts_26_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 44, + }, + .ob_shash = -1, + .ob_sval = "\xf8\xf8\x80\x00\xf0\x06\x00\x09\x0c\xd7\x08\x20\xd2\x08\x20\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x0f\x43\xd0\x0f\x43\xd0\x0f\x43\xd0\x0f\x43\xd0\x0f\x43\xd0\x08\x43", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_26_consts_3_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_cls._ascii.ob_base, + & const_str_loader._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[3]; + } +importlib_util_toplevel_consts_26_consts_3_localspluskinds = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 2, + }, + .ob_shash = -1, + .ob_sval = "``", +}; +static + struct _PyCode_DEF(60) +importlib_util_toplevel_consts_26_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 30, + }, + .co_consts = & importlib_util_toplevel_consts_26_consts_3_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_26_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 295, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 2, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib_util_toplevel_consts_26_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_factory._ascii.ob_base, + .co_qualname = & importlib_util_toplevel_consts_26_consts_3_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_26_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x87\x00\x87\x01\x97\x00\x89\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x88\x00\x88\x01\x66\x02\x64\x01\x84\x08\x53\x00", + ._co_firsttraceable = 2, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_26_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str__LazyLoader__check_eager_loader._ascii.ob_base, + & const_str_loader._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +importlib_util_toplevel_consts_26_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LazyLoader.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[34]; + } +importlib_util_toplevel_consts_26_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 33, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x08\x0c\xd7\x08\x21\xd2\x08\x21\xa0\x26\xd1\x08\x29\xd4\x08\x29\xd0\x08\x29\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_26_consts_4_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_loader._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(62) +importlib_util_toplevel_consts_26_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 31, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_26_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 301, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_4_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & importlib_util_toplevel_consts_26_consts_4_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_26_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +importlib_util_toplevel_consts_26_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_loader._ascii.ob_base, + & const_str_create_module._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +importlib_util_toplevel_consts_26_consts_5_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LazyLoader.create_module", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[25]; + } +importlib_util_toplevel_consts_26_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 24, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x7b\xd7\x0f\x28\xd2\x0f\x28\xa8\x14\xd1\x0f\x2e\xd4\x0f\x2e\xd0\x08\x2e", +}; +static + struct _PyCode_DEF(54) +importlib_util_toplevel_consts_26_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 27, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_26_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 305, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_55_consts_3_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_create_module._ascii.ob_base, + .co_qualname = & importlib_util_toplevel_consts_26_consts_5_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_26_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +importlib_util_toplevel_consts_26_consts_6_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Make the module load lazily.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +importlib_util_toplevel_consts_26_consts_6_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & importlib_util_toplevel_consts_26_consts_6_consts_0._ascii.ob_base, + &_Py_ID(__dict__), + &_Py_ID(__class__), + & const_str_lock._ascii.ob_base, + Py_False, + & const_str_is_loading._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_RLock = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "RLock", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +importlib_util_toplevel_consts_26_consts_6_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & const_str_loader._ascii.ob_base, + &_Py_ID(__spec__), + &_Py_ID(__loader__), + &_Py_ID(__dict__), + &_Py_ID(copy), + &_Py_ID(__class__), + &_Py_ID(threading), + & const_str_RLock._ascii.ob_base, + & const_str_loader_state._ascii.ob_base, + & const_str__LazyModule._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[23]; + } +importlib_util_toplevel_consts_26_consts_6_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 22, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "LazyLoader.exec_module", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[121]; + } +importlib_util_toplevel_consts_26_consts_6_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 120, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x21\x25\xa4\x1b\x88\x06\x8c\x0f\xd4\x08\x1e\xd8\x1c\x20\x9c\x4b\x88\x06\xd4\x08\x19\xf0\x0a\x00\x18\x1a\x88\x0c\xd8\x23\x29\xa4\x3f\xd7\x23\x37\xd2\x23\x37\xd1\x23\x39\xd4\x23\x39\x88\x0c\x90\x5a\xd1\x08\x20\xd8\x24\x2a\xd4\x24\x34\x88\x0c\x90\x5b\xd1\x08\x21\xdd\x1f\x28\x9c\x7f\xd1\x1f\x30\xd4\x1f\x30\x88\x0c\x90\x56\xd1\x08\x1c\xd8\x25\x2a\x88\x0c\x90\x5c\xd1\x08\x22\xd8\x27\x33\x88\x06\x8c\x0f\xd4\x08\x24\xdd\x1b\x26\x88\x06\xd4\x08\x18\xd0\x08\x18\xd0\x08\x18", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib_util_toplevel_consts_26_consts_6_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_module._ascii.ob_base, + & const_str_loader_state._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(246) +importlib_util_toplevel_consts_26_consts_6 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 123, + }, + .co_consts = & importlib_util_toplevel_consts_26_consts_6_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_26_consts_6_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 308, + .co_nlocalsplus = 3, + .co_nlocals = 3, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_exec_module._ascii.ob_base, + .co_qualname = & importlib_util_toplevel_consts_26_consts_6_qualname._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_26_consts_6_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x69\x00\x7d\x02\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\x3c\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x02\x3c\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x03\x3c\x00\x00\x00\x64\x04\x7c\x02\x64\x05\x3c\x00\x00\x00\x7c\x02\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[8]; + }_object; + } +importlib_util_toplevel_consts_26_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 8, + }, + .ob_item = { + & const_str_LazyLoader._ascii.ob_base, + & importlib_util_toplevel_consts_26_consts_1._ascii.ob_base, + & importlib_util_toplevel_consts_26_consts_2.ob_base.ob_base, + & importlib_util_toplevel_consts_26_consts_3.ob_base.ob_base, + & importlib_util_toplevel_consts_26_consts_4.ob_base.ob_base, + & importlib_util_toplevel_consts_26_consts_5.ob_base.ob_base, + & importlib_util_toplevel_consts_26_consts_6.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +importlib_util_toplevel_consts_26_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + & const_str_staticmethod._ascii.ob_base, + & const_str__LazyLoader__check_eager_loader._ascii.ob_base, + & const_str_classmethod._ascii.ob_base, + & const_str_factory._ascii.ob_base, + &_Py_ID(__init__), + & const_str_create_module._ascii.ob_base, + & const_str_exec_module._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[130]; + } +importlib_util_toplevel_consts_26_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 129, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x04\x55\xd0\x04\x55\xe0\x05\x11\xf0\x02\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf1\x03\x00\x06\x12\x84\x5c\xf0\x02\x02\x05\x40\x01\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x44\x01\xf0\x00\x03\x05\x44\x01\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x44\x01\xf0\x0a\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x08\x01\x05\x2f\xf0\x00\x01\x05\x2f\xf0\x00\x01\x05\x2f\xf0\x06\x0e\x05\x27\xf0\x00\x0e\x05\x27\xf0\x00\x0e\x05\x27\xf0\x00\x0e\x05\x27\xf0\x00\x0e\x05\x27", +}; +static + struct _PyCode_DEF(80) +importlib_util_toplevel_consts_26 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 40, + }, + .co_consts = & importlib_util_toplevel_consts_26_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_consts_26_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 286, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = & const_str_LazyLoader._ascii.ob_base, + .co_qualname = & const_str_LazyLoader._ascii.ob_base, + .co_linetable = & importlib_util_toplevel_consts_26_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x84\x00\x5a\x08\x64\x05\x84\x00\x5a\x09\x64\x06\x84\x00\x5a\x0a\x64\x07\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[29]; + }_object; + } +importlib_util_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 29, + }, + .ob_item = { + & importlib_util_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & importlib_util_toplevel_consts_2._object.ob_base.ob_base, + & importlib_util_toplevel_consts_3._object.ob_base.ob_base, + & importlib_util_toplevel_consts_4._object.ob_base.ob_base, + & importlib_util_toplevel_consts_5._object.ob_base.ob_base, + & importlib_util_toplevel_consts_6._object.ob_base.ob_base, + & importlib_util_toplevel_consts_7._object.ob_base.ob_base, + & importlib_util_toplevel_consts_8._object.ob_base.ob_base, + & importlib_util_toplevel_consts_9._object.ob_base.ob_base, + & importlib_util_toplevel_consts_10._object.ob_base.ob_base, + & importlib_util_toplevel_consts_11._object.ob_base.ob_base, + & importlib__bootstrap_external_toplevel_consts_73_consts_5_names._object.ob_base.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & importlib_util_toplevel_consts_14._object.ob_base.ob_base, + Py_None, + & importlib_util_toplevel_consts_16.ob_base.ob_base, + & importlib_util_toplevel_consts_17.ob_base.ob_base, + & importlib_util_toplevel_consts_18.ob_base.ob_base, + & importlib_util_toplevel_consts_19.ob_base.ob_base, + & importlib_util_toplevel_consts_20.ob_base.ob_base, + & importlib_util_toplevel_consts_21.ob_base.ob_base, + & importlib_util_toplevel_consts_22.ob_base.ob_base, + & importlib_util_toplevel_consts_23.ob_base.ob_base, + & importlib_util_toplevel_consts_24.ob_base.ob_base, + & const_str__LazyModule._ascii.ob_base, + & importlib_util_toplevel_consts_26.ob_base.ob_base, + & const_str_LazyLoader._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_contextlib = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "contextlib", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[34]; + }_object; + } +importlib_util_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 34, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str__abc._ascii.ob_base, + & const_str_Loader._ascii.ob_base, + &_Py_ID(_bootstrap), + & const_str_module_from_spec._ascii.ob_base, + & const_str__resolve_name._ascii.ob_base, + & const_str_spec_from_loader._ascii.ob_base, + & const_str__find_spec._ascii.ob_base, + & const_str__bootstrap_external._ascii.ob_base, + & const_str_MAGIC_NUMBER._ascii.ob_base, + & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, + & const_str_cache_from_source._ascii.ob_base, + & const_str_decode_source._ascii.ob_base, + & const_str_source_from_cache._ascii.ob_base, + & const_str_spec_from_file_location._ascii.ob_base, + & const_str_contextlib._ascii.ob_base, + & const_str_contextmanager._ascii.ob_base, + & const_str__imp._ascii.ob_base, + & const_str_functools._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(threading), + & const_str_types._ascii.ob_base, + &_Py_ID(warnings), + & const_str_source_hash._ascii.ob_base, + & const_str_resolve_name._ascii.ob_base, + & const_str__find_spec_from_path._ascii.ob_base, + & const_str_find_spec._ascii.ob_base, + & const_str__module_to_load._ascii.ob_base, + & const_str_set_package._ascii.ob_base, + & const_str_set_loader._ascii.ob_base, + & const_str_module_for_loader._ascii.ob_base, + & const_str_ModuleType._ascii.ob_base, + & const_str__LazyModule._ascii.ob_base, + & const_str_LazyLoader._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[530]; + } +importlib_util_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 529, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x00\x33\xd0\x00\x33\xd8\x00\x18\xd0\x00\x18\xd0\x00\x18\xd0\x00\x18\xd0\x00\x18\xd0\x00\x18\xd8\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd8\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd8\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd8\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd8\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd8\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd8\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd8\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd8\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd8\x00\x38\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xe0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x10\xd0\x00\x10\xd0\x00\x10\xd0\x00\x10\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x10\xd0\x00\x10\xd0\x00\x10\xd0\x00\x10\xd8\x00\x0c\x80\x0c\x80\x0c\x80\x0c\xd8\x00\x0f\x80\x0f\x80\x0f\x80\x0f\xf0\x06\x02\x01\x3d\xf0\x00\x02\x01\x3d\xf0\x00\x02\x01\x3d\xf0\x0a\x0c\x01\x37\xf0\x00\x0c\x01\x37\xf0\x00\x0c\x01\x37\xf0\x1e\x1c\x01\x18\xf0\x00\x1c\x01\x18\xf0\x00\x1c\x01\x18\xf0\x00\x1c\x01\x18\xf0\x3e\x2a\x01\x18\xf0\x00\x2a\x01\x18\xf0\x00\x2a\x01\x18\xf0\x00\x2a\x01\x18\xf0\x5a\x01\x00\x02\x10\xf0\x02\x16\x01\x28\xf0\x00\x16\x01\x28\xf1\x03\x00\x02\x10\x84\x1e\xf0\x02\x16\x01\x28\xf0\x32\x11\x01\x1f\xf0\x00\x11\x01\x1f\xf0\x00\x11\x01\x1f\xf0\x28\x0f\x01\x1e\xf0\x00\x0f\x01\x1e\xf0\x00\x0f\x01\x1e\xf0\x24\x25\x01\x25\xf0\x00\x25\x01\x25\xf0\x00\x25\x01\x25\xf0\x50\x01\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\x90\x25\xd4\x12\x22\xf1\x00\x3c\x01\x1c\xf4\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x7e\x01\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\x90\x16\xf1\x00\x24\x01\x27\xf4\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27", +}; +static + struct _PyCode_DEF(336) +importlib_util_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 168, + }, + .co_consts = & importlib_util_toplevel_consts._object.ob_base.ob_base, + .co_names = & importlib_util_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & importlib_util_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x6d\x02\x5a\x02\x01\x00\x64\x01\x64\x03\x6c\x03\x6d\x04\x5a\x04\x01\x00\x64\x01\x64\x04\x6c\x03\x6d\x05\x5a\x05\x01\x00\x64\x01\x64\x05\x6c\x03\x6d\x06\x5a\x06\x01\x00\x64\x01\x64\x06\x6c\x03\x6d\x07\x5a\x07\x01\x00\x64\x01\x64\x07\x6c\x08\x6d\x09\x5a\x09\x01\x00\x64\x01\x64\x08\x6c\x08\x6d\x0a\x5a\x0a\x01\x00\x64\x01\x64\x09\x6c\x08\x6d\x0b\x5a\x0b\x01\x00\x64\x01\x64\x0a\x6c\x08\x6d\x0c\x5a\x0c\x01\x00\x64\x01\x64\x0b\x6c\x08\x6d\x0d\x5a\x0d\x01\x00\x64\x01\x64\x0c\x6c\x08\x6d\x0e\x5a\x0e\x01\x00\x64\x0d\x64\x0e\x6c\x0f\x6d\x10\x5a\x10\x01\x00\x64\x0d\x64\x0f\x6c\x11\x5a\x11\x64\x0d\x64\x0f\x6c\x12\x5a\x12\x64\x0d\x64\x0f\x6c\x13\x5a\x13\x64\x0d\x64\x0f\x6c\x14\x5a\x14\x64\x0d\x64\x0f\x6c\x15\x5a\x15\x64\x0d\x64\x0f\x6c\x16\x5a\x16\x64\x10\x84\x00\x5a\x17\x64\x11\x84\x00\x5a\x18\x64\x1c\x64\x12\x84\x01\x5a\x19\x64\x1c\x64\x13\x84\x01\x5a\x1a\x65\x10\x64\x14\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1b\x64\x15\x84\x00\x5a\x1c\x64\x16\x84\x00\x5a\x1d\x64\x17\x84\x00\x5a\x1e\x02\x00\x47\x00\x64\x18\x84\x00\x64\x19\x65\x15\x6a\x1f\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x20\x02\x00\x47\x00\x64\x1a\x84\x00\x64\x1b\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x64\x0f\x53\x00", + ._co_firsttraceable = 0, +}; +static void importlib_util_do_patchups(void) { +} + +PyObject * +_Py_get_importlib_util_toplevel(void) +{ + importlib_util_do_patchups(); + return Py_NewRef((PyObject *) &importlib_util_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[58]; + } +importlib_machinery_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 57, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "The machinery of importlib: finders, loaders, hooks, etc.", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_ModuleSpec._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_3 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_BuiltinImporter._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_4 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_FrozenImporter._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +importlib_machinery_toplevel_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str_SOURCE_SUFFIXES._ascii.ob_base, + & const_str_DEBUG_BYTECODE_SUFFIXES._ascii.ob_base, + & const_str_OPTIMIZED_BYTECODE_SUFFIXES._ascii.ob_base, + & const_str_BYTECODE_SUFFIXES._ascii.ob_base, + & const_str_EXTENSION_SUFFIXES._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_6 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_WindowsRegistryFinder._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_7 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_PathFinder._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_8 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_FileFinder._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_9 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_SourceFileLoader._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_10 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_SourcelessFileLoader._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_11 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_ExtensionFileLoader._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_12 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_NamespaceLoader._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[66]; + } +importlib_machinery_toplevel_consts_13_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 65, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Returns a list of all recognized module suffixes for this process", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +importlib_machinery_toplevel_consts_13_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & importlib_machinery_toplevel_consts_13_consts_0._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +importlib_machinery_toplevel_consts_13_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_SOURCE_SUFFIXES._ascii.ob_base, + & const_str_BYTECODE_SUFFIXES._ascii.ob_base, + & const_str_EXTENSION_SUFFIXES._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +importlib_machinery_toplevel_consts_13_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_all_suffixes = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "all_suffixes", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[21]; + } +importlib_machinery_toplevel_consts_13_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 20, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe5\x0b\x1a\xd5\x1d\x2e\xd1\x0b\x2e\xd5\x31\x43\xd1\x0b\x43\xd0\x04\x43", +}; +static + struct _PyCode_DEF(48) +importlib_machinery_toplevel_consts_13 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 24, + }, + .co_consts = & importlib_machinery_toplevel_consts_13_consts._object.ob_base.ob_base, + .co_names = & importlib_machinery_toplevel_consts_13_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 18, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib_machinery_toplevel_consts_13_filename._ascii.ob_base, + .co_name = & const_str_all_suffixes._ascii.ob_base, + .co_qualname = & const_str_all_suffixes._ascii.ob_base, + .co_linetable = & importlib_machinery_toplevel_consts_13_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[15]; + }_object; + } +importlib_machinery_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 15, + }, + .ob_item = { + & importlib_machinery_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], + & importlib_machinery_toplevel_consts_2._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_3._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_4._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_5._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_6._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_7._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_8._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_9._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_10._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_11._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_12._object.ob_base.ob_base, + & importlib_machinery_toplevel_consts_13.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[19]; + }_object; + } +importlib_machinery_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 19, + }, + .ob_item = { + &_Py_ID(__doc__), + &_Py_ID(_bootstrap), + & const_str_ModuleSpec._ascii.ob_base, + & const_str_BuiltinImporter._ascii.ob_base, + & const_str_FrozenImporter._ascii.ob_base, + & const_str__bootstrap_external._ascii.ob_base, + & const_str_SOURCE_SUFFIXES._ascii.ob_base, + & const_str_DEBUG_BYTECODE_SUFFIXES._ascii.ob_base, + & const_str_OPTIMIZED_BYTECODE_SUFFIXES._ascii.ob_base, + & const_str_BYTECODE_SUFFIXES._ascii.ob_base, + & const_str_EXTENSION_SUFFIXES._ascii.ob_base, + & const_str_WindowsRegistryFinder._ascii.ob_base, + & const_str_PathFinder._ascii.ob_base, + & const_str_FileFinder._ascii.ob_base, + & const_str_SourceFileLoader._ascii.ob_base, + & const_str_SourcelessFileLoader._ascii.ob_base, + & const_str_ExtensionFileLoader._ascii.ob_base, + & const_str_NamespaceLoader._ascii.ob_base, + & const_str_all_suffixes._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[294]; + } +importlib_machinery_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 293, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x00\x3f\xd0\x00\x3f\xe0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd8\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd8\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xf0\x02\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x06\x00\x01\x37\xd0\x00\x36\xd0\x00\x36\xd0\x00\x36\xd0\x00\x36\xd0\x00\x36\xd8\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd8\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd8\x00\x31\xd0\x00\x31\xd0\x00\x31\xd0\x00\x31\xd0\x00\x31\xd0\x00\x31\xd8\x00\x35\xd0\x00\x35\xd0\x00\x35\xd0\x00\x35\xd0\x00\x35\xd0\x00\x35\xd8\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd8\x00\x30\xd0\x00\x30\xd0\x00\x30\xd0\x00\x30\xd0\x00\x30\xd0\x00\x30\xf0\x06\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01", +}; +static + struct _PyCode_DEF(164) +importlib_machinery_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 82, + }, + .co_consts = & importlib_machinery_toplevel_consts._object.ob_base.ob_base, + .co_names = & importlib_machinery_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & importlib_machinery_toplevel_consts_13_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & importlib_machinery_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x6d\x02\x5a\x02\x01\x00\x64\x01\x64\x03\x6c\x01\x6d\x03\x5a\x03\x01\x00\x64\x01\x64\x04\x6c\x01\x6d\x04\x5a\x04\x01\x00\x64\x01\x64\x05\x6c\x05\x6d\x06\x5a\x06\x6d\x07\x5a\x07\x6d\x08\x5a\x08\x6d\x09\x5a\x09\x6d\x0a\x5a\x0a\x01\x00\x64\x01\x64\x06\x6c\x05\x6d\x0b\x5a\x0b\x01\x00\x64\x01\x64\x07\x6c\x05\x6d\x0c\x5a\x0c\x01\x00\x64\x01\x64\x08\x6c\x05\x6d\x0d\x5a\x0d\x01\x00\x64\x01\x64\x09\x6c\x05\x6d\x0e\x5a\x0e\x01\x00\x64\x01\x64\x0a\x6c\x05\x6d\x0f\x5a\x0f\x01\x00\x64\x01\x64\x0b\x6c\x05\x6d\x10\x5a\x10\x01\x00\x64\x01\x64\x0c\x6c\x05\x6d\x11\x5a\x11\x01\x00\x64\x0d\x84\x00\x5a\x12\x64\x0e\x53\x00", + ._co_firsttraceable = 0, +}; +static void importlib_machinery_do_patchups(void) { +} + +PyObject * +_Py_get_importlib_machinery_toplevel(void) +{ + importlib_machinery_do_patchups(); + return Py_NewRef((PyObject *) &importlib_machinery_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[347]; + } +runpy_toplevel_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 346, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x72\x75\x6e\x70\x79\x2e\x70\x79\x20\x2d\x20\x6c\x6f\x63\x61\x74\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x75\x6e\x6e\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x63\x6f\x64\x65\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x0a\x0a\x50\x72\x6f\x76\x69\x64\x65\x73\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x66\x6f\x72\x20\x6c\x6f\x63\x61\x74\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x75\x6e\x6e\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x73\x63\x72\x69\x70\x74\x73\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x0a\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x61\x74\x69\x76\x65\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x2e\x0a\x0a\x54\x68\x69\x73\x20\x61\x6c\x6c\x6f\x77\x73\x20\x50\x79\x74\x68\x6f\x6e\x20\x63\x6f\x64\x65\x20\x74\x6f\x20\x70\x6c\x61\x79\x20\x6e\x69\x63\x65\x6c\x79\x20\x77\x69\x74\x68\x20\x6e\x6f\x6e\x2d\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x20\x62\x61\x73\x65\x64\x20\x50\x45\x50\x20\x33\x30\x32\x0a\x69\x6d\x70\x6f\x72\x74\x65\x72\x73\x20\x77\x68\x65\x6e\x20\x6c\x6f\x63\x61\x74\x69\x6e\x67\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x73\x63\x72\x69\x70\x74\x73\x20\x61\x73\x20\x77\x65\x6c\x6c\x20\x61\x73\x20\x77\x68\x65\x6e\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x0a", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_run_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "run_module", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_run_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "run_path", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str__TempModule = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_TempModule", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[68]; + } +runpy_toplevel_consts_5_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 67, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Temporarily replace a module in sys.modules with an empty namespace", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_mod_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mod_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str__saved_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_saved_module", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +runpy_toplevel_consts_5_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_mod_name._ascii.ob_base, + & const_str_ModuleType._ascii.ob_base, + & const_str_module._ascii.ob_base, + & const_str__saved_module._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +runpy_toplevel_consts_5_consts_2_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +runpy_toplevel_consts_5_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_TempModule.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[39]; + } +runpy_toplevel_consts_5_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 38, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x18\x20\x88\x04\x8c\x0d\xdd\x16\x20\xa0\x18\xd1\x16\x2a\xd4\x16\x2a\x88\x04\x8c\x0b\xd8\x1d\x1f\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xd0\x08\x1a", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +runpy_toplevel_consts_5_consts_2_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_self._ascii.ob_base, + & const_str_mod_name._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(74) +runpy_toplevel_consts_5_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 37, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_5_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 28, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_5_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & runpy_toplevel_consts_5_consts_2_qualname._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_5_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +runpy_toplevel_consts_5_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_mod_name._ascii.ob_base, + & const_str__saved_module._ascii.ob_base, + &_Py_ID(append), + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str_KeyError._ascii.ob_base, + & const_str_module._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +runpy_toplevel_consts_5_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_TempModule.__enter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[99]; + } +runpy_toplevel_consts_5_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 98, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x13\x17\x94\x3d\x88\x08\xf0\x02\x03\x09\x11\xd8\x0c\x10\xd4\x0c\x1e\xd7\x0c\x25\xd2\x0c\x25\xa5\x63\xa4\x6b\xb0\x28\xd4\x26\x3b\xd1\x0c\x3c\xd4\x0c\x3c\xd0\x0c\x3c\xd0\x0c\x3c\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe0\x20\x24\xa4\x0b\x8d\x03\x8c\x0b\x90\x48\xd1\x08\x1d\xd8\x0f\x13\x88\x0b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +runpy_toplevel_consts_5_consts_3_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\x89\x2a\x34\x00\xb4\x0a\x41\x01\x03\xc1\x00\x01\x41\x01\x03", +}; +static + struct _PyCode_DEF(180) +runpy_toplevel_consts_5_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 90, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_5_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = & runpy_toplevel_consts_5_consts_3_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 33, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_5_consts_2_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & runpy_toplevel_consts_5_consts_3_qualname._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_5_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x7c\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +runpy_toplevel_consts_5_consts_4_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str__saved_module._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str_mod_name._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +runpy_toplevel_consts_5_consts_4_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_TempModule.__exit__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +runpy_toplevel_consts_5_consts_4_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0f\xd4\x0b\x1d\xf0\x00\x03\x09\x2b\xd8\x29\x2d\xd4\x29\x3b\xb8\x41\xd4\x29\x3e\x8d\x43\x8c\x4b\x98\x04\x9c\x0d\xd1\x0c\x26\xd0\x0c\x26\xe5\x10\x13\x94\x0b\x98\x44\x9c\x4d\xd0\x10\x2a\xd8\x1d\x1f\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xd0\x08\x1a", +}; +static + struct _PyCode_DEF(134) +runpy_toplevel_consts_5_consts_4 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 67, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_5_consts_4_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 42, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & runpy_toplevel_consts_5_consts_4_qualname._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_5_consts_4_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x6e\x12\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x67\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +runpy_toplevel_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str__TempModule._ascii.ob_base, + & runpy_toplevel_consts_5_consts_1._ascii.ob_base, + & runpy_toplevel_consts_5_consts_2.ob_base.ob_base, + & runpy_toplevel_consts_5_consts_3.ob_base.ob_base, + & runpy_toplevel_consts_5_consts_4.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +runpy_toplevel_consts_5_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + &_Py_ID(__init__), + &_Py_ID(__enter__), + &_Py_ID(__exit__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[72]; + } +runpy_toplevel_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 71, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x4d\xd0\x04\x4d\xf0\x02\x03\x05\x20\xf0\x00\x03\x05\x20\xf0\x00\x03\x05\x20\xf0\x0a\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x12\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20", +}; +static + struct _PyCode_DEF(36) +runpy_toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & runpy_toplevel_consts_5_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_5_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 26, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__TempModule._ascii.ob_base, + .co_qualname = & const_str__TempModule._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str__ModifiedArgv0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModifiedArgv0", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str__saved_value = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_saved_value", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__sentinel = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_sentinel", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +runpy_toplevel_consts_7_consts_1_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_value._ascii.ob_base, + & const_str_object._ascii.ob_base, + & const_str__saved_value._ascii.ob_base, + & const_str__sentinel._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +runpy_toplevel_consts_7_consts_1_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModifiedArgv0.__init__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[33]; + } +runpy_toplevel_consts_7_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 32, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x15\x1a\x88\x04\x8c\x0a\xdd\x2d\x33\xa9\x58\xac\x58\xd0\x08\x35\x88\x04\xd4\x08\x19\x98\x44\x9c\x4e\x98\x4e\x98\x4e", +}; +static + struct _PyCode_DEF(72) +runpy_toplevel_consts_7_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 36, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_7_consts_1_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 50, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = &_Py_ID(__init__), + .co_qualname = & runpy_toplevel_consts_7_consts_1_qualname._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_7_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[31]; + } +runpy_toplevel_consts_7_consts_2_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 30, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Already preserving saved value", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +runpy_toplevel_consts_7_consts_2_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + & runpy_toplevel_consts_7_consts_2_consts_1._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +runpy_toplevel_consts_7_consts_2_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str__saved_value._ascii.ob_base, + & const_str__sentinel._ascii.ob_base, + & const_str_RuntimeError._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_argv._ascii.ob_base, + & const_str_value._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +runpy_toplevel_consts_7_consts_2_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModifiedArgv0.__enter__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[65]; + } +runpy_toplevel_consts_7_consts_2_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 64, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x0b\x0f\xd4\x0b\x1c\xa0\x44\xa4\x4e\xd0\x0b\x32\xd0\x0b\x32\xdd\x12\x1e\xd0\x1f\x3f\xd1\x12\x40\xd4\x12\x40\xd0\x0c\x40\xdd\x1c\x1f\x9c\x48\xa0\x51\x9c\x4b\x88\x04\xd4\x08\x19\xd8\x16\x1a\x94\x6a\x8d\x03\x8c\x08\x90\x11\x89\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(150) +runpy_toplevel_consts_7_consts_2 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 75, + }, + .co_consts = & runpy_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_7_consts_2_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 54, + .co_nlocalsplus = 1, + .co_nlocals = 1, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = &_Py_ID(__enter__), + .co_qualname = & runpy_toplevel_consts_7_consts_2_qualname._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_7_consts_2_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x75\x01\x72\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x3c\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +runpy_toplevel_consts_7_consts_3_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__sentinel._ascii.ob_base, + & const_str_value._ascii.ob_base, + & const_str__saved_value._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_argv._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +runpy_toplevel_consts_7_consts_3_qualname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_ModifiedArgv0.__exit__", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[30]; + } +runpy_toplevel_consts_7_consts_3_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 29, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x15\x19\x94\x5e\x88\x04\x8c\x0a\xd8\x16\x1a\xd4\x16\x27\x8d\x03\x8c\x08\x90\x11\x89\x0b\x88\x0b\x88\x0b", +}; +static + struct _PyCode_DEF(70) +runpy_toplevel_consts_7_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 35, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_7_consts_3_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 7, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 60, + .co_nlocalsplus = 2, + .co_nlocals = 2, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = &_Py_ID(__exit__), + .co_qualname = & runpy_toplevel_consts_7_consts_3_qualname._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_7_consts_3_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x3c\x00\x00\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +runpy_toplevel_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & const_str__ModifiedArgv0._ascii.ob_base, + & runpy_toplevel_consts_7_consts_1.ob_base.ob_base, + & runpy_toplevel_consts_7_consts_2.ob_base.ob_base, + & runpy_toplevel_consts_7_consts_3.ob_base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[66]; + } +runpy_toplevel_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 65, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x08\x04\x05\x21\xf0\x00\x04\x05\x21\xf0\x00\x04\x05\x21\xf0\x0c\x02\x05\x28\xf0\x00\x02\x05\x28\xf0\x00\x02\x05\x28\xf0\x00\x02\x05\x28\xf0\x00\x02\x05\x28", +}; +static + struct _PyCode_DEF(32) +runpy_toplevel_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & runpy_toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & importlib__bootstrap_toplevel_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 49, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__ModifiedArgv0._ascii.ob_base, + .co_qualname = & const_str__ModifiedArgv0._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[42]; + } +runpy_toplevel_consts_9_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 41, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Helper to run code in nominated namespace", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +runpy_toplevel_consts_9_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__file__), + & const_str___cached__._ascii.ob_base, + &_Py_ID(__doc__), + &_Py_ID(__loader__), + &_Py_ID(__package__), + &_Py_ID(__spec__), + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +runpy_toplevel_consts_9_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & runpy_toplevel_consts_9_consts_0._ascii.ob_base, + Py_None, + & runpy_toplevel_consts_9_consts_2._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +runpy_toplevel_consts_9_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_update._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_origin._ascii.ob_base, + & const_str_cached._ascii.ob_base, + &_Py_ID(parent), + & const_str_exec._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str__run_code = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_run_code", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[161]; + } +runpy_toplevel_consts_9_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 160, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x08\x14\xd0\x07\x1f\xd8\x08\x13\xd7\x08\x1a\xd2\x08\x1a\x98\x3c\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x07\x0f\xd0\x07\x17\xd8\x11\x15\x88\x06\xd8\x10\x1b\x88\x05\xd8\x11\x15\x88\x06\x88\x06\xe0\x11\x19\x94\x1f\x88\x06\xd8\x10\x18\x94\x0f\x88\x05\xd8\x11\x19\x94\x1f\x88\x06\xd8\x0b\x13\xd0\x0b\x1b\xd8\x17\x1f\x94\x7f\x88\x48\xd8\x04\x0f\xd7\x04\x16\xd2\x04\x16\xa0\x28\xd8\x22\x27\xd8\x24\x2a\xd8\x21\x25\xd8\x24\x2a\xd8\x25\x2d\xd8\x22\x2a\xf0\x0d\x00\x05\x17\xf1\x00\x06\x05\x2c\xf4\x00\x06\x05\x2c\xf0\x00\x06\x05\x2c\xf5\x0e\x00\x05\x09\x88\x14\x88\x7b\xd1\x04\x1b\xd4\x04\x1b\xd0\x04\x1b\xd8\x0b\x16\xd0\x04\x16", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_run_globals = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "run_globals", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_init_globals = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "init_globals", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_mod_spec = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mod_spec", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_pkg_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pkg_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_script_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "script_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[6]; + } +const_str_fname = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 5, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "fname", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +runpy_toplevel_consts_9_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + &_Py_ID(code), + & const_str_run_globals._ascii.ob_base, + & const_str_init_globals._ascii.ob_base, + & const_str_mod_name._ascii.ob_base, + & const_str_mod_spec._ascii.ob_base, + & const_str_pkg_name._ascii.ob_base, + & const_str_script_name._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_fname._ascii.ob_base, + & const_str_cached._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(218) +runpy_toplevel_consts_9 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 109, + }, + .co_consts = & runpy_toplevel_consts_9_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_9_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 7, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 9, + .co_firstlineno = 65, + .co_nlocalsplus = 10, + .co_nlocals = 10, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_9_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__run_code._ascii.ob_base, + .co_qualname = & const_str__run_code._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_9_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x81\x15\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x04\x80\x07\x64\x01\x7d\x07\x7c\x06\x7d\x08\x64\x01\x7d\x09\x6e\x1e\x7c\x04\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x04\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x04\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x05\x80\x07\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x08\x7c\x09\x64\x01\x7c\x07\x7c\x05\x7c\x04\xac\x02\xa6\x07\x00\x00\xab\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[54]; + } +runpy_toplevel_consts_10_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 53, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Helper to run code in new namespace with sys modified", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +runpy_toplevel_consts_10_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & runpy_toplevel_consts_10_consts_0._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +runpy_toplevel_consts_10_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_origin._ascii.ob_base, + & const_str__TempModule._ascii.ob_base, + & const_str__ModifiedArgv0._ascii.ob_base, + & const_str_module._ascii.ob_base, + &_Py_ID(__dict__), + & const_str__run_code._ascii.ob_base, + &_Py_ID(copy), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str__run_module_code = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_run_module_code", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[279]; + } +runpy_toplevel_consts_10_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 278, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x08\x00\x1c\x24\xd0\x1b\x2b\x88\x4b\x88\x4b\xb0\x18\xb4\x1f\x80\x45\xdd\x09\x14\x90\x58\xd1\x09\x1e\xd4\x09\x1e\xf0\x00\x03\x05\x3d\xa0\x2b\xad\x7e\xb8\x65\xd1\x2f\x44\xd4\x2f\x44\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xd8\x16\x21\xd4\x16\x28\xd4\x16\x31\x88\x0b\xdd\x08\x11\x90\x24\x98\x0b\xa0\x5c\xd8\x12\x1a\x98\x48\xa0\x68\xb0\x0b\xf1\x03\x01\x09\x3d\xf4\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x05\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf1\x00\x03\x05\x3d\xf4\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf8\xf8\xf8\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf1\x00\x03\x05\x3d\xf4\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf8\xf8\xf8\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x0c\x00\x0c\x17\xd7\x0b\x1b\xd2\x0b\x1b\xd1\x0b\x1d\xd4\x0b\x1d\xd0\x04\x1d", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[53]; + } +runpy_toplevel_consts_10_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 52, + }, + .ob_shash = -1, + .ob_sval = "\x9b\x10\x41\x30\x03\xab\x22\x41\x19\x05\xc1\x0d\x0c\x41\x30\x03\xc1\x19\x04\x41\x1d\x09\xc1\x1d\x03\x41\x30\x03\xc1\x20\x01\x41\x1d\x09\xc1\x21\x03\x41\x30\x03\xc1\x30\x04\x41\x34\x07\xc1\x37\x01\x41\x34\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_temp_module = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "temp_module", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_mod_globals = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "mod_globals", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[9]; + }_object; + } +runpy_toplevel_consts_10_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 9, + }, + .ob_item = { + &_Py_ID(code), + & const_str_init_globals._ascii.ob_base, + & const_str_mod_name._ascii.ob_base, + & const_str_mod_spec._ascii.ob_base, + & const_str_pkg_name._ascii.ob_base, + & const_str_script_name._ascii.ob_base, + & const_str_fname._ascii.ob_base, + & const_str_temp_module._ascii.ob_base, + & const_str_mod_globals._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(286) +runpy_toplevel_consts_10 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 143, + }, + .co_consts = & runpy_toplevel_consts_10_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_10_names._object.ob_base.ob_base, + .co_exceptiontable = & runpy_toplevel_consts_10_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 6, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 11, + .co_firstlineno = 91, + .co_nlocalsplus = 9, + .co_nlocals = 9, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_10_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__run_module_code._ascii.ob_base, + .co_qualname = & const_str__run_module_code._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_10_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x03\x80\x02\x7c\x05\x6e\x06\x7c\x03\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x07\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x07\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x08\x7c\x01\x7c\x02\x7c\x03\x7c\x04\x7c\x05\xa6\x07\x00\x00\xab\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x08\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[36]; + } +runpy_toplevel_consts_11_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 35, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Relative module names not supported", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +runpy_toplevel_consts_11_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_warn._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[155]; + } +runpy_toplevel_consts_11_consts_6 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 154, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "{mod_name!r} found in sys.modules after import of package {pkg_name!r}, but prior to execution of {mod_name!r}; this may result in unpredictable behaviour", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +runpy_toplevel_consts_11_consts_7 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_mod_name._ascii.ob_base, + & const_str_pkg_name._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[59]; + } +runpy_toplevel_consts_11_consts_8 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 58, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Error while finding module specification for {!r} ({}: {})", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +runpy_toplevel_consts_11_consts_10 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ". Try using '", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +runpy_toplevel_consts_11_consts_12 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "' instead of '", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[22]; + } +runpy_toplevel_consts_11_consts_13 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 21, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "' as the module name.", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +runpy_toplevel_consts_11_consts_14 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "No module named %s", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +runpy_toplevel_consts_11_consts_16 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = ".__main__", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[38]; + } +runpy_toplevel_consts_11_consts_17 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 37, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Cannot use package as __main__ module", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[3]; + } +runpy_toplevel_consts_11_consts_18 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 2, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "; ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[46]; + } +runpy_toplevel_consts_11_consts_19 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 45, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " is a package and cannot be directly executed", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[49]; + } +runpy_toplevel_consts_11_consts_20 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 48, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "%r is a namespace package and cannot be executed", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[32]; + } +runpy_toplevel_consts_11_consts_21 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 31, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "No code object available for %s", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[22]; + }_object; + } +runpy_toplevel_consts_11_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 22, + }, + .ob_item = { + Py_None, + &_Py_STR(dot), + & runpy_toplevel_consts_11_consts_2._ascii.ob_base, + &_Py_ID(__path__), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & runpy_toplevel_consts_11_consts_5._object.ob_base.ob_base, + & runpy_toplevel_consts_11_consts_6._ascii.ob_base, + & runpy_toplevel_consts_11_consts_7._object.ob_base.ob_base, + & runpy_toplevel_consts_11_consts_8._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_39_consts_7_consts_12._ascii.ob_base, + & runpy_toplevel_consts_11_consts_10._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -3], + & runpy_toplevel_consts_11_consts_12._ascii.ob_base, + & runpy_toplevel_consts_11_consts_13._ascii.ob_base, + & runpy_toplevel_consts_11_consts_14._ascii.ob_base, + &_Py_ID(__main__), + & runpy_toplevel_consts_11_consts_16._ascii.ob_base, + & runpy_toplevel_consts_11_consts_17._ascii.ob_base, + & runpy_toplevel_consts_11_consts_18._ascii.ob_base, + & runpy_toplevel_consts_11_consts_19._ascii.ob_base, + & runpy_toplevel_consts_11_consts_20._ascii.ob_base, + & runpy_toplevel_consts_11_consts_21._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +const_str_RuntimeWarning = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "RuntimeWarning", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[5]; + } +const_str_util = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 4, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "util", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str__get_module_details = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_module_details", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[26]; + }_object; + } +runpy_toplevel_consts_11_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 26, + }, + .ob_item = { + & const_str_startswith._ascii.ob_base, + & const_str_rpartition._ascii.ob_base, + &_Py_ID(__import__), + & const_str_ImportError._ascii.ob_base, + &_Py_ID(name), + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + &_Py_ID(get), + & const_str_hasattr._ascii.ob_base, + &_Py_ID(warnings), + & const_str_warn._ascii.ob_base, + & const_str_format._ascii.ob_base, + & const_str_RuntimeWarning._ascii.ob_base, + &_Py_ID(importlib), + & const_str_util._ascii.ob_base, + & const_str_find_spec._ascii.ob_base, + & const_str_AttributeError._ascii.ob_base, + & const_str_TypeError._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + & const_str_endswith._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__name__), + & const_str_submodule_search_locations._ascii.ob_base, + & const_str__get_module_details._ascii.ob_base, + & const_str_loader._ascii.ob_base, + & const_str_get_code._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[877]; + } +runpy_toplevel_consts_11_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 876, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xd8\x07\x0f\xd7\x07\x1a\xd2\x07\x1a\x98\x33\xd1\x07\x1f\xd4\x07\x1f\xf0\x00\x01\x05\x3b\xd8\x0e\x13\x88\x65\xd0\x14\x39\xd1\x0e\x3a\xd4\x0e\x3a\xd0\x08\x3a\xd8\x15\x1d\xd7\x15\x28\xd2\x15\x28\xa8\x13\xd1\x15\x2d\xd4\x15\x2d\x81\x4e\x80\x48\x88\x61\x90\x11\xd8\x07\x0f\xf0\x00\x13\x05\x26\xf0\x04\x08\x09\x16\xdd\x0c\x16\x90\x78\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x1a\xf0\x00\x06\x09\x16\xf0\x00\x06\x09\x16\xf0\x00\x06\x09\x16\xf0\x08\x00\x10\x11\x8c\x76\x88\x7e\xa0\x21\xa4\x26\xa8\x48\xd2\x22\x34\xd0\x22\x34\xd8\x18\x20\xd7\x18\x2b\xd2\x18\x2b\xa8\x41\xac\x46\xb0\x53\xa9\x4c\xd1\x18\x39\xd4\x18\x39\xf0\x03\x00\x23\x35\xe0\x10\x15\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf0\x0d\x06\x09\x16\xf8\xf8\xf8\xf5\x10\x00\x14\x17\x94\x3b\x97\x3f\x92\x3f\xa0\x38\xd1\x13\x2c\xd4\x13\x2c\x88\x08\xd8\x0b\x13\xd0\x0b\x1f\xad\x07\xb0\x08\xb8\x2a\xd1\x28\x45\xd4\x28\x45\xd0\x0b\x1f\xd8\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xf0\x02\x03\x13\x1c\xf7\x06\x00\x1d\x23\x9a\x46\xa8\x48\xb8\x78\x98\x46\xd1\x1c\x48\xd4\x1c\x48\xf0\x07\x00\x0d\x10\xf0\x08\x00\x0d\x11\x88\x44\x95\x1e\xa0\x03\xd1\x11\x24\xd4\x11\x24\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xf0\x04\x0a\x05\x49\x01\xdd\x0f\x18\x8c\x7e\xd7\x0f\x27\xd2\x0f\x27\xa8\x08\xd1\x0f\x31\xd4\x0f\x31\x88\x04\x88\x04\xf8\xdd\x0c\x17\x9d\x1e\xad\x19\xb5\x4a\xd0\x0b\x3f\xf0\x00\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x08\x00\x0f\x4b\x01\x88\x03\xd8\x0b\x13\xd7\x0b\x1c\xd2\x0b\x1c\x98\x55\xd1\x0b\x23\xd4\x0b\x23\xf0\x00\x02\x09\x39\xd8\x0c\x0f\xf0\x00\x01\x15\x38\xa0\x48\xa8\x53\xa8\x62\xa8\x53\xa4\x4d\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xd8\x18\x20\xf0\x03\x01\x15\x38\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xf1\x00\x01\x0d\x39\x88\x43\xe0\x0e\x13\x88\x65\x90\x43\x97\x4a\x92\x4a\x98\x78\xad\x14\xa8\x62\xa9\x18\xac\x18\xd4\x29\x3a\xb8\x42\xd1\x14\x3f\xd4\x14\x3f\xd1\x0e\x40\xd4\x0e\x40\xc0\x62\xd0\x08\x48\xf8\xf8\xf8\xf8\xf0\x11\x08\x05\x49\x01\xf8\xf8\xf8\xf0\x12\x00\x08\x0c\x80\x7c\xd8\x0e\x13\x88\x65\xd0\x14\x28\xa8\x38\xd1\x14\x33\xd1\x0e\x34\xd4\x0e\x34\xd0\x08\x34\xd8\x07\x0b\xd4\x07\x26\xd0\x07\x32\xd8\x0b\x13\x90\x7a\xd2\x0b\x21\xd0\x0b\x21\xa0\x58\xd7\x25\x36\xd2\x25\x36\xb0\x7b\xd1\x25\x43\xd4\x25\x43\xd0\x0b\x21\xd8\x12\x17\x90\x25\xd0\x18\x3f\xd1\x12\x40\xd4\x12\x40\xd0\x0c\x40\xf0\x02\x07\x09\x47\x01\xd8\x1c\x24\xa0\x7b\xd1\x1c\x32\x88\x4d\xdd\x13\x26\xa0\x7d\xb0\x65\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c\xf8\xd8\x0f\x14\xf0\x00\x04\x09\x47\x01\xf0\x00\x04\x09\x47\x01\xf0\x00\x04\x09\x47\x01\xd8\x0f\x17\x9d\x73\x9c\x7b\xd0\x0f\x2a\xd0\x0f\x2a\xd8\x10\x15\xd8\x12\x17\x90\x25\xd8\x39\x3a\xb8\x11\xb8\x11\xb8\x48\xb8\x48\xb8\x48\xf0\x03\x01\x19\x46\x01\xf1\x00\x01\x13\x47\x01\xf4\x00\x01\x13\x47\x01\xf0\x00\x01\x0d\x47\x01\xf8\xf8\xf8\xf8\xf0\x07\x04\x09\x47\x01\xf8\xf8\xf8\xf0\x0a\x00\x0e\x12\x8c\x5b\x80\x46\xd8\x07\x0d\x80\x7e\xd8\x0e\x13\x88\x65\xd0\x14\x46\xd8\x43\x4b\xf1\x03\x01\x15\x4c\x01\xf1\x00\x01\x0f\x4d\x01\xf4\x00\x01\x0f\x4d\x01\xf0\x00\x01\x09\x4d\x01\xf0\x04\x03\x05\x26\xd8\x0f\x15\x8f\x7f\x8a\x7f\x98\x78\xd1\x0f\x28\xd4\x0f\x28\x88\x04\x88\x04\xf8\xdd\x0b\x16\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xd8\x0e\x13\x88\x65\x95\x46\x98\x31\x91\x49\x94\x49\xd1\x0e\x1e\xd4\x0e\x1e\xa0\x41\xd0\x08\x25\xf8\xf8\xf8\xf8\xf0\x03\x01\x05\x26\xf8\xf8\xf8\xe0\x07\x0b\x80\x7c\xd8\x0e\x13\x88\x65\xd0\x14\x35\xb8\x08\xd1\x14\x40\xd1\x0e\x41\xd4\x0e\x41\xd0\x08\x41\xd8\x0b\x13\x90\x54\x98\x34\xd0\x0b\x1f\xd0\x04\x1f", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[97]; + } +runpy_toplevel_consts_11_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 96, + }, + .ob_shash = -1, + .ob_sval = "\xbd\x0f\x41\x0d\x00\xc1\x0d\x0a\x42\x11\x03\xc1\x17\x30\x42\x0c\x03\xc2\x0c\x05\x42\x11\x03\xc3\x3b\x1f\x44\x1b\x00\xc4\x1b\x1d\x46\x1b\x03\xc4\x38\x41\x1e\x46\x16\x03\xc6\x16\x05\x46\x1b\x03\xc7\x1c\x14\x47\x31\x00\xc7\x31\x05\x48\x1b\x03\xc7\x36\x20\x48\x16\x03\xc8\x16\x05\x48\x1b\x03\xc8\x36\x15\x49\x0c\x00\xc9\x0c\x0a\x49\x34\x03\xc9\x16\x19\x49\x2f\x03\xc9\x2f\x05\x49\x34\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_existing = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "existing", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[14]; + } +const_str_pkg_main_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 13, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pkg_main_name", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +runpy_toplevel_consts_11_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_mod_name._ascii.ob_base, + & const_str_error._ascii.ob_base, + & const_str_pkg_name._ascii.ob_base, + &_Py_ID(_), + & const_str_e._ascii.ob_base, + & const_str_existing._ascii.ob_base, + & const_str_warn._ascii.ob_base, + &_Py_ID(msg), + & const_str_spec._ascii.ob_base, + & const_str_ex._ascii.ob_base, + & const_str_pkg_main_name._ascii.ob_base, + & const_str_loader._ascii.ob_base, + &_Py_ID(code), + }, + }, +}; +static + struct _PyCode_DEF(1304) +runpy_toplevel_consts_11 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 652, + }, + .co_consts = & runpy_toplevel_consts_11_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_11_names._object.ob_base.ob_base, + .co_exceptiontable = & runpy_toplevel_consts_11_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 9, + .co_firstlineno = 105, + .co_nlocalsplus = 13, + .co_nlocals = 13, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__get_module_details._ascii.ob_base, + .co_qualname = & const_str__get_module_details._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_11_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0b\x02\x00\x7c\x01\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x02\x7d\x03\x7d\x03\x7c\x02\x72\xbe\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x47\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x3a\x7d\x04\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x81\x28\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x6b\x03\x00\x00\x00\x00\x72\x1e\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x01\x82\x00\x59\x00\x64\x00\x7d\x04\x7e\x04\x6e\x08\x64\x00\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x81\x45\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x35\x64\x04\x64\x05\x6c\x09\x6d\x0a\x7d\x06\x01\x00\x64\x06\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xac\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x02\x00\x7c\x06\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x6e\x83\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x04\x24\x00\x72\x63\x7d\x09\x64\x08\x7d\x07\x7c\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x7c\x07\x64\x0a\x7c\x00\x64\x00\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0c\x7c\x00\x9b\x00\x64\x0d\x9d\x05\x7a\x0d\x00\x00\x7d\x07\x02\x00\x7c\x01\x7c\x07\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x29\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x15\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x82\x02\x64\x00\x7d\x09\x7e\x09\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x08\x80\x0e\x02\x00\x7c\x01\x64\x0e\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x08\x6a\x16\x00\x00\x00\x00\x00\x00\x00\x00\x81\x69\x7c\x00\x64\x0f\x6b\x02\x00\x00\x00\x00\x73\x15\x7c\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0b\x02\x00\x7c\x01\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x7c\x00\x64\x10\x7a\x00\x00\x00\x7d\x0a\x74\x2f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x7c\x01\x24\x00\x72\x25\x7d\x04\x7c\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x01\x82\x00\x02\x00\x7c\x01\x7c\x04\x9b\x01\x64\x12\x7c\x00\x9b\x02\x64\x13\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x00\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x08\x6a\x18\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x0b\x80\x0e\x02\x00\x7c\x01\x64\x14\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x7c\x0b\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x6e\x2b\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1e\x7d\x04\x02\x00\x7c\x01\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x82\x02\x64\x00\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x80\x0e\x02\x00\x7c\x01\x64\x15\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x7c\x08\x7c\x0c\x66\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[7]; + } +const_str__Error = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 6, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_Error", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[67]; + } +runpy_toplevel_consts_12_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 66, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Error that _run_module_as_main() should report without a traceback", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +runpy_toplevel_consts_12_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str__Error._ascii.ob_base, + & runpy_toplevel_consts_12_consts_1._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +runpy_toplevel_consts_12_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + &_Py_ID(__name__), + &_Py_ID(__module__), + &_Py_ID(__qualname__), + &_Py_ID(__doc__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +runpy_toplevel_consts_12_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x4c\xd0\x04\x4c\xd0\x04\x4c\xd0\x04\x4c", +}; +static + struct _PyCode_DEF(18) +runpy_toplevel_consts_12 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 9, + }, + .co_consts = & runpy_toplevel_consts_12_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 166, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__Error._ascii.ob_base, + .co_qualname = & const_str__Error._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_12_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[454]; + } +runpy_toplevel_consts_15_consts_0 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 453, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "\x52\x75\x6e\x73\x20\x74\x68\x65\x20\x64\x65\x73\x69\x67\x6e\x61\x74\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x5f\x5f\x6d\x61\x69\x6e\x5f\x5f\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x68\x61\x76\x65\x20\x66\x75\x6c\x6c\x20\x61\x63\x63\x65\x73\x73\x20\x74\x6f\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x6d\x61\x69\x6e\x5f\x5f\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x6e\x6f\x74\x20\x64\x65\x73\x69\x72\x61\x62\x6c\x65\x2c\x20\x74\x68\x65\x20\x72\x75\x6e\x5f\x6d\x6f\x64\x75\x6c\x65\x28\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x72\x75\x6e\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x63\x6f\x64\x65\x20\x69\x6e\x20\x61\x20\x66\x72\x65\x73\x68\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x41\x74\x20\x74\x68\x65\x20\x76\x65\x72\x79\x20\x6c\x65\x61\x73\x74\x2c\x20\x74\x68\x65\x73\x65\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x69\x6e\x20\x5f\x5f\x6d\x61\x69\x6e\x5f\x5f\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6f\x76\x65\x72\x77\x72\x69\x74\x74\x65\x6e\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x6e\x61\x6d\x65\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x66\x69\x6c\x65\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x63\x61\x63\x68\x65\x64\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x6c\x6f\x61\x64\x65\x72\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x70\x61\x63\x6b\x61\x67\x65\x5f\x5f\x0a\x20\x20\x20\x20", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +runpy_toplevel_consts_15_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + & runpy_toplevel_consts_15_consts_0._ascii.ob_base, + &_Py_ID(__main__), + & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +const_str__get_main_module_details = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_main_module_details", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +runpy_toplevel_consts_15_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & const_str__get_module_details._ascii.ob_base, + & const_str__Error._ascii.ob_base, + & const_str__get_main_module_details._ascii.ob_base, + & const_str_sys._ascii.ob_base, + & const_str_executable._ascii.ob_base, + & const_str_exit._ascii.ob_base, + &_Py_ID(modules), + &_Py_ID(__dict__), + & const_str_origin._ascii.ob_base, + & const_str_argv._ascii.ob_base, + & const_str__run_code._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str__run_module_as_main = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_run_module_as_main", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[211]; + } +runpy_toplevel_consts_15_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 210, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x1c\x07\x05\x16\xd8\x0b\x15\xf0\x00\x03\x09\x48\x01\x98\x18\xa0\x5a\xd2\x19\x2f\xd0\x19\x2f\xdd\x27\x3a\xb8\x38\xc5\x56\xd1\x27\x4c\xd4\x27\x4c\xd1\x0c\x24\x88\x48\x90\x68\xa0\x04\xa0\x04\xe5\x27\x3f\xc5\x06\xd1\x27\x47\xd4\x27\x47\xd1\x0c\x24\x88\x48\x90\x68\xa0\x04\xf8\xf8\xdd\x0b\x11\xf0\x00\x02\x05\x16\xf0\x00\x02\x05\x16\xf0\x00\x02\x05\x16\xdd\x1a\x1d\x9c\x2e\x98\x2e\x98\x2e\xa8\x23\xa8\x23\xd0\x0e\x2e\x88\x03\xdd\x08\x0b\x8c\x08\x90\x13\x89\x0d\x8c\x0d\x88\x0d\x88\x0d\x88\x0d\x88\x0d\x88\x0d\x88\x0d\xf8\xf8\xf8\xf8\xf0\x05\x02\x05\x16\xf8\xf8\xf8\xf5\x06\x00\x14\x17\x94\x3b\x98\x7a\xd4\x13\x2a\xd4\x13\x33\x80\x4c\xd8\x07\x11\xf0\x00\x01\x05\x26\xd8\x16\x1e\x94\x6f\x8d\x03\x8c\x08\x90\x11\x89\x0b\xdd\x0b\x14\x90\x54\x98\x3c\xa8\x14\xd8\x15\x1f\xa0\x18\xf1\x03\x01\x0c\x2b\xf4\x00\x01\x0c\x2b\xf0\x00\x01\x05\x2b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[22]; + } +runpy_toplevel_consts_15_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 21, + }, + .ob_shash = -1, + .ob_sval = "\x82\x3a\x3d\x00\xbd\x0a\x41\x36\x03\xc1\x07\x25\x41\x31\x03\xc1\x31\x05\x41\x36\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_alter_argv = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "alter_argv", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_main_globals = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "main_globals", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[7]; + }_object; + } +runpy_toplevel_consts_15_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 7, + }, + .ob_item = { + & const_str_mod_name._ascii.ob_base, + & const_str_alter_argv._ascii.ob_base, + & const_str_mod_spec._ascii.ob_base, + &_Py_ID(code), + & const_str_exc._ascii.ob_base, + &_Py_ID(msg), + & const_str_main_globals._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(370) +runpy_toplevel_consts_15 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 185, + }, + .co_consts = & runpy_toplevel_consts_15_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_15_names._object.ob_base.ob_base, + .co_exceptiontable = & runpy_toplevel_consts_15_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 173, + .co_nlocalsplus = 7, + .co_nlocals = 7, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__run_module_as_main._ascii.ob_base, + .co_qualname = & const_str__run_module_as_main._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_15_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x09\x00\x7c\x01\x73\x06\x7c\x00\x64\x01\x6b\x03\x00\x00\x00\x00\x72\x1a\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x00\x7d\x02\x7d\x03\x6e\x18\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x00\x7d\x02\x7d\x03\x6e\x3c\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x2f\x7d\x04\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x02\x7c\x04\x9b\x01\x9d\x03\x7d\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x03\x7d\x04\x7e\x04\x6e\x08\x64\x03\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x01\x72\x14\x7c\x02\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x3c\x00\x00\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x06\x64\x03\x64\x01\x7c\x02\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyCompactUnicodeObject _compact; + uint16_t _data[801]; + } +runpy_toplevel_consts_17_consts_0 = { + ._compact = { + ._base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 800, + .hash = -1, + .state = { + .kind = 2, + .compact = 1, + .ascii = 0, + .ready = 1, + }, + }, + }, + ._data = { + 69, 120, 101, 99, 117, 116, 101, 32, 97, 32, 109, 111, 100, 117, 108, 101, + 39, 115, 32, 99, 111, 100, 101, 32, 119, 105, 116, 104, 111, 117, 116, 32, + 105, 109, 112, 111, 114, 116, 105, 110, 103, 32, 105, 116, 46, 10, 10, 32, + 32, 32, 32, 32, 32, 32, 109, 111, 100, 95, 110, 97, 109, 101, 32, 45, + 45, 32, 97, 110, 32, 97, 98, 115, 111, 108, 117, 116, 101, 32, 109, 111, + 100, 117, 108, 101, 32, 110, 97, 109, 101, 32, 111, 114, 32, 112, 97, 99, + 107, 97, 103, 101, 32, 110, 97, 109, 101, 46, 10, 10, 32, 32, 32, 32, + 32, 32, 32, 79, 112, 116, 105, 111, 110, 97, 108, 32, 97, 114, 103, 117, + 109, 101, 110, 116, 115, 58, 10, 32, 32, 32, 32, 32, 32, 32, 105, 110, + 105, 116, 95, 103, 108, 111, 98, 97, 108, 115, 32, 45, 45, 32, 100, 105, + 99, 116, 105, 111, 110, 97, 114, 121, 32, 117, 115, 101, 100, 32, 116, 111, + 32, 112, 114, 101, 45, 112, 111, 112, 117, 108, 97, 116, 101, 32, 116, 104, + 101, 32, 109, 111, 100, 117, 108, 101, 8217, 115, 10, 32, 32, 32, 32, 32, + 32, 32, 103, 108, 111, 98, 97, 108, 115, 32, 100, 105, 99, 116, 105, 111, + 110, 97, 114, 121, 32, 98, 101, 102, 111, 114, 101, 32, 116, 104, 101, 32, + 99, 111, 100, 101, 32, 105, 115, 32, 101, 120, 101, 99, 117, 116, 101, 100, + 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 114, 117, 110, 95, 110, 97, + 109, 101, 32, 45, 45, 32, 105, 102, 32, 110, 111, 116, 32, 78, 111, 110, + 101, 44, 32, 116, 104, 105, 115, 32, 119, 105, 108, 108, 32, 98, 101, 32, + 117, 115, 101, 100, 32, 102, 111, 114, 32, 115, 101, 116, 116, 105, 110, 103, + 32, 95, 95, 110, 97, 109, 101, 95, 95, 59, 10, 32, 32, 32, 32, 32, + 32, 32, 111, 116, 104, 101, 114, 119, 105, 115, 101, 44, 32, 95, 95, 110, + 97, 109, 101, 95, 95, 32, 119, 105, 108, 108, 32, 98, 101, 32, 115, 101, + 116, 32, 116, 111, 32, 109, 111, 100, 95, 110, 97, 109, 101, 32, 43, 32, + 39, 95, 95, 109, 97, 105, 110, 95, 95, 39, 32, 105, 102, 32, 116, 104, + 101, 10, 32, 32, 32, 32, 32, 32, 32, 110, 97, 109, 101, 100, 32, 109, + 111, 100, 117, 108, 101, 32, 105, 115, 32, 97, 32, 112, 97, 99, 107, 97, + 103, 101, 32, 97, 110, 100, 32, 116, 111, 32, 106, 117, 115, 116, 32, 109, + 111, 100, 95, 110, 97, 109, 101, 32, 111, 116, 104, 101, 114, 119, 105, 115, + 101, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 97, 108, 116, 101, 114, + 95, 115, 121, 115, 32, 45, 45, 32, 105, 102, 32, 84, 114, 117, 101, 44, + 32, 115, 121, 115, 46, 97, 114, 103, 118, 91, 48, 93, 32, 105, 115, 32, + 117, 112, 100, 97, 116, 101, 100, 32, 119, 105, 116, 104, 32, 116, 104, 101, + 32, 118, 97, 108, 117, 101, 32, 111, 102, 10, 32, 32, 32, 32, 32, 32, + 32, 95, 95, 102, 105, 108, 101, 95, 95, 32, 97, 110, 100, 32, 115, 121, + 115, 46, 109, 111, 100, 117, 108, 101, 115, 91, 95, 95, 110, 97, 109, 101, + 95, 95, 93, 32, 105, 115, 32, 117, 112, 100, 97, 116, 101, 100, 32, 119, + 105, 116, 104, 32, 97, 32, 116, 101, 109, 112, 111, 114, 97, 114, 121, 10, + 32, 32, 32, 32, 32, 32, 32, 109, 111, 100, 117, 108, 101, 32, 111, 98, + 106, 101, 99, 116, 32, 102, 111, 114, 32, 116, 104, 101, 32, 109, 111, 100, + 117, 108, 101, 32, 98, 101, 105, 110, 103, 32, 101, 120, 101, 99, 117, 116, + 101, 100, 46, 32, 66, 111, 116, 104, 32, 97, 114, 101, 10, 32, 32, 32, + 32, 32, 32, 32, 114, 101, 115, 116, 111, 114, 101, 100, 32, 116, 111, 32, + 116, 104, 101, 105, 114, 32, 111, 114, 105, 103, 105, 110, 97, 108, 32, 118, + 97, 108, 117, 101, 115, 32, 98, 101, 102, 111, 114, 101, 32, 116, 104, 101, + 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 114, 101, 116, 117, 114, 110, + 115, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 82, 101, 116, 117, 114, + 110, 115, 32, 116, 104, 101, 32, 114, 101, 115, 117, 108, 116, 105, 110, 103, + 32, 109, 111, 100, 117, 108, 101, 32, 103, 108, 111, 98, 97, 108, 115, 32, + 100, 105, 99, 116, 105, 111, 110, 97, 114, 121, 46, 10, 32, 32, 32, 32, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +runpy_toplevel_consts_17_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & runpy_toplevel_consts_17_consts_0._compact._base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +runpy_toplevel_consts_17_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str__get_module_details._ascii.ob_base, + & const_str__run_module_code._ascii.ob_base, + & const_str__run_code._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[89]; + } +runpy_toplevel_consts_17_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 88, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf5\x2a\x00\x20\x33\xb0\x38\xd1\x1f\x3c\xd4\x1f\x3c\xd1\x04\x1c\x80\x48\x88\x68\x98\x04\xd8\x07\x0f\xd0\x07\x17\xd8\x13\x1b\x88\x08\xd8\x07\x10\xf0\x00\x04\x05\x45\x01\xdd\x0f\x1f\xa0\x04\xa0\x6c\xb0\x48\xb8\x68\xd1\x0f\x47\xd4\x0f\x47\xd0\x08\x47\xf5\x06\x00\x10\x19\x98\x14\x98\x72\xa0\x3c\xb0\x18\xb8\x38\xd1\x0f\x44\xd4\x0f\x44\xd0\x08\x44", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_run_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "run_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_alter_sys = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "alter_sys", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +runpy_toplevel_consts_17_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_mod_name._ascii.ob_base, + & const_str_init_globals._ascii.ob_base, + & const_str_run_name._ascii.ob_base, + & const_str_alter_sys._ascii.ob_base, + & const_str_mod_spec._ascii.ob_base, + &_Py_ID(code), + }, + }, +}; +static + struct _PyCode_DEF(126) +runpy_toplevel_consts_17 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 63, + }, + .co_consts = & runpy_toplevel_consts_17_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_17_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 4, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 7, + .co_firstlineno = 201, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str_run_module._ascii.ob_base, + .co_qualname = & const_str_run_module._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_17_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x00\x7d\x04\x7d\x05\x7c\x02\x80\x02\x7c\x00\x7d\x02\x7c\x03\x72\x12\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x01\x7c\x02\x7c\x04\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x69\x00\x7c\x01\x7c\x02\x7c\x04\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +runpy_toplevel_consts_18_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "can't find ", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +runpy_toplevel_consts_18_consts_3 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = " module in ", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[5]; + }_object; + } +runpy_toplevel_consts_18_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 5, + }, + .ob_item = { + Py_None, + &_Py_ID(__main__), + & runpy_toplevel_consts_18_consts_2._ascii.ob_base, + & runpy_toplevel_consts_18_consts_3._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +runpy_toplevel_consts_18_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_sys._ascii.ob_base, + &_Py_ID(modules), + & const_str__get_module_details._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str_str._ascii.ob_base, + &_Py_ID(path), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[193]; + } +runpy_toplevel_consts_18_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 192, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x0a\x00\x11\x1b\x80\x49\xdd\x11\x14\x94\x1b\x98\x59\xd4\x11\x27\x80\x4a\xdd\x08\x0b\x8c\x0b\x90\x49\xd0\x08\x1e\xf0\x02\x08\x05\x2c\xdd\x0f\x22\xa0\x39\xd1\x0f\x2d\xd4\x0f\x2d\xf0\x0e\x00\x22\x2c\x8d\x03\x8c\x0b\x90\x49\xd1\x08\x1e\xd0\x08\x1e\xf8\xf5\x0d\x00\x0c\x17\xf0\x00\x04\x05\x0e\xf0\x00\x04\x05\x0e\xf0\x00\x04\x05\x0e\xd8\x0b\x14\x9d\x03\x98\x43\x99\x08\x9c\x08\xd0\x0b\x20\xd0\x0b\x20\xd8\x12\x17\x90\x25\x90\x25\xd8\x1f\x28\x98\x79\x98\x79\xad\x23\xac\x28\xb0\x31\xac\x2b\xa8\x2b\xf0\x03\x01\x19\x37\xf1\x00\x01\x13\x38\xf4\x00\x01\x13\x38\xd8\x3d\x40\xf0\x03\x01\x0d\x41\x01\xe0\x08\x0d\xf8\xf8\xf8\xf8\xf0\x09\x04\x05\x0e\xf8\xf8\xf8\xf8\xf0\x0c\x00\x22\x2c\x8d\x03\x8c\x0b\x90\x49\xd1\x08\x1e\xd0\x08\x2b\xd0\x08\x2b\xd0\x08\x2b\xd0\x08\x2b", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[36]; + } +runpy_toplevel_consts_18_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 35, + }, + .ob_shash = -1, + .ob_sval = "\xa3\x0e\x41\x01\x00\xc1\x01\x0a\x42\x04\x03\xc1\x0b\x34\x41\x3f\x03\xc1\x3f\x05\x42\x04\x03\xc2\x04\x03\x42\x07\x00\xc2\x07\x11\x42\x18\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_main_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "main_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +const_str_saved_main = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "saved_main", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +runpy_toplevel_consts_18_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + & const_str_error._ascii.ob_base, + & const_str_main_name._ascii.ob_base, + & const_str_saved_main._ascii.ob_base, + & const_str_exc._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(310) +runpy_toplevel_consts_18 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 155, + }, + .co_consts = & runpy_toplevel_consts_18_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_18_names._object.ob_base.ob_base, + .co_exceptiontable = & runpy_toplevel_consts_18_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 1, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 8, + .co_firstlineno = 231, + .co_nlocalsplus = 4, + .co_nlocals = 4, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__get_main_module_details._ascii.ob_base, + .co_qualname = & const_str__get_main_module_details._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_18_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x39\x7d\x03\x7c\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x22\x02\x00\x7c\x00\x64\x02\x7c\x01\x9b\x02\x64\x03\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x82\x02\x82\x00\x64\x00\x7d\x03\x7e\x03\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x7c\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_read_code = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "read_code", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +runpy_toplevel_consts_19_consts_2 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_read_code._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +runpy_toplevel_consts_19_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_None, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & runpy_toplevel_consts_19_consts_2._object.ob_base.ob_base, + & const_str_exec._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[8]; + } +const_str_pkgutil = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 7, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "pkgutil", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +runpy_toplevel_consts_19_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + & const_str_pkgutil._ascii.ob_base, + & const_str_read_code._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(path), + & const_str_abspath._ascii.ob_base, + & const_str_fsdecode._ascii.ob_base, + & const_str_io._ascii.ob_base, + & const_str_open_code._ascii.ob_base, + & const_str_compile._ascii.ob_base, + &_Py_ID(read), + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +const_str__get_code_from_file = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "_get_code_from_file", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[299]; + } +runpy_toplevel_consts_19_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 298, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xe0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xdd\x13\x15\x94\x37\x97\x3f\x92\x3f\xa5\x32\xa4\x3b\xa8\x75\xd1\x23\x35\xd4\x23\x35\xd1\x13\x36\xd4\x13\x36\x80\x4c\xdd\x09\x0b\x8c\x1c\x90\x6c\xd1\x09\x23\xd4\x09\x23\xf0\x00\x01\x05\x1c\xa0\x71\xd8\x0f\x18\x88\x79\x98\x11\x89\x7c\x8c\x7c\x88\x04\xf0\x03\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf1\x00\x01\x05\x1c\xf4\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf8\xf8\xf8\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xe0\x07\x0b\x80\x7c\xe5\x0d\x0f\x8c\x5c\x98\x2c\xd1\x0d\x27\xd4\x0d\x27\xf0\x00\x01\x09\x34\xa8\x31\xdd\x13\x1a\x98\x31\x9f\x36\x9a\x36\x99\x38\x9c\x38\xa0\x55\xa8\x46\xd1\x13\x33\xd4\x13\x33\x88\x44\xf0\x03\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf1\x00\x01\x09\x34\xf4\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf8\xf8\xf8\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xe0\x0b\x0f\x90\x15\x88\x3b\xd0\x04\x16", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[37]; + } +runpy_toplevel_consts_19_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 36, + }, + .ob_shash = -1, + .ob_sval = "\xc1\x0c\x0c\x41\x24\x03\xc1\x24\x04\x41\x28\x07\xc1\x2b\x01\x41\x28\x07\xc2\x05\x24\x42\x35\x03\xc2\x35\x04\x42\x39\x07\xc2\x3c\x01\x42\x39\x07", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_decoded_path = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "decoded_path", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +runpy_toplevel_consts_19_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_run_name._ascii.ob_base, + & const_str_fname._ascii.ob_base, + & const_str_read_code._ascii.ob_base, + & const_str_decoded_path._ascii.ob_base, + & const_str_f._ascii.ob_base, + &_Py_ID(code), + }, + }, +}; +static + struct _PyCode_DEF(392) +runpy_toplevel_consts_19 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 196, + }, + .co_consts = & runpy_toplevel_consts_19_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_19_names._object.ob_base.ob_base, + .co_exceptiontable = & runpy_toplevel_consts_19_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 2, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 6, + .co_firstlineno = 250, + .co_nlocalsplus = 6, + .co_nlocals = 6, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str__get_code_from_file._ascii.ob_base, + .co_qualname = & const_str__get_code_from_file._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_19_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x01\x64\x02\x6c\x00\x6d\x01\x7d\x02\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x04\x02\x00\x7c\x02\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x05\x80\x4f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x05\x7c\x01\x66\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyCompactUnicodeObject _compact; + uint16_t _data[531]; + } +runpy_toplevel_consts_20_consts_0 = { + ._compact = { + ._base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 530, + .hash = -1, + .state = { + .kind = 2, + .compact = 1, + .ascii = 0, + .ready = 1, + }, + }, + }, + ._data = { + 69, 120, 101, 99, 117, 116, 101, 32, 99, 111, 100, 101, 32, 108, 111, 99, + 97, 116, 101, 100, 32, 97, 116, 32, 116, 104, 101, 32, 115, 112, 101, 99, + 105, 102, 105, 101, 100, 32, 102, 105, 108, 101, 115, 121, 115, 116, 101, 109, + 32, 108, 111, 99, 97, 116, 105, 111, 110, 46, 10, 10, 32, 32, 32, 32, + 32, 32, 32, 112, 97, 116, 104, 95, 110, 97, 109, 101, 32, 45, 45, 32, + 102, 105, 108, 101, 115, 121, 115, 116, 101, 109, 32, 108, 111, 99, 97, 116, + 105, 111, 110, 32, 111, 102, 32, 97, 32, 80, 121, 116, 104, 111, 110, 32, + 115, 99, 114, 105, 112, 116, 44, 32, 122, 105, 112, 102, 105, 108, 101, 44, + 10, 32, 32, 32, 32, 32, 32, 32, 111, 114, 32, 100, 105, 114, 101, 99, + 116, 111, 114, 121, 32, 99, 111, 110, 116, 97, 105, 110, 105, 110, 103, 32, + 97, 32, 116, 111, 112, 32, 108, 101, 118, 101, 108, 32, 95, 95, 109, 97, + 105, 110, 95, 95, 46, 112, 121, 32, 115, 99, 114, 105, 112, 116, 46, 10, + 10, 32, 32, 32, 32, 32, 32, 32, 79, 112, 116, 105, 111, 110, 97, 108, + 32, 97, 114, 103, 117, 109, 101, 110, 116, 115, 58, 10, 32, 32, 32, 32, + 32, 32, 32, 105, 110, 105, 116, 95, 103, 108, 111, 98, 97, 108, 115, 32, + 45, 45, 32, 100, 105, 99, 116, 105, 111, 110, 97, 114, 121, 32, 117, 115, + 101, 100, 32, 116, 111, 32, 112, 114, 101, 45, 112, 111, 112, 117, 108, 97, + 116, 101, 32, 116, 104, 101, 32, 109, 111, 100, 117, 108, 101, 8217, 115, 10, + 32, 32, 32, 32, 32, 32, 32, 103, 108, 111, 98, 97, 108, 115, 32, 100, + 105, 99, 116, 105, 111, 110, 97, 114, 121, 32, 98, 101, 102, 111, 114, 101, + 32, 116, 104, 101, 32, 99, 111, 100, 101, 32, 105, 115, 32, 101, 120, 101, + 99, 117, 116, 101, 100, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 114, + 117, 110, 95, 110, 97, 109, 101, 32, 45, 45, 32, 105, 102, 32, 110, 111, + 116, 32, 78, 111, 110, 101, 44, 32, 116, 104, 105, 115, 32, 119, 105, 108, + 108, 32, 98, 101, 32, 117, 115, 101, 100, 32, 116, 111, 32, 115, 101, 116, + 32, 95, 95, 110, 97, 109, 101, 95, 95, 59, 10, 32, 32, 32, 32, 32, + 32, 32, 111, 116, 104, 101, 114, 119, 105, 115, 101, 44, 32, 39, 60, 114, + 117, 110, 95, 112, 97, 116, 104, 62, 39, 32, 119, 105, 108, 108, 32, 98, + 101, 32, 117, 115, 101, 100, 32, 102, 111, 114, 32, 95, 95, 110, 97, 109, + 101, 95, 95, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 82, 101, 116, + 117, 114, 110, 115, 32, 116, 104, 101, 32, 114, 101, 115, 117, 108, 116, 105, + 110, 103, 32, 109, 111, 100, 117, 108, 101, 32, 103, 108, 111, 98, 97, 108, + 115, 32, 100, 105, 99, 116, 105, 111, 110, 97, 114, 121, 46, 10, 32, 32, + 32, 32, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[11]; + } +runpy_toplevel_consts_20_consts_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 10, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_get_importer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "get_importer", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +runpy_toplevel_consts_20_consts_5 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_get_importer._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[4]; + } +const_str_imp = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 3, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "imp", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +const_str_NullImporter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "NullImporter", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +runpy_toplevel_consts_20_consts_10 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_pkg_name._ascii.ob_base, + & const_str_script_name._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[11]; + }_object; + } +runpy_toplevel_consts_20_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 11, + }, + .ob_item = { + & runpy_toplevel_consts_20_consts_0._compact._base.ob_base, + Py_None, + & runpy_toplevel_consts_20_consts_2._ascii.ob_base, + &_Py_STR(dot), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + & runpy_toplevel_consts_20_consts_5._object.ob_base.ob_base, + Py_False, + & const_str_imp._ascii.ob_base, + & const_str_NullImporter._ascii.ob_base, + Py_True, + & runpy_toplevel_consts_20_consts_10._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[21]; + }_object; + } +runpy_toplevel_consts_20_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 21, + }, + .ob_item = { + & const_str_rpartition._ascii.ob_base, + & const_str_pkgutil._ascii.ob_base, + & const_str_get_importer._ascii.ob_base, + & const_str_type._ascii.ob_base, + &_Py_ID(__module__), + &_Py_ID(__name__), + &_Py_ID(isinstance), + & const_str__get_code_from_file._ascii.ob_base, + & const_str__run_module_code._ascii.ob_base, + & const_str_sys._ascii.ob_base, + &_Py_ID(path), + & const_str_insert._ascii.ob_base, + & const_str__get_main_module_details._ascii.ob_base, + & const_str__TempModule._ascii.ob_base, + & const_str__ModifiedArgv0._ascii.ob_base, + & const_str_module._ascii.ob_base, + &_Py_ID(__dict__), + & const_str__run_code._ascii.ob_base, + &_Py_ID(copy), + & const_str_remove._ascii.ob_base, + & const_str_ValueError._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[770]; + } +runpy_toplevel_consts_20_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 769, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xf0\x1e\x00\x08\x10\xd0\x07\x17\xd8\x13\x1f\x88\x08\xd8\x0f\x17\xd7\x0f\x22\xd2\x0f\x22\xa0\x33\xd1\x0f\x27\xd4\x0f\x27\xa8\x01\xd4\x0f\x2a\x80\x48\xd8\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd8\x0f\x1b\x88\x7c\x98\x49\xd1\x0f\x26\xd4\x0f\x26\x80\x48\xe0\x16\x1b\x80\x4f\xdd\x07\x0b\x88\x48\x81\x7e\x84\x7e\xd4\x07\x20\xa0\x45\xd2\x07\x29\xd0\x07\x29\xdd\x0b\x0f\x90\x08\x89\x3e\x8c\x3e\xd4\x0b\x22\xa0\x6e\xd2\x0b\x34\xd0\x0b\x34\xd8\x1e\x22\x88\x4f\xdd\x07\x11\x90\x28\x9d\x44\xa0\x14\x99\x4a\x9c\x4a\xd1\x07\x27\xd4\x07\x27\xf0\x00\x1b\x05\x15\xa8\x3f\xf0\x00\x1b\x05\x15\xf5\x06\x00\x17\x2a\xa8\x28\xb0\x49\xd1\x16\x3e\xd4\x16\x3e\x89\x0b\x88\x04\x88\x65\xdd\x0f\x1f\xa0\x04\xa0\x6c\xb0\x48\xd8\x29\x31\xb8\x75\xf0\x03\x01\x10\x46\x01\xf1\x00\x01\x10\x46\x01\xf4\x00\x01\x10\x46\x01\xf0\x00\x01\x09\x46\x01\xf5\x0a\x00\x09\x0c\x8c\x08\x8f\x0f\x8a\x0f\x98\x01\x98\x39\xd1\x08\x25\xd4\x08\x25\xd0\x08\x25\xf0\x02\x11\x09\x15\xf5\x0e\x00\x28\x40\x01\xd1\x27\x41\xd4\x27\x41\xd1\x0c\x24\x88\x48\x90\x68\xa0\x04\xdd\x11\x1c\x98\x58\xd1\x11\x26\xd4\x11\x26\xf0\x00\x04\x0d\x49\x01\xa8\x2b\xdd\x11\x1f\xa0\x09\xd1\x11\x2a\xd4\x11\x2a\xf0\x03\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xe0\x1e\x29\xd4\x1e\x30\xd4\x1e\x39\x90\x0b\xdd\x17\x20\xa0\x14\xa0\x7b\xb0\x4c\xd8\x24\x2c\xa8\x68\xb8\x08\xf1\x03\x01\x18\x42\x01\xf4\x00\x01\x18\x42\x01\xdf\x42\x46\xc2\x24\xc1\x26\xc4\x26\xf0\x09\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf1\x00\x04\x0d\x49\x01\xf4\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf1\x00\x04\x0d\x49\x01\xf4\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x0c\x03\x0d\x15\xdd\x10\x13\x94\x08\x97\x0f\x92\x0f\xa0\x09\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x11\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf8\xf8\xf8\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf1\x00\x04\x0d\x49\x01\xf4\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf8\xf8\xf8\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x0c\x03\x0d\x15\xdd\x10\x13\x94\x08\x97\x0f\x92\x0f\xa0\x09\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf0\x05\x03\x0d\x15\xdd\x10\x13\x94\x08\x97\x0f\x92\x0f\xa0\x09\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf8\xf8", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[163]; + } +runpy_toplevel_consts_20_exceptiontable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 162, + }, + .ob_shash = -1, + .ob_sval = "\xc3\x0c\x21\x47\x0d\x00\xc3\x2d\x10\x46\x0f\x03\xc3\x3d\x32\x45\x38\x05\xc4\x2f\x0c\x46\x0f\x03\xc4\x3b\x0c\x47\x0d\x00\xc5\x08\x1f\x45\x28\x02\xc5\x28\x0a\x45\x35\x05\xc5\x34\x01\x45\x35\x05\xc5\x38\x04\x45\x3c\x09\xc5\x3c\x03\x46\x0f\x03\xc5\x3f\x01\x45\x3c\x09\xc6\x00\x03\x46\x0f\x03\xc6\x03\x0c\x47\x0d\x00\xc6\x0f\x04\x46\x13\x07\xc6\x13\x03\x47\x0d\x00\xc6\x16\x01\x46\x13\x07\xc6\x17\x03\x47\x0d\x00\xc6\x1b\x1f\x46\x3c\x00\xc6\x3c\x0a\x47\x0a\x03\xc7\x09\x01\x47\x0a\x03\xc7\x0d\x01\x47\x3f\x03\xc7\x0f\x1f\x47\x2f\x04\xc7\x2e\x01\x47\x3f\x03\xc7\x2f\x0a\x47\x3c\x07\xc7\x39\x02\x47\x3f\x03\xc7\x3b\x01\x47\x3c\x07\xc7\x3c\x03\x47\x3f\x03", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[10]; + } +const_str_path_name = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 9, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "path_name", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[9]; + } +const_str_importer = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 8, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "importer", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[16]; + } +const_str_is_NullImporter = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 15, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "is_NullImporter", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[13]; + }_object; + } +runpy_toplevel_consts_20_localsplusnames = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 13, + }, + .ob_item = { + & const_str_path_name._ascii.ob_base, + & const_str_init_globals._ascii.ob_base, + & const_str_run_name._ascii.ob_base, + & const_str_pkg_name._ascii.ob_base, + & const_str_get_importer._ascii.ob_base, + & const_str_importer._ascii.ob_base, + & const_str_is_NullImporter._ascii.ob_base, + &_Py_ID(code), + & const_str_fname._ascii.ob_base, + & const_str_mod_name._ascii.ob_base, + & const_str_mod_spec._ascii.ob_base, + & const_str_temp_module._ascii.ob_base, + & const_str_mod_globals._ascii.ob_base, + }, + }, +}; +static + struct _PyCode_DEF(1028) +runpy_toplevel_consts_20 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 514, + }, + .co_consts = & runpy_toplevel_consts_20_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_20_names._object.ob_base.ob_base, + .co_exceptiontable = & runpy_toplevel_consts_20_exceptiontable.ob_base.ob_base, + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 3, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 10, + .co_firstlineno = 262, + .co_nlocalsplus = 13, + .co_nlocals = 13, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = & runpy_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, + .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = & const_str_run_path._ascii.ob_base, + .co_qualname = & const_str_run_path._ascii.ob_base, + .co_linetable = & runpy_toplevel_consts_20_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x7c\x02\x80\x02\x64\x02\x7d\x02\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x64\x04\x64\x05\x6c\x01\x6d\x02\x7d\x04\x01\x00\x02\x00\x7c\x04\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x06\x7d\x06\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x6b\x02\x00\x00\x00\x00\x72\x1a\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x09\x7d\x06\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x06\x72\x27\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x07\x7d\x08\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x01\x7c\x02\x7c\x03\x7c\x08\xac\x0a\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x09\x7d\x0a\x7d\x07\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x0b\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x0b\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x0c\x7c\x01\x7c\x02\x7c\x0a\x7c\x03\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x63\x02\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x23\x00\x74\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x23\x00\x74\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x77\x00\x77\x00\x78\x03\x59\x00\x77\x01\x78\x03\x59\x00\x77\x01", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[34]; + } +runpy_toplevel_consts_23 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 33, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "No module specified for execution", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +runpy_toplevel_consts_27 = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_None, + Py_None, + Py_False, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[29]; + }_object; + } +runpy_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 29, + }, + .ob_item = { + & runpy_toplevel_consts_0._ascii.ob_base, + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], + Py_None, + & const_str_run_module._ascii.ob_base, + & const_str_run_path._ascii.ob_base, + & runpy_toplevel_consts_5.ob_base.ob_base, + & const_str__TempModule._ascii.ob_base, + & runpy_toplevel_consts_7.ob_base.ob_base, + & const_str__ModifiedArgv0._ascii.ob_base, + & runpy_toplevel_consts_9.ob_base.ob_base, + & runpy_toplevel_consts_10.ob_base.ob_base, + & runpy_toplevel_consts_11.ob_base.ob_base, + & runpy_toplevel_consts_12.ob_base.ob_base, + & const_str__Error._ascii.ob_base, + Py_True, + & runpy_toplevel_consts_15.ob_base.ob_base, + Py_False, + & runpy_toplevel_consts_17.ob_base.ob_base, + & runpy_toplevel_consts_18.ob_base.ob_base, + & runpy_toplevel_consts_19.ob_base.ob_base, + & runpy_toplevel_consts_20.ob_base.ob_base, + &_Py_ID(__main__), + (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], + & runpy_toplevel_consts_23._ascii.ob_base, + & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, + & codecs_toplevel_consts_12_consts_7._object.ob_base.ob_base, + & importlib__bootstrap_external_toplevel_consts_83._object.ob_base.ob_base, + & runpy_toplevel_consts_27._object.ob_base.ob_base, + & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +runpy_toplevel_names_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "importlib.machinery", +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[15]; + } +runpy_toplevel_names_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 14, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "importlib.util", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[29]; + }_object; + } +runpy_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 29, + }, + .ob_item = { + &_Py_ID(__doc__), + & const_str_sys._ascii.ob_base, + & runpy_toplevel_names_2._ascii.ob_base, + &_Py_ID(importlib), + & runpy_toplevel_names_4._ascii.ob_base, + & const_str_io._ascii.ob_base, + & const_str_os._ascii.ob_base, + &_Py_ID(__all__), + & const_str_type._ascii.ob_base, + & const_str_ModuleType._ascii.ob_base, + & const_str_object._ascii.ob_base, + & const_str__TempModule._ascii.ob_base, + & const_str__ModifiedArgv0._ascii.ob_base, + & const_str__run_code._ascii.ob_base, + & const_str__run_module_code._ascii.ob_base, + & const_str_ImportError._ascii.ob_base, + & const_str__get_module_details._ascii.ob_base, + & const_str_Exception._ascii.ob_base, + & const_str__Error._ascii.ob_base, + & const_str__run_module_as_main._ascii.ob_base, + & const_str_run_module._ascii.ob_base, + & const_str__get_main_module_details._ascii.ob_base, + & const_str__get_code_from_file._ascii.ob_base, + & const_str_run_path._ascii.ob_base, + &_Py_ID(__name__), + &_Py_ID(len), + & const_str_argv._ascii.ob_base, + & const_str_print._ascii.ob_base, + &_Py_ID(stderr), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[543]; + } +runpy_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 542, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x07\x01\x04\xf0\x00\x07\x01\x04\xf0\x18\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x1a\xd0\x00\x1a\xd0\x00\x1a\xd0\x00\x1a\xd8\x00\x15\xd0\x00\x15\xd0\x00\x15\xd0\x00\x15\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xf0\x06\x00\x05\x11\x90\x2a\xf0\x03\x02\x0b\x02\x80\x07\xf0\x0a\x00\x0e\x12\x88\x54\x90\x23\x89\x59\x8c\x59\x80\x0a\xf0\x04\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x00\x15\x01\x20\x90\x26\xf1\x00\x15\x01\x20\xf4\x00\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x2e\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\x90\x56\xf1\x00\x0d\x01\x28\xf4\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x20\x00\x2f\x33\xd8\x26\x2a\xd8\x29\x2d\xf0\x05\x18\x01\x17\xf0\x00\x18\x01\x17\xf0\x00\x18\x01\x17\xf0\x00\x18\x01\x17\xf0\x34\x00\x29\x2d\xd8\x2c\x30\xd8\x2f\x33\xf0\x05\x0b\x01\x1e\xf0\x00\x0b\x01\x1e\xf0\x00\x0b\x01\x1e\xf0\x00\x0b\x01\x1e\xf0\x1c\x00\x29\x34\xf0\x00\x3b\x01\x20\xf0\x00\x3b\x01\x20\xf0\x00\x3b\x01\x20\xf0\x00\x3b\x01\x20\xf0\x7a\x01\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\x88\x59\xf1\x00\x01\x01\x4d\x01\xf4\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x0e\x1a\x01\x2b\xf0\x00\x1a\x01\x2b\xf0\x00\x1a\x01\x2b\xf0\x00\x1a\x01\x2b\xf0\x38\x00\x27\x2b\xd8\x28\x2d\xf0\x03\x1c\x01\x45\x01\xf0\x00\x1c\x01\x45\x01\xf0\x00\x1c\x01\x45\x01\xf0\x00\x1c\x01\x45\x01\xf0\x3c\x00\x24\x2f\xf0\x00\x10\x01\x2c\xf0\x00\x10\x01\x2c\xf0\x00\x10\x01\x2c\xf0\x00\x10\x01\x2c\xf0\x26\x0a\x01\x17\xf0\x00\x0a\x01\x17\xf0\x00\x0a\x01\x17\xf0\x18\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x6e\x01\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xe0\x07\x0a\x80\x73\x88\x33\x8c\x38\x81\x7d\x84\x7d\x90\x71\xd2\x07\x18\xd0\x07\x18\xd8\x08\x0d\x88\x05\xd0\x0e\x31\xb8\x03\xbc\x0a\xd0\x08\x43\xd1\x08\x43\xd4\x08\x43\xd0\x08\x43\xd0\x08\x43\xd0\x08\x43\xe0\x0c\x0f\x8c\x48\x90\x51\x88\x4b\xd8\x08\x1b\xd0\x08\x1b\x98\x43\x9c\x48\xa0\x51\x9c\x4b\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd0\x08\x28\xd0\x08\x28\xf0\x0d\x00\x04\x1a\xd0\x03\x19", +}; +static + struct _PyCode_DEF(402) +runpy_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 201, + }, + .co_consts = & runpy_toplevel_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 5, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & runpy_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x03\x64\x01\x64\x02\x6c\x04\x5a\x03\x64\x01\x64\x02\x6c\x05\x5a\x05\x64\x01\x64\x02\x6c\x06\x5a\x06\x64\x03\x64\x04\x67\x02\x5a\x07\x02\x00\x65\x08\x65\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x02\x00\x47\x00\x64\x05\x84\x00\x64\x06\x65\x0a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x02\x00\x47\x00\x64\x07\x84\x00\x64\x08\x65\x0a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0c\x09\x00\x09\x00\x09\x00\x64\x19\x64\x09\x84\x01\x5a\x0d\x09\x00\x09\x00\x09\x00\x64\x19\x64\x0a\x84\x01\x5a\x0e\x65\x0f\x66\x01\x64\x0b\x84\x01\x5a\x10\x02\x00\x47\x00\x64\x0c\x84\x00\x64\x0d\x65\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x12\x64\x1a\x64\x0f\x84\x01\x5a\x13\x09\x00\x09\x00\x64\x1b\x64\x11\x84\x01\x5a\x14\x65\x0f\x66\x01\x64\x12\x84\x01\x5a\x15\x64\x13\x84\x00\x5a\x16\x64\x1c\x64\x14\x84\x01\x5a\x17\x65\x18\x64\x15\x6b\x02\x00\x00\x00\x00\x72\x48\x02\x00\x65\x19\x65\x01\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x16\x6b\x00\x00\x00\x00\x00\x72\x14\x02\x00\x65\x1b\x64\x17\x65\x01\x6a\x1c\x00\x00\x00\x00\x00\x00\x00\x00\xac\x18\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00\x65\x01\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x3d\x00\x02\x00\x65\x13\x65\x01\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void runpy_do_patchups(void) { + if (sizeof(wchar_t) == 2) { + runpy_toplevel_consts_17_consts_0._compact._base.wstr = (wchar_t *) runpy_toplevel_consts_17_consts_0._data; + runpy_toplevel_consts_17_consts_0._compact.wstr_length = 800; + } + if (sizeof(wchar_t) == 2) { + runpy_toplevel_consts_20_consts_0._compact._base.wstr = (wchar_t *) runpy_toplevel_consts_20_consts_0._data; + runpy_toplevel_consts_20_consts_0._compact.wstr_length = 530; + } +} + +PyObject * +_Py_get_runpy_toplevel(void) +{ + runpy_do_patchups(); + return Py_NewRef((PyObject *) &runpy_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_TestFrozenUtf8_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "TestFrozenUtf8_1", +}; +static + struct { + PyCompactUnicodeObject _compact; + uint8_t _data[2]; + } +__hello___toplevel_consts_1_consts_1 = { + ._compact = { + ._base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 0, + .ready = 1, + }, + }, + }, + ._data = { + 182, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +__hello___toplevel_consts_1_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_TestFrozenUtf8_1._ascii.ob_base, + & __hello___toplevel_consts_1_consts_1._compact._base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[19]; + } +__hello___toplevel_consts_1_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 18, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[20]; + } +__hello___toplevel_consts_1_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 19, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x10\x80\x4c\x80\x4c\x80\x4c", +}; +static + struct _PyCode_DEF(18) +__hello___toplevel_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 9, + }, + .co_consts = & __hello___toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 3, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_TestFrozenUtf8_1._ascii.ob_base, + .co_qualname = & const_str_TestFrozenUtf8_1._ascii.ob_base, + .co_linetable = & __hello___toplevel_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_TestFrozenUtf8_2 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "TestFrozenUtf8_2", +}; +static + struct { + PyCompactUnicodeObject _compact; + uint16_t _data[2]; + } +__hello___toplevel_consts_3_consts_1 = { + ._compact = { + ._base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 2, + .compact = 1, + .ascii = 0, + .ready = 1, + }, + }, + }, + ._data = { + 960, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +__hello___toplevel_consts_3_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_TestFrozenUtf8_2._ascii.ob_base, + & __hello___toplevel_consts_3_consts_1._compact._base.ob_base, + Py_None, + }, + }, +}; +static + struct _PyCode_DEF(18) +__hello___toplevel_consts_3 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 9, + }, + .co_consts = & __hello___toplevel_consts_3_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 6, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_TestFrozenUtf8_2._ascii.ob_base, + .co_qualname = & const_str_TestFrozenUtf8_2._ascii.ob_base, + .co_linetable = & __hello___toplevel_consts_1_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[17]; + } +const_str_TestFrozenUtf8_4 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 16, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "TestFrozenUtf8_4", +}; +static + struct { + PyCompactUnicodeObject _compact; + uint32_t _data[2]; + } +__hello___toplevel_consts_5_consts_1 = { + ._compact = { + ._base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 1, + .hash = -1, + .state = { + .kind = 4, + .compact = 1, + .ascii = 0, + .ready = 1, + }, + }, + }, + ._data = { + 128512, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +__hello___toplevel_consts_5_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_TestFrozenUtf8_4._ascii.ob_base, + & __hello___toplevel_consts_5_consts_1._compact._base.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +__hello___toplevel_consts_5_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x14\xd0\x04\x14\xd0\x04\x14\xd0\x04\x14", +}; +static + struct _PyCode_DEF(18) +__hello___toplevel_consts_5 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 9, + }, + .co_consts = & __hello___toplevel_consts_5_consts._object.ob_base.ob_base, + .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 9, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_TestFrozenUtf8_4._ascii.ob_base, + .co_qualname = & const_str_TestFrozenUtf8_4._ascii.ob_base, + .co_linetable = & __hello___toplevel_consts_5_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[13]; + } +__hello___toplevel_consts_7_consts_1 = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 12, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "Hello world!", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +__hello___toplevel_consts_7_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + Py_None, + & __hello___toplevel_consts_7_consts_1._ascii.ob_base, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[1]; + }_object; + } +__hello___toplevel_consts_7_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 1, + }, + .ob_item = { + & const_str_print._ascii.ob_base, + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[23]; + } +__hello___toplevel_consts_7_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 22, + }, + .ob_shash = -1, + .ob_sval = "\x80\x00\xdd\x04\x09\x88\x2e\xd1\x04\x19\xd4\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19", +}; +static + struct _PyCode_DEF(36) +__hello___toplevel_consts_7 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & __hello___toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & __hello___toplevel_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 12, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_main._ascii.ob_base, + .co_qualname = & const_str_main._ascii.ob_base, + .co_linetable = & __hello___toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[10]; + }_object; + } +__hello___toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 10, + }, + .ob_item = { + Py_True, + & __hello___toplevel_consts_1.ob_base.ob_base, + & const_str_TestFrozenUtf8_1._ascii.ob_base, + & __hello___toplevel_consts_3.ob_base.ob_base, + & const_str_TestFrozenUtf8_2._ascii.ob_base, + & __hello___toplevel_consts_5.ob_base.ob_base, + & const_str_TestFrozenUtf8_4._ascii.ob_base, + & __hello___toplevel_consts_7.ob_base.ob_base, + &_Py_ID(__main__), + Py_None, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[12]; + } +const_str_initialized = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 11, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "initialized", +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[6]; + }_object; + } +__hello___toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 6, + }, + .ob_item = { + & const_str_initialized._ascii.ob_base, + & const_str_TestFrozenUtf8_1._ascii.ob_base, + & const_str_TestFrozenUtf8_2._ascii.ob_base, + & const_str_TestFrozenUtf8_4._ascii.ob_base, + & const_str_main._ascii.ob_base, + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[182]; + } +__hello___toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 181, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x0e\x12\x80\x0b\xf0\x04\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf1\x00\x01\x01\x11\xf4\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x06\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf1\x00\x01\x01\x11\xf4\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x06\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf1\x00\x01\x01\x15\xf4\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x06\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x06\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xd8\x04\x08\x80\x44\x81\x46\x84\x46\x80\x46\x80\x46\x80\x46\xf0\x03\x00\x04\x1a\xd0\x03\x19", +}; +static + struct _PyCode_DEF(130) +__hello___toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 65, + }, + .co_consts = & __hello___toplevel_consts._object.ob_base.ob_base, + .co_names = & __hello___toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 4, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & __hello___toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x02\x00\x47\x00\x64\x01\x84\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x01\x02\x00\x47\x00\x64\x03\x84\x00\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x02\x02\x00\x47\x00\x64\x05\x84\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x03\x64\x07\x84\x00\x5a\x04\x65\x05\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x04\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x09\x53\x00\x64\x09\x53\x00", + ._co_firsttraceable = 0, +}; +static void __hello___do_patchups(void) { + if (sizeof(wchar_t) == 2) { + __hello___toplevel_consts_3_consts_1._compact._base.wstr = (wchar_t *) __hello___toplevel_consts_3_consts_1._data; + __hello___toplevel_consts_3_consts_1._compact.wstr_length = 1; + } + if (sizeof(wchar_t) == 4) { + __hello___toplevel_consts_5_consts_1._compact._base.wstr = (wchar_t *) __hello___toplevel_consts_5_consts_1._data; + __hello___toplevel_consts_5_consts_1._compact.wstr_length = 1; + } +} + +PyObject * +_Py_get___hello___toplevel(void) +{ + __hello___do_patchups(); + return Py_NewRef((PyObject *) &__hello___toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[20]; + } +__phello___toplevel_consts_1_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 19, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct _PyCode_DEF(36) +__phello___toplevel_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & __hello___toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & __hello___toplevel_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 3, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __phello___toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_main._ascii.ob_base, + .co_qualname = & const_str_main._ascii.ob_base, + .co_linetable = & __hello___toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +__phello___toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_True, + & __phello___toplevel_consts_1.ob_base.ob_base, + &_Py_ID(__main__), + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +__phello___toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + & const_str_initialized._ascii.ob_base, + & const_str_main._ascii.ob_base, + &_Py_ID(__name__), + }, + }, +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[62]; + } +__phello___toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 61, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x0e\x12\x80\x0b\xf0\x04\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x06\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xd8\x04\x08\x80\x44\x81\x46\x84\x46\x80\x46\x80\x46\x80\x46\xf0\x03\x00\x04\x1a\xd0\x03\x19", +}; +static + struct _PyCode_DEF(52) +__phello___toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & __phello___toplevel_consts._object.ob_base.ob_base, + .co_names = & __phello___toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __phello___toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & __phello___toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x84\x00\x5a\x01\x65\x02\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static void __phello___do_patchups(void) { +} + +PyObject * +_Py_get___phello___toplevel(void) +{ + __phello___do_patchups(); + return Py_NewRef((PyObject *) &__phello___toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[24]; + } +__phello___ham_toplevel_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 23, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[16]; + } +__phello___ham_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 15, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x00\x01\x01\x01\xf0\x00\x01\x01\x01", +}; +static + struct _PyCode_DEF(6) +__phello___ham_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __phello___ham_toplevel_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & __phello___ham_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static void __phello___ham_do_patchups(void) { +} + +PyObject * +_Py_get___phello___ham_toplevel(void) +{ + __phello___ham_do_patchups(); + return Py_NewRef((PyObject *) &__phello___ham_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[29]; + } +__phello___ham_eggs_toplevel_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 28, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct _PyCode_DEF(6) +__phello___ham_eggs_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 3, + }, + .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, + .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 1, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __phello___ham_eggs_toplevel_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & __phello___ham_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static void __phello___ham_eggs_do_patchups(void) { +} + +PyObject * +_Py_get___phello___ham_eggs_toplevel(void) +{ + __phello___ham_eggs_do_patchups(); + return Py_NewRef((PyObject *) &__phello___ham_eggs_toplevel); +} + +static + struct { + PyASCIIObject _ascii; + uint8_t _data[25]; + } +__phello___spam_toplevel_consts_1_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 24, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct _PyCode_DEF(36) +__phello___spam_toplevel_consts_1 = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 18, + }, + .co_consts = & __hello___toplevel_consts_7_consts._object.ob_base.ob_base, + .co_names = & __hello___toplevel_consts_7_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 3, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 3, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __phello___spam_toplevel_consts_1_filename._ascii.ob_base, + .co_name = & const_str_main._ascii.ob_base, + .co_qualname = & const_str_main._ascii.ob_base, + .co_linetable = & __hello___toplevel_consts_7_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", + ._co_firsttraceable = 0, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[4]; + }_object; + } +__phello___spam_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 4, + }, + .ob_item = { + Py_True, + & __phello___spam_toplevel_consts_1.ob_base.ob_base, + &_Py_ID(__main__), + Py_None, + }, + }, +}; +static + struct _PyCode_DEF(52) +__phello___spam_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 26, + }, + .co_consts = & __phello___spam_toplevel_consts._object.ob_base.ob_base, + .co_names = & __phello___toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 2, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & __phello___spam_toplevel_consts_1_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & __phello___toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x84\x00\x5a\x01\x65\x02\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", + ._co_firsttraceable = 0, +}; +static void __phello___spam_do_patchups(void) { +} + +PyObject * +_Py_get___phello___spam_toplevel(void) +{ + __phello___spam_do_patchups(); + return Py_NewRef((PyObject *) &__phello___spam_toplevel); +} + +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[3]; + }_object; + } +frozen_only_toplevel_consts = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 3, + }, + .ob_item = { + Py_True, + & __hello___toplevel_consts_7_consts_1._ascii.ob_base, + Py_None, + }, + }, +}; +static + struct { + PyGC_Head _gc_head; + struct { + PyObject_VAR_HEAD + PyObject *ob_item[2]; + }_object; + } +frozen_only_toplevel_names = { + ._object = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyTuple_Type, + }, + .ob_size = 2, + }, + .ob_item = { + & const_str_initialized._ascii.ob_base, + & const_str_print._ascii.ob_base, + }, + }, +}; +static + struct { + PyASCIIObject _ascii; + uint8_t _data[21]; + } +frozen_only_toplevel_filename = { + ._ascii = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyUnicode_Type, + }, + .length = 20, + .hash = -1, + .state = { + .kind = 1, + .compact = 1, + .ascii = 1, + .ready = 1, + }, + }, + ._data = "", +}; +static + struct { + PyObject_VAR_HEAD + Py_hash_t ob_shash; + char ob_sval[33]; + } +frozen_only_toplevel_linetable = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyBytes_Type, + }, + .ob_size = 32, + }, + .ob_shash = -1, + .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x0e\x12\x80\x0b\xd8\x00\x05\x80\x05\x80\x6e\xd1\x00\x15\xd4\x00\x15\xd0\x00\x15\xd0\x00\x15\xd0\x00\x15", +}; +static + struct _PyCode_DEF(32) +frozen_only_toplevel = { + .ob_base = { + .ob_base = { + .ob_refcnt = 999999999, + .ob_type = &PyCode_Type, + }, + .ob_size = 16, + }, + .co_consts = & frozen_only_toplevel_consts._object.ob_base.ob_base, + .co_names = & frozen_only_toplevel_names._object.ob_base.ob_base, + .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_flags = 0, + .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, + ._co_linearray_entry_size = 0, + .co_argcount = 0, + .co_posonlyargcount = 0, + .co_kwonlyargcount = 0, + .co_stacksize = 3, + .co_firstlineno = 1, + .co_nlocalsplus = 0, + .co_nlocals = 0, + .co_nplaincellvars = 0, + .co_ncellvars = 0, + .co_nfreevars = 0, + .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), + .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), + .co_filename = & frozen_only_toplevel_filename._ascii.ob_base, + .co_name = &_Py_STR(anon_module), + .co_qualname = &_Py_STR(anon_module), + .co_linetable = & frozen_only_toplevel_linetable.ob_base.ob_base, + ._co_code = NULL, + ._co_linearray = NULL, + .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x02\x00\x65\x01\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", + ._co_firsttraceable = 0, +}; +static void frozen_only_do_patchups(void) { +} + +PyObject * +_Py_get_frozen_only_toplevel(void) +{ + frozen_only_do_patchups(); + return Py_NewRef((PyObject *) &frozen_only_toplevel); +} + +void +_Py_Deepfreeze_Fini(void) { + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_AttributeError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_type); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_1_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__object_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hasattr); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_setattr); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_update); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__wrap); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_new); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_old); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sys); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__new_module); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__DeadlockError); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ModuleLock); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__thread); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_allocate_lock); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lock); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_wakeup); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_owner); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_count); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_waiters); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_self); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_ident); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_set); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__blocking_on); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_has_deadlock); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_me); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_seen); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_4_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_acquire); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_release); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_RuntimeError); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_format); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_id); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__DummyModuleLock); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_5); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ModuleLockManager); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__lock); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_11_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_lock); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_11_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_11_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_args); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_kwargs); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__imp); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_acquire_lock); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_locks); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_release_lock); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cb); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_13_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ref); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_KeyError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__weakref); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_14_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_15_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__call_with_frames_removed); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_f); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_kwds); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_verbosity); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_1_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_1_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_file); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_flags); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_verbose); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_startswith); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_print); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__verbose_message); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_message); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_19_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_19_consts_1_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_builtin_module_names); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ImportError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_builtin_wrapper); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_19_consts_1_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fullname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fxn); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_builtin); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_20_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_20_consts_1_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_frozen); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_frozen_wrapper); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_20_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_frozen); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_21_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_21_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__warnings); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_warn); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_DeprecationWarning); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spec_from_loader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__exec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__load); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__load_module_shim); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_module); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_repr); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_repr_from_spec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Exception); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_repr); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ModuleSpec); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_origin); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_state); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_package); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_submodule_search_locations); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__set_fileattr); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__cached); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cached); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_has_location); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_NotImplemented); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_other); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_smsl); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__bootstrap_external); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_NotImplementedError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_cached); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_7); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rpartition); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bool); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_value); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_property); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_setter); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_26_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ORIGIN); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spec_from_file_location); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_search); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___cached__); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_list); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__spec_from_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_location); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_27); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_override); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_NamespaceLoader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__init_module_attrs); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_30); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_31_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_create_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_module); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_31_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_from_spec); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_31); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_32_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_32_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_32); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ImportWarning); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_load_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pop); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_33); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__load_backward_compatible); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_34); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_35_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__load_unlocked); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_35); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_36_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_36); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BuiltinImporter); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_builtin); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_spec); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_5_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cls); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_target); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_module); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_create_builtin); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_builtin); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_code); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_11_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_staticmethod); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_classmethod); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FrozenImporter); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_frozen); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_3_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_m); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___origname__); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_4_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_origname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_vars); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_frozen_package); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__resolve_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_implementation); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_insert); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sorted); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_state); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ispkg); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkgdir); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__stdlib_dir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_win32); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__SEP); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_platform); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_alias); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_relfile); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_frozen); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_8_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_info); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_9_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_frozen_object); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_12_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_12_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_14_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_15_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_15_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_15); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ImportLockContext); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_type); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_value); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_traceback); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_43_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_43_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_43_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rsplit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__resolve_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_package); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_level); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bits); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_base); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_43); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_44_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_spec_legacy); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_finder); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_44); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_45_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_45_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_45_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_meta_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_spec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_reload); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_45); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_str); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_TypeError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ValueError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__sanity_check); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_46); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_47); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_48); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_49_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_49_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_49_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ERR_MSG); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ModuleNotFoundError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_and_load_unlocked); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_import_); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_spec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_child); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_49); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_50_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_50_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__NEEDS_LOADING); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_50); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_52_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__gcd_import); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_52); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_recursive); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fromlist); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_x); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_where); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_from_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_54); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_stacklevel); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__calc___package__); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_globals); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_55); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_57_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_partition); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_locals); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_globals_); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cut_off); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_57); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_58_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__builtin_from_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_58); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_59_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__setup); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sys_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__imp_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_type); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_self_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_builtin_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_builtin_module); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_59); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_60_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__install); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_60); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_61_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__frozen_importlib_external); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__install_external_importers); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_61); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ERR_MSG_PREFIX); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_object); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_6_filename); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_s); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_win); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cygwin); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_darwin); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PYTHONCASEOK); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ignore_environment); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__os); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_environ); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__relax_case); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_key); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_4_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__CASE_INSENSITIVE_PLATFORMS); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__CASE_INSENSITIVE_PLATFORMS_STR_KEY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__make_relax_case); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_12_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_int); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_to_bytes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__pack_uint32); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_from_bytes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__unpack_uint32); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_data); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__unpack_uint16); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rstrip); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_separators); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_5_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_p); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_map); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_splitroot); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_sep_tuple); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_endswith); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_sep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_casefold); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_join); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_parts); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_root); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_root); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tail); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_part); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rfind); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_max); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_split); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_i); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_18_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_stat); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_stat); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_19_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_OSError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_mode); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_is_mode_type); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_stat_info); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_20_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_isfile); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_21_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getcwd); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_isdir); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_22_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_22_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_isabs); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_22); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_25_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_wb); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_EXCL); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_CREAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_WRONLY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__io); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileIO); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_unlink); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__write_atomic); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_tmp); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fd); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_25); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___pycache__); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_31); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_33); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_34); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_optimization); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fspath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_tag); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_optimize); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isalnum); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__OPT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BYTECODE_SUFFIXES); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pycache_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lstrip); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__PYCACHE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_from_source); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_debug_override); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_head); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rest); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tag); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_almost_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_36); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SOURCE_SUFFIXES); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_from_cache); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pycache_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_found_in_pycache_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_stripped_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pycache); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dot_count); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_opt_level); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_base_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_37); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_38_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_py); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lower); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytecode_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_extension); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_path); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_38); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tuple); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_39); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_40_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__calc_mode); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_40); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_name_wrapper); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_method); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_42_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_42_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_42_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_loader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_module_shim); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_portions); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_42); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAGIC_NUMBER); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_EOFError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__classify_pyc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_details); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_magic); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_43); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_44_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_44_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__validate_timestamp_pyc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_mtime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_size); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_44); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_45_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_45_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__validate_hash_pyc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_hash); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_45); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_46_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_46_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_46_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_marshal); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_loads); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__code_type); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__fix_co_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__compile_bytecode); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_46); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_47_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytearray); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dumps); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__code_to_timestamp_pyc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mtime); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_47); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_49_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__code_to_hash_pyc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_checked); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_49); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_50_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tokenize); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BytesIO); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_detect_encoding); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_IncrementalNewlineDecoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decode_source); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_bytes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_bytes_readline); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_newline_decoder); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_50); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_52_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_supported_file_loaders); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__POPULATE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_class); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_suffixes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_52); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_WindowsRegistryFinder); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_winreg); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_OpenKey); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HKEY_CURRENT_USER); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HKEY_LOCAL_MACHINE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__open_registry); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sys_version); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_DEBUG_BUILD); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_REGISTRY_KEY_DEBUG); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_REGISTRY_KEY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_version_info); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_QueryValue); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__search_registry); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_registry_key); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hkey); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_filepath); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__MS_WINDOWS); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_EXTENSION_SUFFIXES); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__LoaderBasics); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_filename_base); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tail_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SourceLoader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_mtime); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_stats); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_data); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__cache_bytecode); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_path); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_data); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__optimize); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dont_inherit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_compile); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_to_code); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_never); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_always); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_size); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_memoryview); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_hash_based_pycs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__RAW_MAGIC_NUMBER); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dont_write_bytecode); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hash_based); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_source); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytes_data); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_code_object); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileLoader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hash); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_super); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_r); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ExtensionFileLoader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_open_code); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileReader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8_names_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_resource_reader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SourceFileLoader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_mtime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_size); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__mode); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mkdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileExistsError); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SourcelessFileLoader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_create_dynamic); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_dynamic); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_suffix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_any); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_10); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__NamespacePath); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_parent_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__last_parent_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__epoch); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__last_epoch); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_finder); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_finder); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_parent_path_names); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dot); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_5_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_module_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_attr_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__recalculate); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_path); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_8_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_index); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_12_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_item); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_13); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_NamespaceReader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_9); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PathFinder); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_invalidate_caches); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MetadataPathFinder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_importer_cache); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2_names_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_hooks); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_hooks); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hook); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileNotFoundError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_importer_cache); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__legacy_get_spec); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_spec); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_namespace_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_entry); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_distributions); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileFinder); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__loaders); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_mtime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_cache); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__relaxed_path_cache); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_details); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_loaders); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__fill_cache); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_namespace); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tail_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_base_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_init_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_full_path); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fn); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_listdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PermissionError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_NotADirectoryError); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_contents); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lower_suffix_contents); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_hook_for_FileFinder); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_hook); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ns); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cpathname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_75); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_76_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_extension_suffixes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_extensions); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_source); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytecode); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_76); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__set_bootstrap_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__bootstrap_module); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_77); + _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_78_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_supported_loaders); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_78); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_nt); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_posix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_all); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__pathseps_with_colon); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__CASE_INSENSITIVE_PLATFORMS_BYTES_KEY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___code__); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_DEBUG_BYTECODE_SUFFIXES); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_OPTIMIZED_BYTECODE_SUFFIXES); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__NamespaceLoader); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ZipImportError); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_7_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_alt_path_sep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__zip_directory_cache); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__read_directory); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__files); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_archive); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_basename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_files); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_4_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_info); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__is_dir); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mi); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_modpath); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_info); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_code); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ispackage); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_data); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_8_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_toc_entry); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_10_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_10_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fullpath); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_11_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_type); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ZipReader); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_14_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_15_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_15_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_15_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_15); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_12); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirpath); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__zip_searchorder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isbytecode); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_28); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ascii); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_34); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_END_CENTRAL_DIR_SIZE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_STRING_END_ARCHIVE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAX_COMMENT_LEN); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UnicodeDecodeError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_translate); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cp437_table); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fp); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_offset); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_header_position); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_size); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_max_comment_start); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pos); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_header_size); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_header_offset); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_arc_offset); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_compress); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_time); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_date); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_crc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_data_size); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_name_size); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_extra_size); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_comment_size); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_offset); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_t); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_23_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_23_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decompress); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_23_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__importing_zlib); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_zlib); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_decompress_func); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_24_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_24_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_24_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_datapath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_raw_data); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_24); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__eq_mtime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_t1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_t2); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_25); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_26_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_26_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_pyc_source); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_mtime_and_size_of_source); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__unmarshal_code); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__normalize_line_endings); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_27); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__compile_source); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_28); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mktime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__parse_dostime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_d); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_29); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_c); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_o); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_IndexError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_uncompressed_size); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_30); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_31); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_32_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_32_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_import_error); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_32); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__frozen_importlib); + _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_1_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_1_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractmethod); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_funcobj); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractclassmethod); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_2_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_callable); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_2_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractstaticmethod); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_4_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_4_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_4_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractproperty); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_6_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_cache_token); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_init); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_register); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_instancecheck); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_subclasscheck); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_dump); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__reset_registry); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__reset_caches); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ABCMeta); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mcls); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bases); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_namespace); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_register); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_subclass); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_instance); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__dump_registry); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_registry); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_cache); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_negative_cache); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_negative_cache_version); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_registry_clear); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_caches_clear); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_9); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abc); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_frozenset); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_update_abstractmethods); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstracts); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_scls); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ABC); + _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_15_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__py_abc); + _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lookup); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_EncodedFile); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_BE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_LE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM32_BE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM32_LE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM64_BE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM64_LE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF16); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF16_LE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF16_BE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF32); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF32_LE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF32_BE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_CodecInfo); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Codec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_IncrementalEncoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_IncrementalDecoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamReader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamWriter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamReaderWriter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamRecoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getencoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getdecoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getincrementalencoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getincrementaldecoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getreader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getwriter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_iterencode); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_iterdecode); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_strict_errors); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ignore_errors); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_replace_errors); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_xmlcharrefreplace_errors); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_backslashreplace_errors); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_namereplace_errors); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_register_error); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lookup_error); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_incrementalencoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_incrementaldecoder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_streamwriter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_streamreader); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_5_filename); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_12_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_12_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_input); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_14_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_14_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_5_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_final); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_8); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedIncrementalEncoder); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__buffer_encode); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_result); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_consumed); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_9); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_8); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedIncrementalDecoder); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__buffer_decode); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_9); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_stream); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_writelines); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_whence); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_10_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tb); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_11_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_11_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_proto); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_11); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytebuffer); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_charbuffertype); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__empty_charbuffer); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_charbuffer); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_linebuffer); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_keepends); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_start); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_splitlines); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_chars); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_firstline); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_newdata); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_newchars); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decodedbytes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lines); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_9_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytes); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_9_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_readsize); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_line0withend); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_line0withoutend); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_readlines); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_10_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sizehint); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_11_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_StopIteration); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_14_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_15_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_16_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_17_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_18_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_19_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_19); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_unknown); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_reader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_writer); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Reader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Writer); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_12_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_14_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_16_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_17_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_18_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_19_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_20_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_20); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytesencoded); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_12_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytesdecoded); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_14_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_16_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_17_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_18_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_19_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_20_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_data_encoding); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_encoding); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_35_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_b); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_buffering); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_srw); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_35); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_36_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_data_info); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_info); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sr); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_36); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_37_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_37); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_38_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_38); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_39_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_LookupError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_encoder); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_39); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_40_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decoder); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_40); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_41_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_41); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_42_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_42); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_43_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_output); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_43); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_44_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_44); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_45_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_45_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_45_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_make_identity_dict); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rng); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_45); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_46_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_make_encoding_map); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decoding_map); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_k); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_v); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_46); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_xmlcharrefreplace); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_backslashreplace); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_namereplace); + _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_53); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__codecs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_why); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SystemError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_byteorder); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__false); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodings); + _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BlockingIOError); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_IOBase); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_RawIOBase); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_StringIO); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedIOBase); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedReader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedWriter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedRWPair); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedRandom); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_TextIOBase); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UnsupportedOperation); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SEEK_SET); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SEEK_CUR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SEEK_END); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_DEFAULT_BUFFER_SIZE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_text_encoding); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_OpenWrapper); + _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_io); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__IOBase); + _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__RawIOBase); + _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__BufferedIOBase); + _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__TextIOBase); + _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__WindowsConsoleIO); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___author__); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_klass); + _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_5_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__f); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Awaitable); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Coroutine); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_AsyncIterable); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_AsyncIterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_AsyncGenerator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Hashable); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Iterable); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Generator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Reversible); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Sized); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Container); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Callable); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Collection); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Set); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MutableSet); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Mapping); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MutableMapping); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MappingView); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_KeysView); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ItemsView); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ValuesView); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Sequence); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MutableSequence); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ByteString); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_7); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__coro); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ag); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___mro__); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_methods); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_C); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_methods); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_B); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_17_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_17_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_20_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_20_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_GenericAlias); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_with_traceback); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_typ); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_val); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_GeneratorExit); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_24_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_24_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_24); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_StopAsyncIteration); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_asend); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_athrow); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_6_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_aclose); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_7); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_30_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_30_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_30); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_34_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_34_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_34); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_7); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_38_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_38_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_38); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_40_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_40_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_40); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_42_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_42_consts_2); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_42); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__CallableGenericAlias); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_3_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_3_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__is_param_expr); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_t_args); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_t_result); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__type_repr); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_5_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_a); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_6_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_args); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_46_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ParamSpec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ConcatenateGenericAlias); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_typing); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_46_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_46_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Ellipsis); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_names); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_46); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_47_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_47_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_repr); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FunctionType); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_47); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_48_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_48_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_48); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_3_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_elem); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__from_iterable); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_8_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_it); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_9_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isdisjoint); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_11_consts_1_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_e); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_11_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_chain); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_12_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_12_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_13_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_14_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_15_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_maxsize); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__hash); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_15_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAX); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MASK); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_n); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_h); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hx); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_15); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_discard); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_remove); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_11); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_11); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__mapping); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mapping); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_4_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_58_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_58_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_58_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_60_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_60_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_60_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_62_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_62_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_62); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__MutableMapping__marker); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_popitem); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_setdefault); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_10); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_range); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_10_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_stop); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sum); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_68_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_68); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_reverse); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_11_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_12_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_12_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_13_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_13); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_EllipsisType); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytes_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytearray_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_keyiterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_valueiterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_itemiterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_list_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_list_reverseiterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_range_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_longrange_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_str_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tuple_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_zip); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_zip_iterator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_keys); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_values); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_items); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mappingproxy); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_generator); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_coroutine); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_async_generator); + _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Quitter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_eof); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_1_filename); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SystemExit); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_4_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_os); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__data); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__lines); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__filenames); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirs); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_5_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_split); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__linecnt); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___setup); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_6_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__setup); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAXLINES); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_7_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_q); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_prompt); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_7); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Helper); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pydoc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_help); + _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_7); + _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_commonprefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exists); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getatime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getctime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getmtime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getsize); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isfile); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_samefile); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sameopenfile); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_samestat); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_4_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_4_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISREG); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISDIR); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_7_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_8_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_atime); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_ctime); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_11_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_min); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_enumerate); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_s1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_s2); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_12_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_ino); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_dev); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_f1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_f2); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fstat); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fp1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fp2); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_15_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__splitext); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_altsep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_extsep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sepIndex); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_altsepIndex); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dotIndex); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_filenameIndex); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_16_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_16_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_arg_types); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_funcname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hasstr); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_hasbytes); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_16); + _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_nul); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_normcase); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isabs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_splitdrive); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_splitext); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_islink); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lexists); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ismount); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_expanduser); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_expandvars); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_normpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abspath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_curdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pardir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathsep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_defpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_devnull); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_realpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_unicode_filenames); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_relpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_commonpath); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_12_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_12_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_bothseps); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_LCMapStringEx); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_LOCALE_NAME_INVARIANT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_LCMAP_LOWERCASE); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_surrogateescape); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getfilesystemencoding); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__LCMapStringEx); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__LOCALE_NAME_INVARIANT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__LCMAP_LOWERCASE); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fsencode); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fsdecode); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_16_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_16_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_colon_sep); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_BytesWarning); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_genericpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_paths); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_seps); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_colon); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_result_drive); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_result_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_p_drive); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_p_path); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_18_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_18_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_upper); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_find); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_unc_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_normp); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_index2); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_19_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_19); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_21_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_22_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_23_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lstat); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISLNK); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_24_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_24); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__getvolumepathname); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_26_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_y); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_27_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_27_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_USERPROFILE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HOMEPATH); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HOMEDRIVE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_USERNAME); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_tilde); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_userhome); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_drive); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_target_user); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_current_user); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_27); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_environb); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_string); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ascii_letters); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_digits); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_varchars); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_quote); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_percent); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_brace); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rbrace); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dollar); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_res); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathlen); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_var); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_28); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_normpath); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_30_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_30); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_comps); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_31); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_32_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getcwdb); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__abspath_fallback); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cwd); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_32); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__getfullpathname); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_34_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_34); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__getfinalpathname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_readlink); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__nt_readlink); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_winerror); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__readlink_deep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_allowed_winerror); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_old_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ex); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_36); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__getfinalpathname_nonstrict); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_path); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_37); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_40_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_40_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_unc_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_had_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_initial_winerror); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spath); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_40); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getwindowsversion); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_44_consts_11); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_44_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_abs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_abs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_drive); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_rest); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_drive); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_rest); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_list); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_list); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_e1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_e2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rel_list); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_44); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_9); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_12); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_16); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_18_consts_0_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_drivesplits); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_split_paths); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_common); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__isdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__winapi); + _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_11_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_sep); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_12_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_12); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_14_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_15_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_15); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_17_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_17); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_18); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_20_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_20); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_22_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dev1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dev2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ino1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ino2); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_23_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HOME); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ASCII); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_vxworks); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pwd); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getpwuid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getuid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pw_dir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getpwnam); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pwent); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_24_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_24_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__varprogb); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_re); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__varprog); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_span); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_group); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_end); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_j); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_24); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_empty); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dotdot); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_initial_slashes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_comps); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_comp); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_27); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_28_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_28); + _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_31_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__joinrealpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ok); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_31); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_newpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_link); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_32); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_34_consts_9); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_34_consts_10); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_34); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_7); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_8); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35); + _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_linesep); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_exec_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fdopen); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_5_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__exists); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_6_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_6_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_exports_list); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__exit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__have_functions); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__globals); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__set); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__add); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FACCESSAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_access); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHMODAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_chmod); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHOWNAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_chown); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FSTATAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FUTIMESAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_utime); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LINKAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_link); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_MKDIRAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_MKFIFOAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mkfifo); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_MKNODAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mknod); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_OPENAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_READLINKAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_RENAMEAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_SYMLINKAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_symlink); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_UNLINKAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rmdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_UTIMENSAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHDIR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_chdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHMOD); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHOWN); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FDOPENDIR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_scandir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FEXECVE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execve); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FTRUNCATE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FUTIMENS); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FUTIMES); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FPATHCONF); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathconf); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_statvfs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fstatvfs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FSTATVFS); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LCHFLAGS); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_chflags); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LCHMOD); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lchown); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LCHOWN); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LUTIMES); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LSTAT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_MS_WINDOWS); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_80_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exist_ok); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_makedirs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cdir); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_80); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_81_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_removedirs); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_81); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_82_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_renames); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_82); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_85_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_85_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_audit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__walk); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_walk); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_topdown); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_onerror); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_followlinks); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_85); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_dir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_symlink); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_nondirs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_walk_dirs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_scandir_it); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_error); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_walk_into); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_86); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_follow_symlinks); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dir_fd); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_90_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_90_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_RDONLY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_NONBLOCK); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__fwalk); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fwalk); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_orig_st); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_topfd); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_90); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_toppath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isbytes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_entries); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirfd); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_err); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_91); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_93_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execv); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execl); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_93); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_94_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execle); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_env); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_94); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_95_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execvp); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execlp); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_95); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_96_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execvpe); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execlpe); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_96); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_97_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__execvpe); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_97); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_98_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_98); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_func); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_argrest); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_saved_exc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_last_exc); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_100); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_101_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PATH); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_101_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_catch_warnings); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_simplefilter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_bytes_environ); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_listb); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_101); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Environ); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodekey); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decodekey); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodevalue); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decodevalue); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__data); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_putenv); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_unsetenv); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodedkey); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_7_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_formatted_items); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_8_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_9_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_10_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_11_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_12_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_12); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_str); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__createenviron); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_106_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getenv); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_106); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_108_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_bytes); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_108); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_109_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getenvb); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_109); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_1_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_111_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_111_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getfilesystemencodeerrors); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__fscodec); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_111); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fork); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnv); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_P_WAIT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_P_NOWAIT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_P_NOWAITO); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_116_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_116_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_waitpid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_WIFSTOPPED); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_waitstatus_to_exitcode); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__spawnvef); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_func); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_wpid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sts); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_116); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_117_consts_0); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_117); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_118_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnve); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_118); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_119_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnvp); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_119); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_120_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnvpe); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_120); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_122_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnl); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_122); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_123_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnle); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_123); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_127_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnlp); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_127); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_128_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnlpe); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_128); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_134_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_w); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_134_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_134_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_shell); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bufsize); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_subprocess); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Popen); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PIPE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__wrap_close); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_popen); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cmd); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_proc); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_134); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__stream); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__proc); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_wait); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_returncode); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_138_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_138); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_139_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_139_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_139_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__fspath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_type); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_repr); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_139); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PathLike); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_141_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_141_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_141); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__AddedDllDirectory); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__cookie); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__remove_dll_directory); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_1_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_cookie); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_remove_dll_directory); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_5_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_5); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143); + _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_145_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__add_dll_directory); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_add_dll_directory); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_145); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__collections_abc); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__names); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_posixpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ntpath); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_dir_fd); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_effective_ids); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_fd); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_follow_symlinks); + _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_3_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__trace); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_makepath); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_abs_paths); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_module); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_removeduppaths); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_L); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_known_paths); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dircase); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_7_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__init_pathinfo); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_itemcase); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_flags); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_file_attributes); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_13_1); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_HIDDEN); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_HIDDEN); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_strip); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_traceback); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_format_exception); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_info); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_addpackage); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitedir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_record); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_5_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_9_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_addsitedir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitedircase); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_geteuid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getgid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getegid); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_no_user_site); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_enableusersite); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PYTHONUSERBASE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_emscripten); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_wasi); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_joinuser); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_11_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_11_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_APPDATA); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Python); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Library); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_11_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__framework); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__getuserbase); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_env_base); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_winver); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_userbase); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ver_nodot); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_USER_BASE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getuserbase); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_14_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_USER_SITE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ENABLE_USER_SITE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getusersitepackages); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_15_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_15_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_addusersitepackages); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_user_site); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_16_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_lib); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_16_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_16_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Lib); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_PREFIXES); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_platlibdir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_getsitepackages); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_prefixes); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitepackages); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_libdirs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_libdir); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_17_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_17_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_addsitepackages); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_18_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_18_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_18_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_quit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__sitebuiltins); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_setquit); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_copyright); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_java); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_credits); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_LICENSE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_license); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_setcopyright); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_here); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sethelper); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_libedit); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_write_history_file); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_write_history); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_9_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_history); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_21_consts_1_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_atexit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_rlcompleter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_parse_and_bind); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_read_init_file); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_current_history_length); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_read_history_file); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_register_readline); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_readline_doc); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_21_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___interactivehook__); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_enablerlcompleter); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___PYVENV_LAUNCHER__); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_4_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_conffile); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_22_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_true); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_home); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__base_executable); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_executable); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__home); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_venv); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_exe_dir); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_site_prefix); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_conf_basename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_candidate_confs); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_virtual_conf); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_system_site); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_23_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitecustomize); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_23_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execsitecustomize); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_24_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_usercustomize); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_24_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_execusercustomize); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_24); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_25_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_isolated); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_main); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_orig_path); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_25); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_7_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_7_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_26_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_argv); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_textwrap); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_dedent); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__script); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_user_base); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_no_site); + _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_11_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_11_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IMODE); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_12_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFMT); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_20_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFDIR); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_21_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFCHR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISCHR); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_22_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFBLK); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISBLK); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_23_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFREG); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_24_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFIFO); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISFIFO); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_24); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_25_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFLNK); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_25); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_26_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFSOCK); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISSOCK); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_27_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISDOOR); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_27); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_28_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISPORT); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_28); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_29_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISWHT); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_29); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_l); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_47); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_T); + _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_58_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__filemode_table); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_filemode); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_perm); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_table); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_bit); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_char); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_58); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_MODE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_INO); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_DEV); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_NLINK); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_UID); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_GID); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_SIZE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_ATIME); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_MTIME); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_CTIME); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFDOOR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFPORT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFWHT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISUID); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISGID); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ENFMT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISVTX); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IREAD); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWRITE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IEXEC); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRWXU); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRUSR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWUSR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IXUSR); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRWXG); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRGRP); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWGRP); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IXGRP); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRWXO); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IROTH); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWOTH); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IXOTH); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_NODUMP); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_IMMUTABLE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_APPEND); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_OPAQUE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_NOUNLINK); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_COMPRESSED); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_ARCHIVED); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_IMMUTABLE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_APPEND); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_NOUNLINK); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_SNAPSHOT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_ARCHIVE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_COMPRESSED); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_DEVICE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_DIRECTORY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_ENCRYPTED); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_INTEGRITY_STREAM); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_NORMAL); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_NO_SCRUB_DATA); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_OFFLINE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_READONLY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_REPARSE_POINT); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_SPARSE_FILE); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_SYSTEM); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_TEMPORARY); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_VIRTUAL); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__stat); + _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_Loader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_contextmanager); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_16_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_16_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_17_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_17_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_resolve_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_character); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_18_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_18_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_18_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_spec_from_path); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_19_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_19_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_19_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_name); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___initializing__); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_to_load); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_21_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_21_consts_1_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_package_wrapper); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_21_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_21_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_functools); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_wraps); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_package); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_22_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_loader_wrapper); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_22_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_22_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_loader); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_22); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_23_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_for_loader_wrapper); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_23_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_23_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_for_loader); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__LazyModule); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_loading); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_types); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_ModuleType); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_qualname); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_attr); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_original_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_attrs_then); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_attrs_now); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_attrs_updated); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_delattr); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_24); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_LazyLoader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_2_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str___check_eager_loader); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_3_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_3_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__LazyLoader__check_eager_loader); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_factory); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_4); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_5_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_6_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_RLock); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_6_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_6); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_contextlib); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_machinery_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_machinery_toplevel_consts_13_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&importlib_machinery_toplevel_consts_13_filename); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_all_suffixes); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_machinery_toplevel_consts_13); + _PyStaticCode_Dealloc((PyCodeObject *)&importlib_machinery_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_path); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__TempModule); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__saved_module); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_2_filename); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_4_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5_consts_4); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__ModifiedArgv0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__saved_value); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__sentinel); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_1_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_2_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_2_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_3_qualname); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7_consts_3); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_9_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__run_code); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_globals); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_init_globals); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod_spec); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkg_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_script_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_fname); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_9); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_10_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__run_module_code); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_temp_module); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod_globals); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_6); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_8); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_10); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_13); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_14); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_16); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_21); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_RuntimeWarning); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_util); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_details); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_existing); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkg_main_name); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_11); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__Error); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_12_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_12); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_15_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_main_module_details); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__run_module_as_main); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_alter_argv); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_main_globals); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_15); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_17_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_alter_sys); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_17); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_18_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_18_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_main_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_saved_main); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_18); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_read_code); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkgutil); + _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_code_from_file); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_decoded_path); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_19); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_20_consts_0); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_20_consts_2); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_importer); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_imp); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_NullImporter); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_name); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_importer); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_NullImporter); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_20); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_23); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_names_2); + _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_names_4); + _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_TestFrozenUtf8_1); + _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_1_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_1_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_1); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_TestFrozenUtf8_2); + _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_3_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_3); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_TestFrozenUtf8_4); + _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_5_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_5); + _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_7_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_7); + _PyStaticUnicode_Dealloc((PyObject *)&const_str_initialized); + _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&__phello___toplevel_consts_1_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&__phello___toplevel_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&__phello___toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&__phello___ham_toplevel_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&__phello___ham_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&__phello___ham_eggs_toplevel_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&__phello___ham_eggs_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&__phello___spam_toplevel_consts_1_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&__phello___spam_toplevel_consts_1); + _PyStaticCode_Dealloc((PyCodeObject *)&__phello___spam_toplevel); + _PyStaticUnicode_Dealloc((PyObject *)&frozen_only_toplevel_filename); + _PyStaticCode_Dealloc((PyCodeObject *)&frozen_only_toplevel); +} +int +_Py_Deepfreeze_Init(void) { + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_27) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_30) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_31) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_32) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_33) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_34) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_35) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_36) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_43) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_44) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_45) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_46) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_49) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_50) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_52) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_54) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_55) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_57) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_58) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_59) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_60) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_61) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_25) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_36) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_37) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_38) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_39) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_40) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_42) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_43) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_44) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_45) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_46) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_47) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_49) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_50) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_52) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_75) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_76) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_77) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_78) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_25) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_27) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_28) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_29) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_30) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_31) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_32) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_2_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_4_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_12_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_12_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_14_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_14_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_35) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_36) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_37) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_38) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_39) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_40) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_41) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_42) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_43) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_44) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_45_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_45) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_46) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_30) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_34) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_38) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_40) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_42_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_42) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_46_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_46) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_47) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_48) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_62) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_68) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_27) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_28) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_30) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_31) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_32) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_34) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_36) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_37) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_40) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_44_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_44_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_44) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18_consts_0) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_27) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_28) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_31) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_32) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_34_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_34_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_34) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11_consts_0) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_6_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_80) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_81) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_82) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_85) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_86) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_90) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_91) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_93) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_94) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_95) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_96) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_97) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_98) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_100) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_101) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_7_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_106) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_108) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_109) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_111_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_111_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_111) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_116) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_117) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_118) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_119) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_120) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_122) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_123) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_127) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_128) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_134) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_138) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_139) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_141_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_141_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_141) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_145) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_8) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_9_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_11_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_14) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_21_consts_1_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_21_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_22_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_25) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_26_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_25) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_27) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_28) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_29) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_58) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_16) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_21_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_21) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_22_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_22) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_23_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_23) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_24) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_6) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_machinery_toplevel_consts_13) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_machinery_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5_consts_4) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7_consts_2) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_9) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_10) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_11) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_12) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_15) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_17) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_18) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_19) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_20) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_3) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_5) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_7) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___toplevel_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___ham_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___ham_eggs_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___spam_toplevel_consts_1) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___spam_toplevel) < 0) { + return -1; + } + if (_PyStaticCode_InternStrings((PyCodeObject *)&frozen_only_toplevel) < 0) { + return -1; + } + return 0; +} diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h index 8886564cded600..6bdd6e63878126 100644 --- a/Python/executor_cases.c.h +++ b/Python/executor_cases.c.h @@ -6850,6 +6850,30 @@ break; } + case _POP_TWO_LOAD_CONST_INLINE_BORROW: { + _PyStackRef pop2; + _PyStackRef pop1; + _PyStackRef value; + pop2 = stack_pointer[-1]; + pop1 = stack_pointer[-2]; + PyObject *ptr = (PyObject *)CURRENT_OPERAND0(); + stack_pointer += -1; + assert(WITHIN_STACK_BOUNDS()); + _PyFrame_SetStackPointer(frame, stack_pointer); + PyStackRef_CLOSE(pop2); + stack_pointer = _PyFrame_GetStackPointer(frame); + stack_pointer += -1; + assert(WITHIN_STACK_BOUNDS()); + _PyFrame_SetStackPointer(frame, stack_pointer); + PyStackRef_CLOSE(pop1); + stack_pointer = _PyFrame_GetStackPointer(frame); + value = PyStackRef_FromPyObjectImmortal(ptr); + stack_pointer[0] = value; + stack_pointer += 1; + assert(WITHIN_STACK_BOUNDS()); + break; + } + case _CHECK_FUNCTION: { uint32_t func_version = (uint32_t)CURRENT_OPERAND0(); assert(PyStackRef_FunctionCheck(frame->f_funcobj)); diff --git a/Python/optimizer_bytecodes.c b/Python/optimizer_bytecodes.c index ea7c39bd01ea07..84522da48ff160 100644 --- a/Python/optimizer_bytecodes.c +++ b/Python/optimizer_bytecodes.c @@ -446,7 +446,22 @@ dummy_func(void) { } op(_COMPARE_OP_INT, (left, right -- res)) { - res = sym_new_type(ctx, &PyBool_Type); + if (sym_is_const(ctx, left) && sym_is_const(ctx, right) && + sym_matches_type(left, &PyLong_Type) && sym_matches_type(right, &PyLong_Type)) + { + assert(PyLong_CheckExact(sym_get_const(ctx, left))); + assert(PyLong_CheckExact(sym_get_const(ctx, right))); + + if (_Py_IsImmortal(res)) { + REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)true); + } + else { + res = sym_new_type(ctx, &PyBool_Type); + } + } + else { + res = sym_new_type(ctx, &PyBool_Type); + } } op(_COMPARE_OP_FLOAT, (left, right -- res)) { diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 9f3fc052494309..b82905ad23723d 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -1277,8 +1277,26 @@ } case _COMPARE_OP_INT: { + JitOptSymbol *right; + JitOptSymbol *left; JitOptSymbol *res; - res = sym_new_type(ctx, &PyBool_Type); + right = stack_pointer[-1]; + left = stack_pointer[-2]; + if (sym_is_const(ctx, left) && sym_is_const(ctx, right) && + sym_matches_type(left, &PyLong_Type) && sym_matches_type(right, &PyLong_Type)) + { + assert(PyLong_CheckExact(sym_get_const(ctx, left))); + assert(PyLong_CheckExact(sym_get_const(ctx, right))); + if (_Py_IsImmortal(res)) { + REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)true); + } + else { + res = sym_new_type(ctx, &PyBool_Type); + } + } + else { + res = sym_new_type(ctx, &PyBool_Type); + } stack_pointer[-2] = res; stack_pointer += -1; assert(WITHIN_STACK_BOUNDS()); @@ -2386,6 +2404,15 @@ break; } + case _POP_TWO_LOAD_CONST_INLINE_BORROW: { + JitOptSymbol *value; + value = sym_new_not_null(ctx); + stack_pointer[-2] = value; + stack_pointer += -1; + assert(WITHIN_STACK_BOUNDS()); + break; + } + case _CHECK_FUNCTION: { break; } From fee3937b9b1e2e1cc06656f368c0ff2083ddf185 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Tue, 18 Mar 2025 20:18:56 -0700 Subject: [PATCH 2/9] Compute result and use rich compare --- Python/optimizer_bytecodes.c | 10 +++++++++- Python/optimizer_cases.c.h | 21 +++++++++++++++++---- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/Python/optimizer_bytecodes.c b/Python/optimizer_bytecodes.c index 84522da48ff160..e111501ca3867e 100644 --- a/Python/optimizer_bytecodes.c +++ b/Python/optimizer_bytecodes.c @@ -451,9 +451,17 @@ dummy_func(void) { { assert(PyLong_CheckExact(sym_get_const(ctx, left))); assert(PyLong_CheckExact(sym_get_const(ctx, right))); + PyObject *tmp = PyObject_RichCompare(sym_get_const(ctx, left), + sym_get_const(ctx, right), + oparg >> 5); + if (tmp == NULL) { + goto error; + } + res = sym_new_const(ctx, tmp); + Py_DECREF(tmp); if (_Py_IsImmortal(res)) { - REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)true); + REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)tmp); } else { res = sym_new_type(ctx, &PyBool_Type); diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index b82905ad23723d..f7741e32aaa4ef 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -1287,8 +1287,21 @@ { assert(PyLong_CheckExact(sym_get_const(ctx, left))); assert(PyLong_CheckExact(sym_get_const(ctx, right))); + stack_pointer += -2; + assert(WITHIN_STACK_BOUNDS()); + PyObject *tmp = PyObject_RichCompare(sym_get_const(ctx, left), + sym_get_const(ctx, right), + oparg >> 5); + if (tmp == NULL) { + goto error; + } + res = sym_new_const(ctx, tmp); + stack_pointer[0] = res; + stack_pointer += 1; + assert(WITHIN_STACK_BOUNDS()); + Py_DECREF(tmp); if (_Py_IsImmortal(res)) { - REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)true); + REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)tmp); } else { res = sym_new_type(ctx, &PyBool_Type); @@ -1296,10 +1309,10 @@ } else { res = sym_new_type(ctx, &PyBool_Type); + stack_pointer += -1; + assert(WITHIN_STACK_BOUNDS()); } - stack_pointer[-2] = res; - stack_pointer += -1; - assert(WITHIN_STACK_BOUNDS()); + stack_pointer[-1] = res; break; } From 1a47c8dd16cc3240793846e07903a8185343ff9a Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Tue, 18 Mar 2025 20:25:54 -0700 Subject: [PATCH 3/9] Remove deepfreeze --- Python/deepfreeze/deepfreeze.c | 154152 ------------------------------ 1 file changed, 154152 deletions(-) delete mode 100644 Python/deepfreeze/deepfreeze.c diff --git a/Python/deepfreeze/deepfreeze.c b/Python/deepfreeze/deepfreeze.c deleted file mode 100644 index a81695b8c7ca1c..00000000000000 --- a/Python/deepfreeze/deepfreeze.c +++ /dev/null @@ -1,154152 +0,0 @@ -#include "Python.h" -#include "internal/pycore_gc.h" -#include "internal/pycore_code.h" -#include "internal/pycore_long.h" - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[340]; - } -importlib__bootstrap_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 339, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x6f\x72\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x2e\x0a\x0a\x54\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x4e\x4f\x54\x20\x6d\x65\x61\x6e\x74\x20\x74\x6f\x20\x62\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x21\x20\x49\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x64\x65\x73\x69\x67\x6e\x65\x64\x20\x73\x75\x63\x68\x0a\x74\x68\x61\x74\x20\x69\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x62\x6f\x6f\x74\x73\x74\x72\x61\x70\x70\x65\x64\x20\x69\x6e\x74\x6f\x20\x50\x79\x74\x68\x6f\x6e\x20\x61\x73\x20\x74\x68\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x2e\x20\x41\x73\x0a\x73\x75\x63\x68\x20\x69\x74\x20\x72\x65\x71\x75\x69\x72\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x6a\x65\x63\x74\x69\x6f\x6e\x20\x6f\x66\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x61\x6e\x64\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x73\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x0a\x77\x6f\x72\x6b\x2e\x20\x4f\x6e\x65\x20\x73\x68\x6f\x75\x6c\x64\x20\x75\x73\x65\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x20\x61\x73\x20\x74\x68\x65\x20\x70\x75\x62\x6c\x69\x63\x2d\x66\x61\x63\x69\x6e\x67\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_AttributeError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AttributeError", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_type = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "type", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(__qualname__), - & const_str_AttributeError._ascii.ob_base, - & const_str_type._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -importlib__bootstrap_toplevel_consts_1_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str__object_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_object_name", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -importlib__bootstrap_toplevel_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x03\x05\x26\xd8\x0f\x12\xd4\x0f\x1f\xd0\x08\x1f\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xdd\x0f\x13\x90\x43\x89\x79\x8c\x79\xd4\x0f\x25\xd0\x08\x25\xd0\x08\x25\xd0\x08\x25\xf0\x03\x01\x05\x26\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -importlib__bootstrap_toplevel_consts_1_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x06\x09\x00\x89\x1e\x2a\x03\xa9\x01\x2a\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(obj), - }, - }, -}; -static - struct _PyCode_DEF(90) -importlib__bootstrap_toplevel_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 45, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_1_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 23, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__object_name._ascii.ob_base, - .co_qualname = & const_str__object_name._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x17\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[48]; - } -importlib__bootstrap_toplevel_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 47, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Simple substitute for functools.update_wrapper.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_3_consts_1 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(__module__), - &_Py_ID(__name__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_3_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_3_consts_1._object.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_hasattr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "hasattr", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_setattr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "setattr", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_update = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "update", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_hasattr._ascii.ob_base, - & const_str_setattr._ascii.ob_base, - &_Py_ID(getattr), - &_Py_ID(__dict__), - & const_str_update._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__wrap = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[95]; - } -importlib__bootstrap_toplevel_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 94, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x13\x48\xf0\x00\x02\x05\x39\xf0\x00\x02\x05\x39\x88\x07\xdd\x0b\x12\x90\x33\x98\x07\xd1\x0b\x20\xd4\x0b\x20\xf0\x00\x01\x09\x39\xdd\x0c\x13\x90\x43\x98\x17\xa5\x27\xa8\x23\xa8\x77\xd1\x22\x37\xd4\x22\x37\xd1\x0c\x38\xd4\x0c\x38\xd0\x0c\x38\xf8\xd8\x04\x07\x84\x4c\xd7\x04\x17\xd2\x04\x17\x98\x03\x9c\x0c\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_new = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "new", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_old = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "old", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_new._ascii.ob_base, - & const_str_old._ascii.ob_base, - &_Py_ID(replace), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[4]; - } -importlib__bootstrap_toplevel_consts_3_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 3, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(172) -importlib__bootstrap_toplevel_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 86, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_3_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 9, - .co_firstlineno = 40, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__wrap._ascii.ob_base, - .co_qualname = & const_str__wrap._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x44\x00\x5d\x31\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x32\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_sys = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sys", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_type._ascii.ob_base, - & const_str_sys._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str__new_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_new_module", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -importlib__bootstrap_toplevel_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x14\x8d\x34\x95\x03\x89\x39\x8c\x39\x90\x54\x89\x3f\x8c\x3f\xd0\x04\x1a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(name), - }, - }, -}; -static - struct _PyCode_DEF(60) -importlib__bootstrap_toplevel_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 30, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 48, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__new_module._ascii.ob_base, - .co_qualname = & const_str__new_module._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__DeadlockError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_DeadlockError", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__DeadlockError._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -importlib__bootstrap_toplevel_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x08\x80\x44", -}; -static - struct _PyCode_DEF(14) -importlib__bootstrap_toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 7, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_5_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 61, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__DeadlockError._ascii.ob_base, - .co_qualname = & const_str__DeadlockError._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str__ModuleLock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLock", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[170]; - } -importlib__bootstrap_toplevel_consts_7_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 169, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x72\x65\x63\x75\x72\x73\x69\x76\x65\x20\x6c\x6f\x63\x6b\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x64\x65\x74\x65\x63\x74\x20\x64\x65\x61\x64\x6c\x6f\x63\x6b\x73\x0a\x20\x20\x20\x20\x28\x65\x2e\x67\x2e\x20\x74\x68\x72\x65\x61\x64\x20\x31\x20\x74\x72\x79\x69\x6e\x67\x20\x74\x6f\x20\x74\x61\x6b\x65\x20\x6c\x6f\x63\x6b\x73\x20\x41\x20\x74\x68\x65\x6e\x20\x42\x2c\x20\x61\x6e\x64\x20\x74\x68\x72\x65\x61\x64\x20\x32\x20\x74\x72\x79\x69\x6e\x67\x20\x74\x6f\x0a\x20\x20\x20\x20\x74\x61\x6b\x65\x20\x6c\x6f\x63\x6b\x73\x20\x42\x20\x74\x68\x65\x6e\x20\x41\x29\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__thread = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_thread", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_allocate_lock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "allocate_lock", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_lock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lock", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_wakeup = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "wakeup", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_owner = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "owner", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_count = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "count", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_waiters = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "waiters", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str__thread._ascii.ob_base, - & const_str_allocate_lock._ascii.ob_base, - & const_str_lock._ascii.ob_base, - & const_str_wakeup._ascii.ob_base, - &_Py_ID(name), - & const_str_owner._ascii.ob_base, - & const_str_count._ascii.ob_base, - & const_str_waiters._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -importlib__bootstrap_toplevel_consts_7_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLock.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[73]; - } -importlib__bootstrap_toplevel_consts_7_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 72, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x14\x1b\xd7\x14\x29\xd2\x14\x29\xd1\x14\x2b\xd4\x14\x2b\x88\x04\x8c\x09\xdd\x16\x1d\xd7\x16\x2b\xd2\x16\x2b\xd1\x16\x2d\xd4\x16\x2d\x88\x04\x8c\x0b\xd8\x14\x18\x88\x04\x8c\x09\xd8\x15\x19\x88\x04\x8c\x0a\xd8\x15\x16\x88\x04\x8c\x0a\xd8\x17\x18\x88\x04\x8c\x0c\x88\x0c\x88\x0c", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_self = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "self", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(name), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(182) -importlib__bootstrap_toplevel_consts_7_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 91, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_7_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 71, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_2_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - Py_True, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_get_ident = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "get_ident", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_set = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str__blocking_on = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_blocking_on", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__thread._ascii.ob_base, - & const_str_get_ident._ascii.ob_base, - & const_str_owner._ascii.ob_base, - & const_str_set._ascii.ob_base, - & const_str__blocking_on._ascii.ob_base, - &_Py_ID(get), - &_Py_ID(add), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_has_deadlock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "has_deadlock", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -importlib__bootstrap_toplevel_consts_7_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLock.has_deadlock", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[127]; - } -importlib__bootstrap_toplevel_consts_7_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 126, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0d\x14\xd7\x0d\x1e\xd2\x0d\x1e\xd1\x0d\x20\xd4\x0d\x20\x88\x02\xd8\x0e\x12\x8c\x6a\x88\x03\xdd\x0f\x12\x89\x75\x8c\x75\x88\x04\xf0\x02\x0e\x09\x1a\xdd\x13\x1f\xd7\x13\x23\xd2\x13\x23\xa0\x43\xd1\x13\x28\xd4\x13\x28\x88\x44\xd8\x0f\x13\x88\x7c\xd8\x17\x1c\x90\x75\xd8\x12\x16\x94\x2a\x88\x43\xd8\x0f\x12\x90\x62\x8a\x79\x88\x79\xd8\x17\x1b\x90\x74\xd8\x0f\x12\x90\x64\x88\x7b\x88\x7b\xf0\x0c\x00\x18\x1d\x90\x75\xd8\x0c\x10\x8f\x48\x8a\x48\x90\x53\x89\x4d\x8c\x4d\x88\x4d\xf0\x1d\x0e\x09\x1a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_me = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "me", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_tid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "tid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_seen = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "seen", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_me._ascii.ob_base, - & const_str_tid._ascii.ob_base, - & const_str_seen._ascii.ob_base, - & const_str_lock._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[6]; - } -importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 5, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(242) -importlib__bootstrap_toplevel_consts_7_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 121, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_7_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 79, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_has_deadlock._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_3_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x09\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x80\x02\x64\x02\x53\x00\x7c\x04\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x7c\x02\x7c\x03\x76\x00\x72\x02\x64\x02\x53\x00\x7c\x03\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x49", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[186]; - } -importlib__bootstrap_toplevel_consts_7_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 185, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x41\x63\x71\x75\x69\x72\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6c\x6f\x63\x6b\x2e\x20\x20\x49\x66\x20\x61\x20\x70\x6f\x74\x65\x6e\x74\x69\x61\x6c\x20\x64\x65\x61\x64\x6c\x6f\x63\x6b\x20\x69\x73\x20\x64\x65\x74\x65\x63\x74\x65\x64\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x20\x5f\x44\x65\x61\x64\x6c\x6f\x63\x6b\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\x74\x68\x65\x20\x6c\x6f\x63\x6b\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x61\x63\x71\x75\x69\x72\x65\x64\x20\x61\x6e\x64\x20\x54\x72\x75\x65\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -importlib__bootstrap_toplevel_consts_7_consts_4_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "deadlock detected by %r", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_7_consts_4_consts_0._ascii.ob_base, - Py_True, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - & importlib__bootstrap_toplevel_consts_7_consts_4_consts_5._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_acquire = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "acquire", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_release = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "release", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str__thread._ascii.ob_base, - & const_str_get_ident._ascii.ob_base, - & const_str__blocking_on._ascii.ob_base, - & const_str_lock._ascii.ob_base, - & const_str_count._ascii.ob_base, - & const_str_owner._ascii.ob_base, - & const_str_has_deadlock._ascii.ob_base, - & const_str__DeadlockError._ascii.ob_base, - & const_str_wakeup._ascii.ob_base, - & const_str_acquire._ascii.ob_base, - & const_str_waiters._ascii.ob_base, - & const_str_release._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -importlib__bootstrap_toplevel_consts_7_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLock.acquire", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[382]; - } -importlib__bootstrap_toplevel_consts_7_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 381, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0c\x00\x0f\x16\xd7\x0e\x1f\xd2\x0e\x1f\xd1\x0e\x21\xd4\x0e\x21\x88\x03\xd8\x1c\x20\x8d\x0c\x90\x53\xd1\x08\x19\xf0\x02\x0f\x09\x22\xf0\x02\x0c\x0d\x26\xd8\x15\x19\x94\x59\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xd8\x17\x1b\x94\x7a\xa0\x51\x92\x7f\x90\x7f\xa8\x24\xac\x2a\xb8\x03\xd2\x2a\x3b\xd0\x2a\x3b\xd8\x25\x28\x98\x04\x9c\x0a\xd8\x18\x1c\x98\x0a\x9c\x0a\xa0\x61\x99\x0f\x98\x0a\x9c\x0a\xd8\x1f\x23\xf0\x09\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf1\x00\x08\x11\x2a\xf4\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf5\x1a\x00\x11\x1d\x98\x53\xd0\x10\x21\xd0\x10\x21\xd0\x10\x21\xf0\x11\x00\x18\x1c\xd7\x17\x28\xd2\x17\x28\xd1\x17\x2a\xd4\x17\x2a\xf0\x00\x01\x15\x4f\x01\xdd\x1e\x2c\xd0\x2d\x46\xc8\x14\xd1\x2d\x4d\xd1\x1e\x4e\xd4\x1e\x4e\xd0\x18\x4e\xd8\x17\x1b\x94\x7b\xd7\x17\x2a\xd2\x17\x2a\xa8\x35\xd1\x17\x31\xd4\x17\x31\xf0\x00\x01\x15\x2a\xd8\x18\x1c\x98\x0c\x9c\x0c\xa8\x01\xd1\x18\x29\x98\x0c\x9c\x0c\xf0\x11\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf1\x00\x08\x11\x2a\xf4\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf8\xf8\xf8\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x00\x08\x11\x2a\xf0\x14\x00\x11\x15\x94\x0b\xd7\x10\x23\xd2\x10\x23\xd1\x10\x25\xd4\x10\x25\xd0\x10\x25\xd8\x10\x14\x94\x0b\xd7\x10\x23\xd2\x10\x23\xd1\x10\x25\xd4\x10\x25\xd0\x10\x25\xf0\x19\x0c\x0d\x26\xf8\xf5\x1c\x00\x11\x1d\x98\x53\xd0\x10\x21\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[60]; - } -importlib__bootstrap_toplevel_consts_7_consts_4_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 59, - }, - .ob_shash = -1, - .ob_sval = "\xa5\x08\x44\x0b\x00\xad\x2f\x43\x0d\x03\xc1\x1c\x0b\x44\x0b\x00\xc1\x31\x41\x10\x43\x0d\x03\xc3\x01\x0c\x44\x0b\x00\xc3\x0d\x04\x43\x11\x07\xc3\x11\x03\x44\x0b\x00\xc3\x14\x01\x43\x11\x07\xc3\x15\x36\x44\x0b\x00\xc4\x0b\x0a\x44\x15\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_tid._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(560) -importlib__bootstrap_toplevel_consts_7_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 280, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_4_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_7_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_7_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 100, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_acquire._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_4_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x09\x00\x09\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x73\x0b\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x2d\x7c\x01\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x78\x01\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x0d\x00\x00\x63\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x64\x04\x64\x04\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x64\x01\x53\x00\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x12\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x7c\x00\x78\x01\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x0d\x00\x00\x63\x02\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x64\x04\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xe5\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -importlib__bootstrap_toplevel_consts_7_consts_5_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cannot release un-acquired lock", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_toplevel_consts_7_consts_5_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_RuntimeError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "RuntimeError", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str__thread._ascii.ob_base, - & const_str_get_ident._ascii.ob_base, - & const_str_lock._ascii.ob_base, - & const_str_owner._ascii.ob_base, - & const_str_RuntimeError._ascii.ob_base, - & const_str_count._ascii.ob_base, - & const_str_waiters._ascii.ob_base, - & const_str_wakeup._ascii.ob_base, - & const_str_release._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -importlib__bootstrap_toplevel_consts_7_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLock.release", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[250]; - } -importlib__bootstrap_toplevel_consts_7_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 249, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0e\x15\xd7\x0e\x1f\xd2\x0e\x1f\xd1\x0e\x21\xd4\x0e\x21\x88\x03\xd8\x0d\x11\x8c\x59\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xd8\x0f\x13\x8c\x7a\x98\x53\xd2\x0f\x20\xd0\x0f\x20\xdd\x16\x22\xd0\x23\x44\xd1\x16\x45\xd4\x16\x45\xd0\x10\x45\xd8\x13\x17\x94\x3a\xa0\x01\x92\x3e\x90\x3e\x90\x3e\x90\x3e\xd8\x0c\x10\x88\x4a\x8c\x4a\x98\x21\x89\x4f\x88\x4a\x8c\x4a\xd8\x0f\x13\x8c\x7a\x98\x51\x8a\x7f\x88\x7f\xd8\x1d\x21\x90\x04\x94\x0a\xd8\x13\x17\x94\x3c\xf0\x00\x02\x11\x2a\xd8\x14\x18\x90\x4c\x94\x4c\xa0\x41\xd1\x14\x25\x90\x4c\x94\x4c\xd8\x14\x18\x94\x4b\xd7\x14\x27\xd2\x14\x27\xd1\x14\x29\xd4\x14\x29\xd0\x14\x29\xf0\x13\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf1\x00\x09\x09\x2a\xf4\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf8\xf8\xf8\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -importlib__bootstrap_toplevel_consts_7_consts_5_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xa1\x41\x3a\x42\x28\x03\xc2\x28\x04\x42\x2c\x07\xc2\x2f\x01\x42\x2c\x07", -}; -static - struct _PyCode_DEF(362) -importlib__bootstrap_toplevel_consts_7_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 181, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_5_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_7_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_7_consts_5_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 125, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_release._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_5_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x04\x00\x00\x00\x00\x73\x02\x4a\x00\x82\x01\x7c\x00\x78\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x17\x00\x00\x63\x02\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x37\x64\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x29\x7c\x00\x78\x01\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x17\x00\x00\x63\x02\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -importlib__bootstrap_toplevel_consts_7_consts_6_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLock({!r}) at {}", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_toplevel_consts_7_consts_6_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_format = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "format", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_id = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "id", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_format._ascii.ob_base, - &_Py_ID(name), - & const_str_id._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -importlib__bootstrap_toplevel_consts_7_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLock.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[33]; - } -importlib__bootstrap_toplevel_consts_7_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 32, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x28\xd7\x0f\x2f\xd2\x0f\x2f\xb0\x04\xb4\x09\xbd\x32\xb8\x64\xb9\x38\xbc\x38\xd1\x0f\x44\xd4\x0f\x44\xd0\x08\x44", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(82) -importlib__bootstrap_toplevel_consts_7_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 41, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_6_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_7_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 138, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & importlib__bootstrap_toplevel_consts_7_consts_6_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_7_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str__ModuleLock._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_7_consts_1._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_7_consts_2.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_7_consts_3.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_7_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_7_consts_5.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_7_consts_6.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib__bootstrap_toplevel_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - & const_str_has_deadlock._ascii.ob_base, - & const_str_acquire._ascii.ob_base, - & const_str_release._ascii.ob_base, - &_Py_ID(__repr__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[111]; - } -importlib__bootstrap_toplevel_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 110, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x03\x05\x08\xf0\x00\x03\x05\x08\xf0\x0a\x06\x05\x19\xf0\x00\x06\x05\x19\xf0\x00\x06\x05\x19\xf0\x10\x13\x05\x1a\xf0\x00\x13\x05\x1a\xf0\x00\x13\x05\x1a\xf0\x2a\x17\x05\x22\xf0\x00\x17\x05\x22\xf0\x00\x17\x05\x22\xf0\x32\x0b\x05\x2a\xf0\x00\x0b\x05\x2a\xf0\x00\x0b\x05\x2a\xf0\x1a\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01", -}; -static - struct _PyCode_DEF(48) -importlib__bootstrap_toplevel_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 65, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__ModuleLock._ascii.ob_base, - .co_qualname = & const_str__ModuleLock._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__DummyModuleLock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_DummyModuleLock", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[87]; - } -importlib__bootstrap_toplevel_consts_9_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 86, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x73\x69\x6d\x70\x6c\x65\x20\x5f\x4d\x6f\x64\x75\x6c\x65\x4c\x6f\x63\x6b\x20\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x74\x20\x66\x6f\x72\x20\x50\x79\x74\x68\x6f\x6e\x20\x62\x75\x69\x6c\x64\x73\x20\x77\x69\x74\x68\x6f\x75\x74\x0a\x20\x20\x20\x20\x6d\x75\x6c\x74\x69\x2d\x74\x68\x72\x65\x61\x64\x69\x6e\x67\x20\x73\x75\x70\x70\x6f\x72\x74\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(name), - & const_str_count._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -importlib__bootstrap_toplevel_consts_9_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_DummyModuleLock.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -importlib__bootstrap_toplevel_consts_9_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x14\x18\x88\x04\x8c\x09\xd8\x15\x16\x88\x04\x8c\x0a\x88\x0a\x88\x0a", -}; -static - struct _PyCode_DEF(34) -importlib__bootstrap_toplevel_consts_9_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_9_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 146, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_2_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_True, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_count._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -importlib__bootstrap_toplevel_consts_9_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_DummyModuleLock.acquire", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -importlib__bootstrap_toplevel_consts_9_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x88\x0a\x8c\x0a\x90\x61\x89\x0f\x88\x0a\x8c\x0a\xd8\x0f\x13\x88\x74", -}; -static - struct _PyCode_DEF(38) -importlib__bootstrap_toplevel_consts_9_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_9_consts_3_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_9_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 150, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_acquire._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_3_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x78\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x0d\x00\x00\x63\x02\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & importlib__bootstrap_toplevel_consts_7_consts_5_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_count._ascii.ob_base, - & const_str_RuntimeError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -importlib__bootstrap_toplevel_consts_9_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_DummyModuleLock.release", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[48]; - } -importlib__bootstrap_toplevel_consts_9_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 47, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0f\x8c\x3a\x98\x11\x8a\x3f\x88\x3f\xdd\x12\x1e\xd0\x1f\x40\xd1\x12\x41\xd4\x12\x41\xd0\x0c\x41\xd8\x08\x0c\x88\x0a\x8c\x0a\x90\x61\x89\x0f\x88\x0a\x8c\x0a\x88\x0a\x88\x0a", -}; -static - struct _PyCode_DEF(90) -importlib__bootstrap_toplevel_consts_9_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 45, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_9_consts_4_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_9_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 154, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_release._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_4_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x0f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x78\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7a\x17\x00\x00\x63\x02\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -importlib__bootstrap_toplevel_consts_9_consts_5_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_DummyModuleLock({!r}) at {}", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_toplevel_consts_9_consts_5_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -importlib__bootstrap_toplevel_consts_9_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_DummyModuleLock.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[33]; - } -importlib__bootstrap_toplevel_consts_9_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 32, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x2d\xd7\x0f\x34\xd2\x0f\x34\xb0\x54\xb4\x59\xc5\x02\xc0\x34\xc1\x08\xc4\x08\xd1\x0f\x49\xd4\x0f\x49\xd0\x08\x49", -}; -static - struct _PyCode_DEF(82) -importlib__bootstrap_toplevel_consts_9_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 41, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_9_consts_5_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_7_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 159, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & importlib__bootstrap_toplevel_consts_9_consts_5_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_9_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__DummyModuleLock._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_9_consts_1._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_9_consts_2.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_9_consts_3.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_9_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_9_consts_5.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - & const_str_acquire._ascii.ob_base, - & const_str_release._ascii.ob_base, - &_Py_ID(__repr__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[96]; - } -importlib__bootstrap_toplevel_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 95, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x06\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x08\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x08\x03\x05\x18\xf0\x00\x03\x05\x18\xf0\x00\x03\x05\x18\xf0\x0a\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01", -}; -static - struct _PyCode_DEF(42) -importlib__bootstrap_toplevel_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_9_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 142, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__DummyModuleLock._ascii.ob_base, - .co_qualname = & const_str__DummyModuleLock._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str__ModuleLockManager = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLockManager", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__lock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_lock", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_11_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__name._ascii.ob_base, - & const_str__lock._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -importlib__bootstrap_toplevel_consts_11_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLockManager.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -importlib__bootstrap_toplevel_consts_11_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x15\x19\x88\x04\x8c\x0a\xd8\x15\x19\x88\x04\x8c\x0a\x88\x0a\x88\x0a", -}; -static - struct _PyCode_DEF(34) -importlib__bootstrap_toplevel_consts_11_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_11_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 165, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & importlib__bootstrap_toplevel_consts_11_consts_1_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_11_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__get_module_lock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_module_lock", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_11_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__get_module_lock._ascii.ob_base, - & const_str__name._ascii.ob_base, - & const_str__lock._ascii.ob_base, - & const_str_acquire._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -importlib__bootstrap_toplevel_consts_11_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLockManager.__enter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[46]; - } -importlib__bootstrap_toplevel_consts_11_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 45, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x15\x25\xa0\x64\xa4\x6a\xd1\x15\x31\xd4\x15\x31\x88\x04\x8c\x0a\xd8\x08\x0c\x8c\x0a\xd7\x08\x1a\xd2\x08\x1a\xd1\x08\x1c\xd4\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c", -}; -static - struct _PyCode_DEF(106) -importlib__bootstrap_toplevel_consts_11_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 53, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_11_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 169, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & importlib__bootstrap_toplevel_consts_11_consts_2_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_11_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_11_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__lock._ascii.ob_base, - & const_str_release._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -importlib__bootstrap_toplevel_consts_11_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModuleLockManager.__exit__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[29]; - } -importlib__bootstrap_toplevel_consts_11_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 28, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0a\xd7\x08\x1a\xd2\x08\x1a\xd1\x08\x1c\xd4\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_args = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "args", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_kwargs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "kwargs", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_11_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_kwargs._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(56) -importlib__bootstrap_toplevel_consts_11_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_11_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 15, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 173, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_11_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & importlib__bootstrap_toplevel_consts_11_consts_3_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_11_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__ModuleLockManager._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_11_consts_1.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_11_consts_2.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_11_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -importlib__bootstrap_toplevel_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__init__), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[66]; - } -importlib__bootstrap_toplevel_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 65, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x08\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x08\x01\x05\x1d\xf0\x00\x01\x05\x1d\xf0\x00\x01\x05\x1d\xf0\x00\x01\x05\x1d\xf0\x00\x01\x05\x1d", -}; -static - struct _PyCode_DEF(32) -importlib__bootstrap_toplevel_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_11_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 163, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__ModuleLockManager._ascii.ob_base, - .co_qualname = & const_str__ModuleLockManager._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[140]; - } -importlib__bootstrap_toplevel_consts_13_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 139, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x47\x65\x74\x20\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6c\x6f\x63\x6b\x20\x66\x6f\x72\x20\x61\x20\x67\x69\x76\x65\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x41\x63\x71\x75\x69\x72\x65\x2f\x72\x65\x6c\x65\x61\x73\x65\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x6c\x79\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x20\x69\x6d\x70\x6f\x72\x74\x20\x6c\x6f\x63\x6b\x20\x74\x6f\x20\x70\x72\x6f\x74\x65\x63\x74\x0a\x20\x20\x20\x20\x5f\x6d\x6f\x64\x75\x6c\x65\x5f\x6c\x6f\x63\x6b\x73\x2e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str__imp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_imp", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_acquire_lock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "acquire_lock", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__module_locks = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_module_locks", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_release_lock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "release_lock", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_13_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__imp._ascii.ob_base, - & const_str_acquire_lock._ascii.ob_base, - & const_str__module_locks._ascii.ob_base, - &_Py_ID(get), - & const_str_release_lock._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_cb = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cb", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -importlib__bootstrap_toplevel_consts_13_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_module_lock..cb", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[109]; - } -importlib__bootstrap_toplevel_consts_13_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 108, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x10\x14\xd7\x10\x21\xd2\x10\x21\xd1\x10\x23\xd4\x10\x23\xd0\x10\x23\xf0\x02\x07\x11\x28\xf5\x08\x00\x18\x25\xd7\x17\x28\xd2\x17\x28\xa8\x14\xd1\x17\x2e\xd4\x17\x2e\xb0\x23\xd0\x17\x35\xd0\x17\x35\xdd\x1c\x29\xa8\x24\xd0\x1c\x2f\xe5\x14\x18\xd7\x14\x25\xd2\x14\x25\xd1\x14\x27\xd4\x14\x27\xd0\x14\x27\xd0\x14\x27\xd0\x14\x27\xf8\x95\x44\xd7\x14\x25\xd2\x14\x25\xd1\x14\x27\xd4\x14\x27\xd0\x14\x27\xd0\x14\x27\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[12]; - } -importlib__bootstrap_toplevel_consts_13_consts_2_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 11, - }, - .ob_shash = -1, - .ob_sval = "\x9b\x24\x41\x1a\x00\xc1\x1a\x1b\x41\x35\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_ref = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ref", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_13_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_ref._ascii.ob_base, - &_Py_ID(name), - }, - }, -}; -static - struct _PyCode_DEF(240) -importlib__bootstrap_toplevel_consts_13_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 120, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_13_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_13_consts_2_exceptiontable.ob_base.ob_base, - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 198, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_13_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_cb._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_13_consts_2_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_13_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x75\x00\x72\x08\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_13_consts_0._ascii.ob_base, - Py_None, - & importlib__bootstrap_toplevel_consts_13_consts_2.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_KeyError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "KeyError", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__weakref = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_weakref", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -importlib__bootstrap_toplevel_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & const_str__imp._ascii.ob_base, - & const_str_acquire_lock._ascii.ob_base, - & const_str__module_locks._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - & const_str__thread._ascii.ob_base, - & const_str__DummyModuleLock._ascii.ob_base, - & const_str__ModuleLock._ascii.ob_base, - & const_str__weakref._ascii.ob_base, - & const_str_ref._ascii.ob_base, - & const_str_release_lock._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[226]; - } -importlib__bootstrap_toplevel_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 225, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0c\x00\x05\x09\xd7\x04\x15\xd2\x04\x15\xd1\x04\x17\xd4\x04\x17\xd0\x04\x17\xf0\x02\x19\x05\x1c\xf0\x02\x03\x09\x18\xdd\x13\x20\xa0\x14\xd4\x13\x26\xd1\x13\x28\xd4\x13\x28\x88\x44\x88\x44\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xd8\x13\x17\x88\x44\x88\x44\x88\x44\xf0\x03\x01\x09\x18\xf8\xf8\xf8\xf0\x06\x00\x0c\x10\x88\x3c\xdd\x0f\x16\x88\x7f\xdd\x17\x27\xa8\x04\xd1\x17\x2d\xd4\x17\x2d\x90\x04\x90\x04\xe5\x17\x22\xa0\x34\xd1\x17\x28\xd4\x17\x28\x90\x04\xe0\x1d\x21\xf0\x00\x09\x0d\x28\xf0\x00\x09\x0d\x28\xf0\x00\x09\x0d\x28\xf0\x00\x09\x0d\x28\xf5\x16\x00\x23\x2b\xa7\x2c\xa2\x2c\xa8\x74\xb0\x52\xd1\x22\x38\xd4\x22\x38\x8d\x4d\x98\x24\xd1\x0c\x1f\xe5\x08\x0c\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xf8\x8d\x04\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xf8\xf8\xf8\xe0\x0b\x0f\x80\x4b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[38]; - } -importlib__bootstrap_toplevel_consts_13_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 37, - }, - .ob_shash = -1, - .ob_sval = "\x9c\x14\x31\x00\xb0\x01\x42\x2d\x00\xb1\x0c\x41\x00\x03\xbd\x02\x42\x2d\x00\xbf\x01\x41\x00\x03\xc1\x00\x41\x13\x42\x2d\x00\xc2\x2d\x1b\x43\x08\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_13_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(name), - & const_str_lock._ascii.ob_base, - & const_str_cb._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(410) -importlib__bootstrap_toplevel_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 205, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_13_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_13_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 179, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_13_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__get_module_lock._ascii.ob_base, - .co_qualname = & const_str__get_module_lock._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x12\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x01\x7d\x01\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x80\x4e\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x10\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x0f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x66\x01\x64\x02\x84\x01\x7d\x02\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x3c\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1e\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[190]; - } -importlib__bootstrap_toplevel_consts_14_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 189, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x63\x71\x75\x69\x72\x65\x73\x20\x74\x68\x65\x6e\x20\x72\x65\x6c\x65\x61\x73\x65\x73\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6c\x6f\x63\x6b\x20\x66\x6f\x72\x20\x61\x20\x67\x69\x76\x65\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x65\x6e\x73\x75\x72\x65\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x6c\x79\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64\x2c\x20\x69\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x65\x76\x65\x6e\x74\x20\x69\x74\x20\x69\x73\x20\x62\x65\x69\x6e\x67\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x62\x79\x20\x61\x6e\x6f\x74\x68\x65\x72\x20\x74\x68\x72\x65\x61\x64\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_14_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__get_module_lock._ascii.ob_base, - & const_str_acquire._ascii.ob_base, - & const_str_release._ascii.ob_base, - & const_str__DeadlockError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[93]; - } -importlib__bootstrap_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 92, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0c\x00\x0c\x1c\x98\x44\xd1\x0b\x21\xd4\x0b\x21\x80\x44\xf0\x02\x07\x05\x17\xd8\x08\x0c\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\xf0\x0c\x00\x09\x0d\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\x88\x0e\x88\x0e\xf8\xf5\x0b\x00\x0c\x1a\xf0\x00\x03\x05\x0d\xf0\x00\x03\x05\x0d\xf0\x00\x03\x05\x0d\xf0\x06\x00\x09\x0d\x88\x04\x88\x04\xf0\x07\x03\x05\x0d\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -importlib__bootstrap_toplevel_consts_14_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x91\x14\x3b\x00\xbb\x0a\x41\x09\x03\xc1\x08\x01\x41\x09\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(name), - & const_str_lock._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(152) -importlib__bootstrap_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 76, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_14_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_14_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 216, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(_lock_unlock_module), - .co_qualname = &_Py_ID(_lock_unlock_module), - .co_linetable = & importlib__bootstrap_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[303]; - } -importlib__bootstrap_toplevel_consts_15_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 302, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x72\x65\x6d\x6f\x76\x65\x5f\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x5f\x66\x72\x61\x6d\x65\x73\x20\x69\x6e\x20\x69\x6d\x70\x6f\x72\x74\x2e\x63\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x72\x65\x6d\x6f\x76\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x0a\x20\x20\x20\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x20\x66\x72\x61\x6d\x65\x73\x20\x74\x68\x61\x74\x20\x65\x6e\x64\x20\x77\x69\x74\x68\x20\x61\x20\x63\x61\x6c\x6c\x20\x74\x6f\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x0a\x0a\x20\x20\x20\x20\x55\x73\x65\x20\x69\x74\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x61\x20\x6e\x6f\x72\x6d\x61\x6c\x20\x63\x61\x6c\x6c\x20\x69\x6e\x20\x70\x6c\x61\x63\x65\x73\x20\x77\x68\x65\x72\x65\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x0a\x20\x20\x20\x20\x66\x72\x61\x6d\x65\x73\x20\x69\x6e\x74\x72\x6f\x64\x75\x63\x65\x73\x20\x75\x6e\x77\x61\x6e\x74\x65\x64\x20\x6e\x6f\x69\x73\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x74\x72\x61\x63\x65\x62\x61\x63\x6b\x20\x28\x65\x2e\x67\x2e\x20\x77\x68\x65\x6e\x20\x65\x78\x65\x63\x75\x74\x69\x6e\x67\x0a\x20\x20\x20\x20\x6d\x6f\x64\x75\x6c\x65\x20\x63\x6f\x64\x65\x29\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_15_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -const_str__call_with_frames_removed = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_call_with_frames_removed", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -importlib__bootstrap_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x10\x00\x0c\x0d\x88\x31\x88\x64\xd0\x0b\x1b\x90\x64\xd0\x0b\x1b\xd0\x0b\x1b\xd0\x04\x1b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_f = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "f", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_kwds = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "kwds", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_15_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_f._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_kwds._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(18) -importlib__bootstrap_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 9, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 15, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 233, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__call_with_frames_removed._ascii.ob_base, - .co_qualname = & const_str__call_with_frames_removed._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x02\x00\x7c\x00\x7c\x01\x69\x00\x7c\x02\xa4\x01\x8e\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_verbosity = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "verbosity", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_17 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_verbosity._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[62]; - } -importlib__bootstrap_toplevel_consts_18_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 61, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Print the message to stderr if -v/PYTHONVERBOSE is turned on.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -importlib__bootstrap_toplevel_consts_18_consts_1_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "#", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -importlib__bootstrap_toplevel_consts_18_consts_1_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "import ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_18_consts_1 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_18_consts_1_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_18_consts_1_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -importlib__bootstrap_toplevel_consts_18_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "# ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_file = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "file", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_18_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_file._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_18_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_18_consts_1._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_18_consts_2._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_flags = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "flags", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_verbose = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "verbose", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_startswith = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "startswith", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_print = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "print", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_verbose._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str_print._ascii.ob_base, - & const_str_format._ascii.ob_base, - &_Py_ID(stderr), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__verbose_message = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_verbose_message", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[95]; - } -importlib__bootstrap_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 94, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x07\x0a\x84\x79\xd4\x07\x18\x98\x49\xd2\x07\x25\xd0\x07\x25\xd8\x0f\x16\xd7\x0f\x21\xd2\x0f\x21\xd0\x22\x32\xd1\x0f\x33\xd4\x0f\x33\xf0\x00\x01\x09\x25\xd8\x16\x1a\x98\x57\x91\x6e\x88\x47\xdd\x08\x0d\x88\x6e\x88\x67\x8c\x6e\x98\x64\xd0\x0e\x23\xad\x23\xac\x2a\xd0\x08\x35\xd1\x08\x35\xd4\x08\x35\xd0\x08\x35\xd0\x08\x35\xd0\x08\x35\xf0\x07\x00\x08\x26\xd0\x07\x25", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_message = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "message", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_18_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_message._ascii.ob_base, - & const_str_verbosity._ascii.ob_base, - & const_str_args._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(174) -importlib__bootstrap_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 87, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 1, - .co_stacksize = 5, - .co_firstlineno = 244, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__verbose_message._ascii.ob_base, - .co_qualname = & const_str__verbose_message._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x05\x00\x00\x00\x00\x72\x3f\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x05\x64\x02\x7c\x00\x7a\x00\x00\x00\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x8e\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x04\x53\x00\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[50]; - } -importlib__bootstrap_toplevel_consts_19_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 49, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Decorator to verify the named module is built-in.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -importlib__bootstrap_toplevel_consts_19_consts_1_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "{!r} is not a built-in module", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_19_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_toplevel_consts_19_consts_1_consts_1._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str_builtin_module_names = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "builtin_module_names", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_ImportError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ImportError", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_19_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_builtin_module_names._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_format._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -const_str__requires_builtin_wrapper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_requires_builtin_wrapper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[53]; - } -importlib__bootstrap_toplevel_consts_19_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 52, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_requires_builtin.._requires_builtin_wrapper", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[79]; - } -importlib__bootstrap_toplevel_consts_19_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 78, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd8\x0b\x13\x9d\x33\xd4\x1b\x33\xd0\x0b\x33\xd0\x0b\x33\xdd\x12\x1d\xd0\x1e\x3d\xd7\x1e\x44\xd2\x1e\x44\xc0\x58\xd1\x1e\x4e\xd4\x1e\x4e\xd8\x23\x2b\xf0\x03\x01\x13\x2d\xf1\x00\x01\x13\x2d\xf4\x00\x01\x13\x2d\xf0\x00\x01\x0d\x2d\xe0\x0f\x12\x88\x73\x90\x34\x98\x18\xd1\x0f\x22\xd4\x0f\x22\xd0\x08\x22", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_fullname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fullname", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_fxn = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fxn", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_19_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - & const_str_fxn._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[4]; - } -importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 3, - }, - .ob_shash = -1, - .ob_sval = "\x20\x20\x80", -}; -static - struct _PyCode_DEF(128) -importlib__bootstrap_toplevel_consts_19_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 64, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_19_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_19_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 254, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_19_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__requires_builtin_wrapper._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_19_consts_1_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_19_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x02\x00\x89\x02\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_19_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_19_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_19_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_19_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__wrap._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__requires_builtin = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_requires_builtin", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[54]; - } -importlib__bootstrap_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 53, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf0\x04\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf5\x0a\x00\x05\x0a\xd0\x0a\x23\xa0\x53\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xd8\x0b\x24\xd0\x04\x24", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_fxn._ascii.ob_base, - & const_str__requires_builtin_wrapper._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -importlib__bootstrap_toplevel_consts_19_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "` ", -}; -static - struct _PyCode_DEF(50) -importlib__bootstrap_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_19_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 252, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__requires_builtin._ascii.ob_base, - .co_qualname = & const_str__requires_builtin._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x89\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[48]; - } -importlib__bootstrap_toplevel_consts_20_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 47, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Decorator to verify the named module is frozen.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -importlib__bootstrap_toplevel_consts_20_consts_1_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "{!r} is not a frozen module", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_20_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_toplevel_consts_20_consts_1_consts_1._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_is_frozen = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "is_frozen", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_20_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__imp._ascii.ob_base, - & const_str_is_frozen._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_format._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str__requires_frozen_wrapper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_requires_frozen_wrapper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[51]; - } -importlib__bootstrap_toplevel_consts_20_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 50, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_requires_frozen.._requires_frozen_wrapper", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[85]; - } -importlib__bootstrap_toplevel_consts_20_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 84, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xdd\x0f\x13\x8f\x7e\x8a\x7e\x98\x68\xd1\x0f\x27\xd4\x0f\x27\xf0\x00\x02\x09\x2d\xdd\x12\x1d\xd0\x1e\x3b\xd7\x1e\x42\xd2\x1e\x42\xc0\x38\xd1\x1e\x4c\xd4\x1e\x4c\xd8\x23\x2b\xf0\x03\x01\x13\x2d\xf1\x00\x01\x13\x2d\xf4\x00\x01\x13\x2d\xf0\x00\x01\x0d\x2d\xe0\x0f\x12\x88\x73\x90\x34\x98\x18\xd1\x0f\x22\xd4\x0f\x22\xd0\x08\x22", -}; -static - struct _PyCode_DEF(152) -importlib__bootstrap_toplevel_consts_20_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 76, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_20_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_20_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 265, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_19_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__requires_frozen_wrapper._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_20_consts_1_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_20_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x02\x00\x89\x02\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_20_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_20_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_20_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__requires_frozen = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_requires_frozen", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[54]; - } -importlib__bootstrap_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 53, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf0\x04\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf0\x00\x04\x05\x23\xf5\x0a\x00\x05\x0a\xd0\x0a\x22\xa0\x43\xd1\x04\x28\xd4\x04\x28\xd0\x04\x28\xd8\x0b\x23\xd0\x04\x23", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_20_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_fxn._ascii.ob_base, - & const_str__requires_frozen_wrapper._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(50) -importlib__bootstrap_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_20_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 263, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__requires_frozen._ascii.ob_base, - .co_qualname = & const_str__requires_frozen._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x89\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[131]; - } -importlib__bootstrap_toplevel_consts_21_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 130, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x4c\x6f\x61\x64\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x6e\x74\x6f\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x69\x74\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x20\x20\x55\x73\x65\x20\x6c\x6f\x61\x64\x65\x72\x2e\x65\x78\x65\x63\x5f\x6d\x6f\x64\x75\x6c\x65\x28\x29\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[104]; - } -importlib__bootstrap_toplevel_consts_21_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 103, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_21_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_21_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_21_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__warnings = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_warnings", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_warn = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "warn", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_DeprecationWarning = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "DeprecationWarning", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_spec_from_loader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spec_from_loader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__exec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_exec", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__load = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_load", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_21_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str__warnings._ascii.ob_base, - & const_str_warn._ascii.ob_base, - & const_str_DeprecationWarning._ascii.ob_base, - & const_str_spec_from_loader._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str__exec._ascii.ob_base, - & const_str__load._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__load_module_shim = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_load_module_shim", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[112]; - } -importlib__bootstrap_toplevel_consts_21_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 111, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0c\x01\x0c\x33\x80\x43\xe5\x04\x0d\x87\x4e\x82\x4e\x90\x33\xd5\x18\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xdd\x0b\x1b\x98\x48\xa0\x64\xd1\x0b\x2b\xd4\x0b\x2b\x80\x44\xd8\x07\x0f\x95\x33\x94\x3b\xd0\x07\x1e\xd0\x07\x1e\xdd\x11\x14\x94\x1b\x98\x58\xd4\x11\x26\x88\x06\xdd\x08\x0d\x88\x64\x90\x46\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xdd\x0f\x12\x8c\x7b\x98\x38\xd4\x0f\x24\xd0\x08\x24\xe5\x0f\x14\x90\x54\x89\x7b\x8c\x7b\xd0\x08\x1a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_spec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spec", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_21_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - &_Py_ID(msg), - & const_str_spec._ascii.ob_base, - & const_str_module._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(264) -importlib__bootstrap_toplevel_consts_21 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 132, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_21_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 275, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__load_module_shim._ascii.ob_base, - .co_qualname = & const_str__load_module_shim._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_21_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7d\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x34\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -importlib__bootstrap_toplevel_consts_22_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "The implementation of ModuleType.__repr__().", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_module_repr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module_repr", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -importlib__bootstrap_toplevel_consts_22_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "?", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -importlib__bootstrap_toplevel_consts_22_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -importlib__bootstrap_toplevel_consts_22_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -importlib__bootstrap_toplevel_consts_22_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib__bootstrap_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_22_consts_0._ascii.ob_base, - &_Py_ID(__loader__), - Py_None, - &_Py_ID(__spec__), - & const_str_module_repr._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_22_consts_5._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_22_consts_6._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_22_consts_7._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_22_consts_8._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str__module_repr_from_spec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_module_repr_from_spec", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_Exception = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Exception", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib__bootstrap_toplevel_consts_22_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(getattr), - & const_str__module_repr_from_spec._ascii.ob_base, - & const_str_hasattr._ascii.ob_base, - & const_str_module_repr._ascii.ob_base, - & const_str_Exception._ascii.ob_base, - &_Py_ID(__name__), - & const_str_AttributeError._ascii.ob_base, - &_Py_ID(__file__), - & const_str_format._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str__module_repr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_module_repr", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[309]; - } -importlib__bootstrap_toplevel_consts_22_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 308, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0d\x14\x90\x56\x98\x5c\xa8\x34\xd1\x0d\x30\xd4\x0d\x30\x80\x46\xdd\x0f\x16\x90\x76\x98\x7a\xa8\x34\xd1\x0f\x30\xd4\x0f\x30\xd0\x07\x30\x80\x74\xf0\x00\x06\x05\x11\xdd\x0f\x25\xa0\x64\xd1\x0f\x2b\xd4\x0f\x2b\xd0\x08\x2b\xdd\x09\x10\x90\x16\x98\x1d\xd1\x09\x27\xd4\x09\x27\xf0\x00\x04\x05\x11\xf0\x02\x03\x09\x11\xd8\x13\x19\xd7\x13\x25\xd2\x13\x25\xa0\x66\xd1\x13\x2d\xd4\x13\x2d\xd0\x0c\x2d\xf8\xdd\x0f\x18\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x03\x05\x13\xd8\x0f\x15\x8c\x7f\x88\x04\x88\x04\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x13\xf0\x00\x01\x05\x13\xf0\x00\x01\x05\x13\xd8\x0f\x12\x88\x04\x88\x04\x88\x04\xf0\x03\x01\x05\x13\xf8\xf8\xf8\xf0\x04\x08\x05\x40\x01\xd8\x13\x19\x94\x3f\x88\x08\xf0\x0e\x00\x10\x29\xd7\x0f\x2f\xd2\x0f\x2f\xb0\x04\xb0\x68\xd1\x0f\x3f\xd4\x0f\x3f\xd0\x08\x3f\xf8\xf5\x0d\x00\x0c\x1a\xf0\x00\x04\x05\x3f\xf0\x00\x04\x05\x3f\xf0\x00\x04\x05\x3f\xd8\x0b\x11\x88\x3e\xd8\x13\x22\xd7\x13\x29\xd2\x13\x29\xa8\x24\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xe0\x13\x29\xd7\x13\x30\xd2\x13\x30\xb0\x14\xb0\x76\xd1\x13\x3e\xd4\x13\x3e\xd0\x0c\x3e\xd0\x0c\x3e\xd0\x0c\x3e\xf0\x09\x04\x05\x3f\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[61]; - } -importlib__bootstrap_toplevel_consts_22_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 60, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x05\x14\x41\x1a\x00\xc1\x1a\x0a\x41\x27\x03\xc1\x26\x01\x41\x27\x03\xc1\x2b\x07\x41\x33\x00\xc1\x33\x0c\x42\x02\x03\xc2\x01\x01\x42\x02\x03\xc2\x06\x07\x42\x23\x00\xc2\x23\x21\x43\x1f\x03\xc3\x06\x16\x43\x1f\x03\xc3\x1e\x01\x43\x1f\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_loader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "loader", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_22_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_module._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_spec._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(filename), - }, - }, -}; -static - struct _PyCode_DEF(452) -importlib__bootstrap_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 226, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_22_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_22_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 294, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__module_repr._ascii.ob_base, - .co_qualname = & const_str__module_repr._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_22_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x03\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x7d\x02\x72\x0f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x26\x09\x00\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x12\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x05\x7d\x03\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x64\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x32\x01\x00\x7c\x01\x80\x17\x64\x07\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x64\x08\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_ModuleSpec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleSpec", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[1489]; - } -importlib__bootstrap_toplevel_consts_23_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1488, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x54\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x20\x66\x6f\x72\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6c\x6f\x61\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x41\x20\x6d\x6f\x64\x75\x6c\x65\x27\x73\x20\x73\x70\x65\x63\x20\x69\x73\x20\x74\x68\x65\x20\x73\x6f\x75\x72\x63\x65\x20\x66\x6f\x72\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x61\x62\x6f\x75\x74\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x20\x46\x6f\x72\x0a\x20\x20\x20\x20\x64\x61\x74\x61\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x6f\x75\x72\x63\x65\x2c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x73\x70\x65\x63\x27\x73\x0a\x20\x20\x20\x20\x6c\x6f\x61\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x60\x6e\x61\x6d\x65\x60\x20\x69\x73\x20\x74\x68\x65\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x6e\x61\x6d\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x20\x60\x6c\x6f\x61\x64\x65\x72\x60\x20\x69\x73\x20\x74\x68\x65\x20\x6c\x6f\x61\x64\x65\x72\x0a\x20\x20\x20\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x6c\x6f\x61\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x20\x60\x70\x61\x72\x65\x6e\x74\x60\x20\x69\x73\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x20\x6f\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x69\x6e\x2e\x20\x20\x54\x68\x65\x20\x70\x61\x72\x65\x6e\x74\x20\x69\x73\x20\x64\x65\x72\x69\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x60\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x60\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x61\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x6f\x72\x0a\x20\x20\x20\x20\x6e\x6f\x74\x2e\x20\x20\x4f\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x74\x68\x69\x73\x20\x69\x73\x20\x72\x65\x66\x6c\x65\x63\x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x60\x5f\x5f\x70\x61\x74\x68\x5f\x5f\x60\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x60\x6f\x72\x69\x67\x69\x6e\x60\x20\x69\x73\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x75\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x6c\x6f\x61\x64\x65\x72\x20\x66\x72\x6f\x6d\x20\x77\x68\x69\x63\x68\x20\x74\x6f\x0a\x20\x20\x20\x20\x6c\x6f\x61\x64\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x20\x69\x66\x20\x74\x68\x61\x74\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x20\x69\x73\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e\x20\x20\x57\x68\x65\x6e\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x69\x73\x0a\x20\x20\x20\x20\x73\x65\x74\x2c\x20\x6f\x72\x69\x67\x69\x6e\x20\x77\x69\x6c\x6c\x20\x6d\x61\x74\x63\x68\x2e\x0a\x0a\x20\x20\x20\x20\x60\x68\x61\x73\x5f\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x60\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x68\x61\x74\x20\x61\x20\x73\x70\x65\x63\x27\x73\x20\x22\x6f\x72\x69\x67\x69\x6e\x22\x20\x72\x65\x66\x6c\x65\x63\x74\x73\x20\x61\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x69\x73\x20\x54\x72\x75\x65\x2c\x20\x60\x5f\x5f\x66\x69\x6c\x65\x5f\x5f\x60\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x73\x65\x74\x2e\x0a\x0a\x20\x20\x20\x20\x60\x63\x61\x63\x68\x65\x64\x60\x20\x69\x73\x20\x74\x68\x65\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x61\x63\x68\x65\x64\x20\x62\x79\x74\x65\x63\x6f\x64\x65\x20\x66\x69\x6c\x65\x2c\x20\x69\x66\x20\x61\x6e\x79\x2e\x20\x20\x49\x74\x0a\x20\x20\x20\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x60\x5f\x5f\x63\x61\x63\x68\x65\x64\x5f\x5f\x60\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x60\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x5f\x73\x65\x61\x72\x63\x68\x5f\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x73\x60\x20\x69\x73\x20\x74\x68\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x20\x6f\x66\x20\x70\x61\x74\x68\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x73\x65\x61\x72\x63\x68\x20\x77\x68\x65\x6e\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x20\x20\x49\x66\x20\x73\x65\x74\x2c\x20\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x0a\x20\x20\x20\x20\x54\x72\x75\x65\x2d\x2d\x61\x6e\x64\x20\x46\x61\x6c\x73\x65\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x2e\x0a\x0a\x20\x20\x20\x20\x50\x61\x63\x6b\x61\x67\x65\x73\x20\x61\x72\x65\x20\x73\x69\x6d\x70\x6c\x79\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x74\x68\x61\x74\x20\x28\x6d\x61\x79\x29\x20\x68\x61\x76\x65\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x20\x20\x49\x66\x20\x61\x20\x73\x70\x65\x63\x0a\x20\x20\x20\x20\x68\x61\x73\x20\x61\x20\x6e\x6f\x6e\x2d\x4e\x6f\x6e\x65\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x20\x60\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x5f\x73\x65\x61\x72\x63\x68\x5f\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x73\x60\x2c\x20\x74\x68\x65\x20\x69\x6d\x70\x6f\x72\x74\x0a\x20\x20\x20\x20\x73\x79\x73\x74\x65\x6d\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x6c\x6f\x61\x64\x65\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x70\x65\x63\x20\x61\x73\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x4f\x6e\x6c\x79\x20\x66\x69\x6e\x64\x65\x72\x73\x20\x28\x73\x65\x65\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x2e\x61\x62\x63\x2e\x4d\x65\x74\x61\x50\x61\x74\x68\x46\x69\x6e\x64\x65\x72\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x2e\x61\x62\x63\x2e\x50\x61\x74\x68\x45\x6e\x74\x72\x79\x46\x69\x6e\x64\x65\x72\x29\x20\x73\x68\x6f\x75\x6c\x64\x20\x6d\x6f\x64\x69\x66\x79\x20\x4d\x6f\x64\x75\x6c\x65\x53\x70\x65\x63\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_origin = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "origin", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_loader_state = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "loader_state", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_is_package = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "is_package", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_origin._ascii.ob_base, - & const_str_loader_state._ascii.ob_base, - & const_str_is_package._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -const_str_submodule_search_locations = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "submodule_search_locations", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__set_fileattr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_set_fileattr", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__cached = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_cached", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(name), - & const_str_loader._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_loader_state._ascii.ob_base, - & const_str_submodule_search_locations._ascii.ob_base, - &_Py_ID(_uninitialized_submodules), - & const_str__set_fileattr._ascii.ob_base, - & const_str__cached._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -importlib__bootstrap_toplevel_consts_23_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleSpec.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[78]; - } -importlib__bootstrap_toplevel_consts_23_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 77, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x14\x18\x88\x04\x8c\x09\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x1c\x28\x88\x04\xd4\x08\x19\xd8\x30\x3a\xd0\x2a\x44\xa8\x22\xa8\x22\xc0\x04\x88\x04\xd4\x08\x27\xd8\x29\x2b\x88\x04\xd4\x08\x26\xf0\x06\x00\x1e\x23\x88\x04\xd4\x08\x1a\xd8\x17\x1b\x88\x04\x8c\x0c\x88\x0c\x88\x0c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(name), - & const_str_loader._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_loader_state._ascii.ob_base, - & const_str_is_package._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[7]; - } -importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 6, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(126) -importlib__bootstrap_toplevel_consts_23_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 63, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 3, - .co_stacksize = 2, - .co_firstlineno = 357, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_4_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x72\x02\x67\x00\x6e\x01\x64\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -importlib__bootstrap_toplevel_consts_23_consts_5_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "name={!r}", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -importlib__bootstrap_toplevel_consts_23_consts_5_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "loader={!r}", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -importlib__bootstrap_toplevel_consts_23_consts_5_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "origin={!r}", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -importlib__bootstrap_toplevel_consts_23_consts_5_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "submodule_search_locations={}", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -importlib__bootstrap_toplevel_consts_23_consts_5_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "{}({})", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_toplevel_consts_23_consts_5_consts_1._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_5_consts_2._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_5_consts_3._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_5_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_5_consts_5._ascii.ob_base, - &_Py_STR(comma_sep), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_format._ascii.ob_base, - &_Py_ID(name), - & const_str_loader._ascii.ob_base, - & const_str_origin._ascii.ob_base, - &_Py_ID(append), - & const_str_submodule_search_locations._ascii.ob_base, - &_Py_ID(__class__), - &_Py_ID(__name__), - &_Py_ID(join), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -importlib__bootstrap_toplevel_consts_23_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleSpec.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[178]; - } -importlib__bootstrap_toplevel_consts_23_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 177, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x10\x1b\xd7\x10\x22\xd2\x10\x22\xa0\x34\xa4\x39\xd1\x10\x2d\xd4\x10\x2d\xd8\x10\x1d\xd7\x10\x24\xd2\x10\x24\xa0\x54\xa4\x5b\xd1\x10\x31\xd4\x10\x31\xf0\x03\x01\x10\x33\x88\x04\xe0\x0b\x0f\x8c\x3b\xd0\x0b\x22\xd8\x0c\x10\x8f\x4b\x8a\x4b\x98\x0d\xd7\x18\x2c\xd2\x18\x2c\xa8\x54\xac\x5b\xd1\x18\x39\xd4\x18\x39\xd1\x0c\x3a\xd4\x0c\x3a\xd0\x0c\x3a\xd8\x0b\x0f\xd4\x0b\x2a\xd0\x0b\x36\xd8\x0c\x10\x8f\x4b\x8a\x4b\xd0\x18\x37\xdf\x19\x1f\x9a\x16\xa0\x04\xd4\x20\x3f\xd1\x19\x40\xd4\x19\x40\xf1\x03\x01\x0d\x42\x01\xf4\x00\x01\x0d\x42\x01\xf0\x00\x01\x0d\x42\x01\xe0\x0f\x17\x8f\x7f\x8a\x7f\x98\x74\x9c\x7e\xd4\x1f\x36\xb8\x04\xbf\x09\xba\x09\xc0\x24\xb9\x0f\xbc\x0f\xd1\x0f\x48\xd4\x0f\x48\xd0\x08\x48", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_args._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(416) -importlib__bootstrap_toplevel_consts_23_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 208, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_5_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 370, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_5_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x67\x02\x7d\x01\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x81\x2d\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x81\x2d\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x05\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_cached = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cached", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_has_location = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "has_location", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_NotImplemented = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "NotImplemented", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_submodule_search_locations._ascii.ob_base, - &_Py_ID(name), - & const_str_loader._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_cached._ascii.ob_base, - & const_str_has_location._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -importlib__bootstrap_toplevel_consts_23_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleSpec.__eq__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[166]; - } -importlib__bootstrap_toplevel_consts_23_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 165, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x13\xd4\x0f\x2e\x88\x04\xf0\x02\x08\x09\x22\xd8\x14\x18\x94\x49\xa0\x15\xa4\x1a\xd2\x14\x2b\xf0\x00\x05\x15\x3c\xd8\x14\x18\x94\x4b\xa0\x35\xa4\x3c\xd2\x14\x2f\xf0\x03\x05\x15\x3c\xe0\x14\x18\x94\x4b\xa0\x35\xa4\x3c\xd2\x14\x2f\xf0\x05\x05\x15\x3c\xf0\x06\x00\x15\x19\x98\x45\xd4\x1c\x3c\xd2\x14\x3c\xf0\x07\x05\x15\x3c\xf0\x08\x00\x15\x19\x94\x4b\xa0\x35\xa4\x3c\xd2\x14\x2f\xf0\x09\x05\x15\x3c\xf0\x0a\x00\x15\x19\xd4\x14\x25\xa8\x15\xd4\x29\x3b\xd2\x14\x3b\xf0\x0b\x05\x0d\x3d\xf8\xf5\x0c\x00\x10\x1e\xf0\x00\x01\x09\x22\xf0\x00\x01\x09\x22\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf0\x03\x01\x09\x22\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -importlib__bootstrap_toplevel_consts_23_consts_6_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\x89\x41\x1a\x41\x24\x00\xc1\x24\x11\x41\x38\x03\xc1\x37\x01\x41\x38\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_other = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "other", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_smsl = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "smsl", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_other._ascii.ob_base, - & const_str_smsl._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(246) -importlib__bootstrap_toplevel_consts_23_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 123, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_23_consts_6_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 380, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__eq__), - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_6_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x4a\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x3a\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x2a\x7c\x02\x7c\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x1f\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x0f\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0a\x01\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str__bootstrap_external = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_bootstrap_external", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str_NotImplementedError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "NotImplementedError", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str__get_cached = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_cached", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str__cached._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str__set_fileattr._ascii.ob_base, - & const_str__bootstrap_external._ascii.ob_base, - & const_str_NotImplementedError._ascii.ob_base, - & const_str__get_cached._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -importlib__bootstrap_toplevel_consts_23_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleSpec.cached", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[70]; - } -importlib__bootstrap_toplevel_consts_23_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 69, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0f\x8c\x3c\xd0\x0b\x1f\xd8\x0f\x13\x8c\x7b\xd0\x0f\x26\xa8\x34\xd4\x2b\x3d\xd0\x0f\x26\xdd\x13\x26\xd0\x13\x2e\xdd\x1a\x2d\xd0\x14\x2d\xdd\x1f\x32\xd7\x1f\x3e\xd2\x1f\x3e\xb8\x74\xbc\x7b\xd1\x1f\x4b\xd4\x1f\x4b\x90\x04\x94\x0c\xd8\x0f\x13\x8c\x7c\xd0\x08\x1b", -}; -static - struct _PyCode_DEF(158) -importlib__bootstrap_toplevel_consts_23_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 79, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 392, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_cached._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_7_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x40\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x81\x39\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x32\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__cached._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[14]; - } -importlib__bootstrap_toplevel_consts_23_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 13, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x17\x1d\x88\x04\x8c\x0c\x88\x0c\x88\x0c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_cached._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(20) -importlib__bootstrap_toplevel_consts_23_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 401, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_cached._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_7_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[33]; - } -importlib__bootstrap_toplevel_consts_23_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 32, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "The name of the module's parent.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_23_consts_9_consts_0._ascii.ob_base, - Py_None, - &_Py_STR(dot), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_rpartition = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "rpartition", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_submodule_search_locations._ascii.ob_base, - &_Py_ID(name), - & const_str_rpartition._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -importlib__bootstrap_toplevel_consts_23_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleSpec.parent", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[49]; - } -importlib__bootstrap_toplevel_consts_23_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 48, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x00\x0c\x10\xd4\x0b\x2a\xd0\x0b\x32\xd8\x13\x17\x94\x39\xd7\x13\x27\xd2\x13\x27\xa8\x03\xd1\x13\x2c\xd4\x13\x2c\xa8\x51\xd4\x13\x2f\xd0\x0c\x2f\xe0\x13\x17\x94\x39\xd0\x0c\x1c", -}; -static - struct _PyCode_DEF(94) -importlib__bootstrap_toplevel_consts_23_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 47, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_9_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 405, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(parent), - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_9_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x20\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__set_fileattr._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -importlib__bootstrap_toplevel_consts_23_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleSpec.has_location", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[12]; - } -importlib__bootstrap_toplevel_consts_23_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 11, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\xd4\x0f\x21\xd0\x08\x21", -}; -static - struct _PyCode_DEF(16) -importlib__bootstrap_toplevel_consts_23_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 413, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_has_location._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_10_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_bool = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bool", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_bool._ascii.ob_base, - & const_str__set_fileattr._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -importlib__bootstrap_toplevel_consts_23_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x1d\x21\xa0\x25\x99\x5b\x9c\x5b\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xd0\x08\x1a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_value = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "value", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(46) -importlib__bootstrap_toplevel_consts_23_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 23, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 417, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_has_location._ascii.ob_base, - .co_qualname = & importlib__bootstrap_toplevel_consts_23_consts_10_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str_ModuleSpec._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_1._ascii.ob_base, - Py_None, - & importlib__bootstrap_toplevel_consts_23_consts_3._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_5.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_6.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_7.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_8.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_9.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_10.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_23_consts_11.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_property = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "property", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_setter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "setter", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -importlib__bootstrap_toplevel_consts_23_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - &_Py_ID(__repr__), - &_Py_ID(__eq__), - & const_str_property._ascii.ob_base, - & const_str_cached._ascii.ob_base, - & const_str_setter._ascii.ob_base, - &_Py_ID(parent), - & const_str_has_location._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[241]; - } -importlib__bootstrap_toplevel_consts_23_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 240, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x22\x05\x08\xf0\x00\x22\x05\x08\xf0\x48\x01\x00\x30\x34\xc0\x24\xd8\x1c\x20\xf0\x03\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x00\x0b\x05\x1c\xf0\x1a\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x14\x0a\x05\x22\xf0\x00\x0a\x05\x22\xf0\x00\x0a\x05\x22\xf0\x18\x00\x06\x0e\xf0\x02\x06\x05\x1c\xf0\x00\x06\x05\x1c\xf1\x03\x00\x06\x0e\x84\x58\xf0\x02\x06\x05\x1c\xf0\x10\x00\x06\x0c\x84\x5d\xf0\x02\x01\x05\x1e\xf0\x00\x01\x05\x1e\xf1\x03\x00\x06\x13\x84\x5d\xf0\x02\x01\x05\x1e\xf0\x06\x00\x06\x0e\xf0\x02\x05\x05\x1d\xf0\x00\x05\x05\x1d\xf1\x03\x00\x06\x0e\x84\x58\xf0\x02\x05\x05\x1d\xf0\x0e\x00\x06\x0e\xf0\x02\x01\x05\x22\xf0\x00\x01\x05\x22\xf1\x03\x00\x06\x0e\x84\x58\xf0\x02\x01\x05\x22\xf0\x06\x00\x06\x12\xd4\x05\x18\xf0\x02\x01\x05\x29\xf0\x00\x01\x05\x29\xf1\x03\x00\x06\x19\xd4\x05\x18\xf0\x02\x01\x05\x29\xf0\x00\x01\x05\x29\xf0\x00\x01\x05\x29", -}; -static - struct _PyCode_DEF(176) -importlib__bootstrap_toplevel_consts_23 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 88, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_23_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 320, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_ModuleSpec._ascii.ob_base, - .co_qualname = & const_str_ModuleSpec._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_23_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x64\x02\x64\x02\x64\x03\x9c\x03\x64\x04\x84\x02\x5a\x04\x64\x05\x84\x00\x5a\x05\x64\x06\x84\x00\x5a\x06\x65\x07\x64\x07\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x65\x08\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x65\x07\x64\x09\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x65\x07\x64\x0a\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x65\x0b\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_25 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_origin._ascii.ob_base, - & const_str_is_package._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[54]; - } -importlib__bootstrap_toplevel_consts_26_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 53, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return a module spec based on various loader methods.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__ORIGIN = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ORIGIN", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_get_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "get_filename", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_26_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_loader._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_26_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_loader._ascii.ob_base, - & const_str_submodule_search_locations._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib__bootstrap_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_26_consts_0._ascii.ob_base, - Py_None, - & const_str__ORIGIN._ascii.ob_base, - & const_str_get_filename._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_26_consts_4._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_26_consts_5._object.ob_base.ob_base, - & const_str_is_package._ascii.ob_base, - Py_False, - & importlib__bootstrap_toplevel_consts_25._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -const_str_spec_from_file_location = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spec_from_file_location", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(getattr), - & const_str_hasattr._ascii.ob_base, - & const_str__bootstrap_external._ascii.ob_base, - & const_str_NotImplementedError._ascii.ob_base, - & const_str_spec_from_file_location._ascii.ob_base, - & const_str_is_package._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_ModuleSpec._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[270]; - } -importlib__bootstrap_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 269, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x07\x0d\x80\x7e\xdd\x11\x18\x98\x16\xa0\x19\xa8\x44\xd1\x11\x31\xd4\x11\x31\x88\x06\xe0\x0b\x11\xf0\x00\x09\x05\x4a\x01\x95\x67\x98\x66\xa0\x6e\xd1\x16\x35\xd4\x16\x35\xf0\x00\x09\x05\x4a\x01\xdd\x0b\x1e\xd0\x0b\x26\xdd\x12\x25\xd0\x0c\x25\xdd\x22\x35\xd4\x22\x4d\xd0\x08\x1f\xe0\x0b\x15\xd0\x0b\x1d\xd8\x13\x2a\xd0\x13\x2a\xa8\x34\xb8\x06\xd0\x13\x3f\xd1\x13\x3f\xd4\x13\x3f\xd0\x0c\x3f\xd8\x17\x21\xd0\x11\x2b\x90\x12\x90\x12\xa0\x74\x88\x06\xd8\x0f\x26\xd0\x0f\x26\xa0\x74\xb0\x46\xd8\x42\x48\xf0\x03\x01\x10\x4a\x01\xf1\x00\x01\x10\x4a\x01\xf4\x00\x01\x10\x4a\x01\xf0\x00\x01\x09\x4a\x01\xf0\x06\x00\x08\x12\xd0\x07\x19\xdd\x0b\x12\x90\x36\x98\x3c\xd1\x0b\x28\xd4\x0b\x28\xf0\x00\x07\x09\x1f\xf0\x02\x03\x0d\x22\xd8\x1d\x23\xd7\x1d\x2e\xd2\x1d\x2e\xa8\x74\xd1\x1d\x34\xd4\x1d\x34\x90\x0a\x90\x0a\xf8\xdd\x13\x1e\xf0\x00\x01\x0d\x22\xf0\x00\x01\x0d\x22\xf0\x00\x01\x0d\x22\xd8\x1d\x21\x90\x0a\x90\x0a\x90\x0a\xf0\x03\x01\x0d\x22\xf8\xf8\xf8\xf0\x08\x00\x1a\x1f\x88\x4a\xe5\x0b\x15\x90\x64\x98\x46\xa8\x36\xb8\x6a\xd0\x0b\x49\xd1\x0b\x49\xd4\x0b\x49\xd0\x04\x49", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -importlib__bootstrap_toplevel_consts_26_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x36\x15\x42\x0c\x00\xc2\x0c\x0c\x42\x1b\x03\xc2\x1a\x01\x42\x1b\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_search = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "search", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -importlib__bootstrap_toplevel_consts_26_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(name), - & const_str_loader._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_is_package._ascii.ob_base, - & const_str_spec_from_file_location._ascii.ob_base, - & const_str_search._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(358) -importlib__bootstrap_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 179, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_26_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 2, - .co_stacksize = 6, - .co_firstlineno = 422, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_spec_from_loader._ascii.ob_base, - .co_qualname = & const_str_spec_from_loader._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x80\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x64\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x73\x4d\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x3d\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x03\x80\x0d\x02\x00\x7c\x04\x7c\x00\x7c\x01\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x03\x72\x02\x67\x00\x6e\x01\x64\x01\x7d\x05\x02\x00\x7c\x04\x7c\x00\x7c\x01\x7c\x05\xac\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x03\x80\x3b\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x29\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x14\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x01\x7d\x03\x59\x00\x6e\x06\x77\x00\x78\x03\x59\x00\x77\x01\x64\x07\x7d\x03\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\xac\x08\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_27_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_origin._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_27_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - & const_str__ORIGIN._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_27_consts_2._object.ob_base.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str___cached__ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__cached__", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_list = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "list", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -importlib__bootstrap_toplevel_consts_27_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - &_Py_ID(__spec__), - & const_str_AttributeError._ascii.ob_base, - &_Py_ID(__name__), - &_Py_ID(__loader__), - &_Py_ID(__file__), - &_Py_ID(getattr), - & const_str___cached__._ascii.ob_base, - & const_str_list._ascii.ob_base, - &_Py_ID(__path__), - & const_str_ModuleSpec._ascii.ob_base, - & const_str__set_fileattr._ascii.ob_base, - & const_str_cached._ascii.ob_base, - & const_str_submodule_search_locations._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__spec_from_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_spec_from_module", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[402]; - } -importlib__bootstrap_toplevel_consts_27_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 401, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x06\x05\x18\xd8\x0f\x15\x8c\x7f\x88\x04\xf0\x08\x00\x0c\x10\xd0\x0b\x1b\xd8\x13\x17\x88\x4b\xf0\x03\x00\x0c\x1c\xf8\xf5\x07\x00\x0c\x1a\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x0c\x00\x0c\x12\x8c\x3f\x80\x44\xd8\x07\x0d\x80\x7e\xf0\x02\x04\x09\x11\xd8\x15\x1b\xd4\x15\x26\x88\x46\x88\x46\xf8\xdd\x0f\x1d\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xe0\x0c\x10\x88\x44\xf0\x05\x02\x09\x11\xf8\xf8\xf8\xf0\x06\x03\x05\x18\xd8\x13\x19\x94\x3f\x88\x08\x88\x08\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x18\xf0\x00\x01\x05\x18\xf0\x00\x01\x05\x18\xd8\x13\x17\x88\x08\x88\x08\x88\x08\xf0\x03\x01\x05\x18\xf8\xf8\xf8\xe0\x07\x0d\x80\x7e\xd8\x0b\x11\xd0\x0b\x1d\xdd\x15\x1c\x98\x56\xa0\x59\xb0\x04\xd1\x15\x35\xd4\x15\x35\x88\x46\xd8\x0f\x15\xf0\x00\x01\x09\x1e\x98\x28\xd0\x1a\x2e\xd8\x15\x1d\x88\x46\xf0\x02\x03\x05\x16\xd8\x11\x17\xd4\x11\x22\x88\x06\x88\x06\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x16\xf0\x00\x01\x05\x16\xf0\x00\x01\x05\x16\xd8\x11\x15\x88\x06\x88\x06\x88\x06\xf0\x03\x01\x05\x16\xf8\xf8\xf8\xf0\x04\x03\x05\x2a\xdd\x25\x29\xa8\x26\xac\x2f\xd1\x25\x3a\xd4\x25\x3a\xd0\x08\x22\xd0\x08\x22\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x2a\xf0\x00\x01\x05\x2a\xf0\x00\x01\x05\x2a\xd8\x25\x29\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22\xf0\x03\x01\x05\x2a\xf8\xf8\xf8\xf5\x06\x00\x0c\x16\x90\x64\x98\x46\xa8\x36\xd0\x0b\x32\xd1\x0b\x32\xd4\x0b\x32\x80\x44\xd8\x22\x2a\xd0\x22\x32\x98\x15\x98\x15\xb8\x16\xc0\x38\xd2\x39\x4b\x80\x44\xd4\x04\x16\xd8\x12\x18\x80\x44\x84\x4b\xd8\x26\x40\x80\x44\xd4\x04\x23\xd8\x0b\x0f\x80\x4b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[79]; - } -importlib__bootstrap_toplevel_consts_27_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 78, - }, - .ob_shash = -1, - .ob_sval = "\x82\x07\x0e\x00\x8e\x0a\x1b\x03\x9a\x01\x1b\x03\xa8\x07\x30\x00\xb0\x0a\x3d\x03\xbc\x01\x3d\x03\xc1\x01\x07\x41\x09\x00\xc1\x09\x0c\x41\x18\x03\xc1\x17\x01\x41\x18\x03\xc1\x37\x07\x41\x3f\x00\xc1\x3f\x0c\x42\x0e\x03\xc2\x0d\x01\x42\x0e\x03\xc2\x12\x14\x42\x27\x00\xc2\x27\x0c\x42\x36\x03\xc2\x35\x01\x42\x36\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_location = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "location", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_27_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_module._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_spec._ascii.ob_base, - &_Py_ID(name), - & const_str_location._ascii.ob_base, - & const_str_cached._ascii.ob_base, - & const_str_submodule_search_locations._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -importlib__bootstrap_toplevel_consts_27_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(468) -importlib__bootstrap_toplevel_consts_27 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 234, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_27_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_27_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_27_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 451, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__spec_from_module._ascii.ob_base, - .co_qualname = & const_str__spec_from_module._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_27_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x81\x02\x7c\x03\x53\x00\x6e\x10\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x01\x80\x19\x09\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x10\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x00\x7d\x05\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x80\x19\x7c\x01\x81\x11\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x73\x04\x7c\x05\x81\x02\x7c\x05\x7d\x02\x09\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x00\x7d\x06\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x00\x7d\x07\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x01\x7c\x02\xac\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x05\x80\x02\x64\x03\x6e\x05\x7c\x02\x7c\x05\x6b\x02\x00\x00\x00\x00\x7c\x03\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x03\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x03\x5f\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_override = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "override", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_29 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_override._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_30_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - Py_None, - &_Py_ID(__name__), - &_Py_ID(__loader__), - &_Py_ID(__package__), - &_Py_ID(__path__), - &_Py_ID(__file__), - & const_str___cached__._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_NamespaceLoader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "NamespaceLoader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_path", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[21]; - }_object; - } -importlib__bootstrap_toplevel_consts_30_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 21, - }, - .ob_item = { - &_Py_ID(getattr), - &_Py_ID(name), - &_Py_ID(__name__), - & const_str_AttributeError._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_submodule_search_locations._ascii.ob_base, - & const_str__bootstrap_external._ascii.ob_base, - & const_str_NotImplementedError._ascii.ob_base, - & const_str_NamespaceLoader._ascii.ob_base, - &_Py_ID(__new__), - & const_str__path._ascii.ob_base, - &_Py_ID(__file__), - &_Py_ID(__loader__), - &_Py_ID(parent), - &_Py_ID(__package__), - &_Py_ID(__spec__), - &_Py_ID(__path__), - & const_str_has_location._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_cached._ascii.ob_base, - & const_str___cached__._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str__init_module_attrs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_init_module_attrs", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[623]; - } -importlib__bootstrap_toplevel_consts_30_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 622, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x09\x11\xf0\x00\x04\x05\x11\x95\x47\x98\x46\xa0\x4a\xb0\x04\xd1\x14\x35\xd4\x14\x35\xd0\x14\x3d\xf0\x02\x03\x09\x11\xd8\x1e\x22\x9c\x69\x88\x46\x8c\x4f\x88\x4f\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x00\x08\x10\xf0\x00\x1a\x05\x11\x95\x37\x98\x36\xa0\x3c\xb0\x14\xd1\x13\x36\xd4\x13\x36\xd0\x13\x3e\xd8\x11\x15\x94\x1b\x88\x06\xd8\x0b\x11\x88\x3e\xe0\x0f\x13\xd4\x0f\x2e\xd0\x0f\x3a\xdd\x13\x26\xd0\x13\x2e\xdd\x1a\x2d\xd0\x14\x2d\xdd\x22\x35\xd4\x22\x45\x90\x0f\xe0\x19\x28\xd7\x19\x30\xd2\x19\x30\xb0\x1f\xd1\x19\x41\xd4\x19\x41\x90\x06\xd8\x1f\x23\xd4\x1f\x3e\x90\x06\x94\x0c\xd8\x1e\x24\x90\x04\x94\x0b\xf0\x16\x00\x23\x27\x90\x06\x94\x0f\xf0\x02\x03\x09\x11\xd8\x20\x26\x88\x46\xd4\x0c\x1d\xd0\x0c\x1d\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x00\x08\x10\xf0\x00\x04\x05\x11\x95\x37\x98\x36\xa0\x3d\xb0\x24\xd1\x13\x37\xd4\x13\x37\xd0\x13\x3f\xf0\x02\x03\x09\x11\xd8\x21\x25\xa4\x1b\x88\x46\xd4\x0c\x1e\xd0\x0c\x1e\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x06\x03\x05\x0d\xd8\x1a\x1e\x88\x06\x8c\x0f\x88\x0f\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x06\x00\x08\x10\xf0\x00\x06\x05\x15\x95\x37\x98\x36\xa0\x3a\xa8\x74\xd1\x13\x34\xd4\x13\x34\xd0\x13\x3c\xd8\x0b\x0f\xd4\x0b\x2a\xd0\x0b\x36\xf0\x04\x03\x0d\x15\xd8\x22\x26\xd4\x22\x41\x90\x06\x94\x0f\x90\x0f\xf8\xdd\x13\x21\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x06\x00\x08\x0c\xd4\x07\x18\xf0\x00\x0c\x05\x19\xd8\x0b\x13\xf0\x00\x04\x09\x15\x95\x77\x98\x76\xa0\x7a\xb0\x34\xd1\x17\x38\xd4\x17\x38\xd0\x17\x40\xf0\x02\x03\x0d\x15\xd8\x22\x26\xa4\x2b\x90\x06\x94\x0f\x90\x0f\xf8\xdd\x13\x21\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x06\x00\x0c\x14\xf0\x00\x05\x09\x19\x95\x77\x98\x76\xa0\x7c\xb0\x54\xd1\x17\x3a\xd4\x17\x3a\xd0\x17\x42\xd8\x0f\x13\x8c\x7b\xd0\x0f\x26\xf0\x02\x03\x11\x19\xd8\x28\x2c\xac\x0b\x90\x46\xd4\x14\x25\xd0\x14\x25\xf8\xdd\x17\x25\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xd8\x14\x18\x90\x44\xf0\x03\x01\x11\x19\xf8\xf8\xf8\xe0\x0b\x11\x80\x4d", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[121]; - } -importlib__bootstrap_toplevel_consts_30_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 120, - }, - .ob_shash = -1, - .ob_sval = "\x95\x0c\x22\x00\xa2\x0a\x2f\x03\xae\x01\x2f\x03\xc2\x1f\x07\x42\x27\x00\xc2\x27\x0a\x42\x34\x03\xc2\x33\x01\x42\x34\x03\xc3\x0b\x0c\x43\x18\x00\xc3\x18\x0a\x43\x25\x03\xc3\x24\x01\x43\x25\x03\xc3\x29\x07\x43\x31\x00\xc3\x31\x0a\x43\x3e\x03\xc3\x3d\x01\x43\x3e\x03\xc4\x1c\x0c\x44\x29\x00\xc4\x29\x0a\x44\x36\x03\xc4\x35\x01\x44\x36\x03\xc5\x14\x0c\x45\x21\x00\xc5\x21\x0a\x45\x2e\x03\xc5\x2d\x01\x45\x2e\x03\xc6\x0c\x0c\x46\x19\x00\xc6\x19\x0a\x46\x26\x03\xc6\x25\x01\x46\x26\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_30_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_spec._ascii.ob_base, - & const_str_module._ascii.ob_base, - & const_str_override._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_NamespaceLoader._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(854) -importlib__bootstrap_toplevel_consts_30 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 427, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_30_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_30_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_30_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 1, - .co_stacksize = 5, - .co_firstlineno = 493, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_30_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__init_module_attrs._ascii.ob_base, - .co_qualname = & const_str__init_module_attrs._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_30_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x72\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x80\x50\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x81\x49\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x01\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x7c\x03\x7c\x01\x5f\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x00\x7c\x01\x5f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x04\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x25\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x81\x1e\x09\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x10\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x6a\x11\x00\x00\x00\x00\x00\x00\x00\x00\x72\x69\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x05\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x12\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x73\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x06\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x25\x7c\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x81\x1e\x09\x00\x7c\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x14\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[44]; - } -importlib__bootstrap_toplevel_consts_31_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 43, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Create a module based on the provided spec.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_create_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "create_module", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_exec_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exec_module", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[67]; - } -importlib__bootstrap_toplevel_consts_31_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 66, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "loaders that define exec_module() must also define create_module()", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_31_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_31_consts_0._ascii.ob_base, - Py_None, - & const_str_create_module._ascii.ob_base, - & const_str_exec_module._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_31_consts_4._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_31_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_hasattr._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_create_module._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str__new_module._ascii.ob_base, - &_Py_ID(name), - & const_str__init_module_attrs._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_module_from_spec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module_from_spec", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[139]; - } -importlib__bootstrap_toplevel_consts_31_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 138, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x00\x0e\x12\x80\x46\xdd\x07\x0e\x88\x74\x8c\x7b\x98\x4f\xd1\x07\x2c\xd4\x07\x2c\xf0\x00\x06\x05\x3e\xf0\x06\x00\x12\x16\x94\x1b\xd7\x11\x2a\xd2\x11\x2a\xa8\x34\xd1\x11\x30\xd4\x11\x30\x88\x06\x88\x06\xdd\x09\x10\x90\x14\x94\x1b\x98\x6d\xd1\x09\x2c\xd4\x09\x2c\xf0\x00\x02\x05\x3e\xdd\x0e\x19\xf0\x00\x01\x1b\x3d\xf1\x00\x01\x0f\x3e\xf4\x00\x01\x0f\x3e\xf0\x00\x01\x09\x3e\xe0\x07\x0d\x80\x7e\xdd\x11\x1c\x98\x54\x9c\x59\xd1\x11\x27\xd4\x11\x27\x88\x06\xdd\x04\x16\x90\x74\x98\x56\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x0b\x11\x80\x4d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_31_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_spec._ascii.ob_base, - & const_str_module._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(254) -importlib__bootstrap_toplevel_consts_31 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 127, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_31_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_31_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 566, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_module_from_spec._ascii.ob_base, - .co_qualname = & const_str_module_from_spec._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_31_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x24\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x80\x14\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -importlib__bootstrap_toplevel_consts_32_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the repr to use for the module.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -importlib__bootstrap_toplevel_consts_32_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_32_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_32_consts_0._ascii.ob_base, - Py_None, - & importlib__bootstrap_toplevel_consts_22_consts_5._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_22_consts_7._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_22_consts_8._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_22_consts_6._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_32_consts_6._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib__bootstrap_toplevel_consts_32_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(name), - & const_str_origin._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_format._ascii.ob_base, - & const_str_has_location._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[145]; - } -importlib__bootstrap_toplevel_consts_32_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 144, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x00\x13\x17\x94\x29\xd0\x12\x23\x88\x33\x88\x33\xa8\x14\xac\x19\x80\x44\xd8\x07\x0b\x84\x7b\xd0\x07\x1a\xd8\x0b\x0f\x8c\x3b\xd0\x0b\x1e\xd8\x13\x22\xd7\x13\x29\xd2\x13\x29\xa8\x24\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f\xe0\x13\x29\xd7\x13\x30\xd2\x13\x30\xb0\x14\xb0\x74\xb4\x7b\xd1\x13\x43\xd4\x13\x43\xd0\x0c\x43\xe0\x0b\x0f\xd4\x0b\x1c\xf0\x00\x03\x09\x47\x01\xd8\x13\x2c\xd7\x13\x33\xd2\x13\x33\xb0\x44\xb8\x24\xbc\x2b\xd1\x13\x46\xd4\x13\x46\xd0\x0c\x46\xe0\x13\x27\xd7\x13\x2e\xd2\x13\x2e\xa8\x74\xac\x79\xb8\x24\xbc\x2b\xd1\x13\x46\xd4\x13\x46\xd0\x0c\x46", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_32_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_spec._ascii.ob_base, - &_Py_ID(name), - }, - }, -}; -static - struct _PyCode_DEF(290) -importlib__bootstrap_toplevel_consts_32 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 145, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_32_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_32_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 583, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__module_repr_from_spec._ascii.ob_base, - .co_qualname = & const_str__module_repr_from_spec._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_32_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x02\x64\x02\x6e\x06\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x80\x37\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x80\x15\x64\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x04\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x64\x05\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x06\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[71]; - } -importlib__bootstrap_toplevel_consts_33_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 70, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Execute the spec's specified module in an existing module's namespace.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -importlib__bootstrap_toplevel_consts_33_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module {!r} not in sys.modules", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -importlib__bootstrap_toplevel_consts_33_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "missing loader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[56]; - } -importlib__bootstrap_toplevel_consts_33_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 55, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ".exec_module() not found; falling back to load_module()", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib__bootstrap_toplevel_consts_33_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_33_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_33_consts_1._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - Py_None, - & importlib__bootstrap_toplevel_consts_33_consts_4._ascii.ob_base, - Py_True, - & importlib__bootstrap_toplevel_consts_29._object.ob_base.ob_base, - & const_str_exec_module._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_33_consts_8._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_ImportWarning = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ImportWarning", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_load_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "load_module", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_pop = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pop", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[18]; - }_object; - } -importlib__bootstrap_toplevel_consts_33_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 18, - }, - .ob_item = { - &_Py_ID(name), - & const_str__ModuleLockManager._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - &_Py_ID(get), - & const_str_format._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_submodule_search_locations._ascii.ob_base, - & const_str__init_module_attrs._ascii.ob_base, - & const_str_hasattr._ascii.ob_base, - & const_str__object_name._ascii.ob_base, - & const_str__warnings._ascii.ob_base, - & const_str_warn._ascii.ob_base, - & const_str_ImportWarning._ascii.ob_base, - & const_str_load_module._ascii.ob_base, - & const_str_exec_module._ascii.ob_base, - & const_str_pop._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[478]; - } -importlib__bootstrap_toplevel_consts_33_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 477, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0f\x8c\x39\x80\x44\xdd\x09\x1b\x98\x44\xd1\x09\x21\xd4\x09\x21\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xdd\x0b\x0e\x8c\x3b\x8f\x3f\x8a\x3f\x98\x34\xd1\x0b\x20\xd4\x0b\x20\xa8\x06\xd0\x0b\x2e\xd0\x0b\x2e\xd8\x12\x32\xd7\x12\x39\xd2\x12\x39\xb8\x24\xd1\x12\x3f\xd4\x12\x3f\x88\x43\xdd\x12\x1d\x98\x63\xa8\x04\xd0\x12\x2d\xd1\x12\x2d\xd4\x12\x2d\xd0\x0c\x2d\xf0\x02\x13\x09\x2c\xd8\x0f\x13\x8c\x7b\xd0\x0f\x22\xd8\x13\x17\xd4\x13\x32\xd0\x13\x3a\xdd\x1a\x25\xd0\x26\x36\xb8\x54\xbc\x59\xd0\x1a\x47\xd1\x1a\x47\xd4\x1a\x47\xd0\x14\x47\xe5\x10\x22\xa0\x34\xa8\x16\xb8\x24\xd0\x10\x3f\xd1\x10\x3f\xd4\x10\x3f\xd0\x10\x3f\xd0\x10\x3f\xe5\x10\x22\xa0\x34\xa8\x16\xb8\x24\xd0\x10\x3f\xd1\x10\x3f\xd4\x10\x3f\xd0\x10\x3f\xdd\x17\x1e\x98\x74\x9c\x7b\xa8\x4d\xd1\x17\x3a\xd4\x17\x3a\xf0\x00\x06\x11\x34\xdd\x1e\x2a\xa8\x34\xac\x3b\xd1\x1e\x37\xd4\x1e\x37\xf0\x00\x01\x1c\x3b\xf0\x00\x01\x1c\x3b\xf0\x00\x01\x1c\x3b\x90\x43\xe5\x14\x1d\x97\x4e\x92\x4e\xa0\x33\xad\x0d\xd1\x14\x36\xd4\x14\x36\xd0\x14\x36\xd8\x14\x18\x94\x4b\xd7\x14\x2b\xd2\x14\x2b\xa8\x44\xd1\x14\x31\xd4\x14\x31\xd0\x14\x31\xd0\x14\x31\xe0\x14\x18\x94\x4b\xd7\x14\x2b\xd2\x14\x2b\xa8\x46\xd1\x14\x33\xd4\x14\x33\xd0\x14\x33\xf5\x08\x00\x16\x19\x94\x5b\x97\x5f\x92\x5f\xa0\x54\xa4\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x25\x2b\x8d\x43\x8c\x4b\x98\x04\x9c\x09\xd1\x0c\x22\xd0\x0c\x22\xf8\xf5\x03\x00\x16\x19\x94\x5b\x97\x5f\x92\x5f\xa0\x54\xa4\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x25\x2b\x8d\x43\x8c\x4b\x98\x04\x9c\x09\xd1\x0c\x22\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x22\xf0\x2f\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf1\x00\x17\x05\x2c\xf4\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf8\xf8\xf8\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x00\x17\x05\x2c\xf0\x30\x00\x0c\x12\x80\x4d", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[44]; - } -importlib__bootstrap_toplevel_consts_33_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 43, - }, - .ob_shash = -1, - .ob_sval = "\x97\x41\x08\x46\x2d\x03\xc1\x20\x43\x0a\x45\x23\x02\xc4\x2a\x39\x46\x2d\x03\xc5\x23\x3a\x46\x1d\x05\xc6\x1d\x03\x46\x2d\x03\xc6\x2d\x04\x46\x31\x07\xc6\x34\x01\x46\x31\x07", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib__bootstrap_toplevel_consts_33_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_spec._ascii.ob_base, - & const_str_module._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(msg), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -importlib__bootstrap_toplevel_consts_33_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(884) -importlib__bootstrap_toplevel_consts_33 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 442, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_33_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_33_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_33_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 600, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_33_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__exec._ascii.ob_base, - .co_qualname = & const_str__exec._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_33_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x75\x01\x72\x26\x64\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x02\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x80\x30\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x80\x16\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x05\xac\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x93\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x05\xac\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x52\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x08\x9d\x02\x7d\x03\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x6e\x3d\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x03\x64\x03\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib__bootstrap_toplevel_consts_34_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - Py_None, - &_Py_ID(__loader__), - &_Py_ID(__package__), - &_Py_ID(__path__), - &_Py_STR(dot), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - &_Py_ID(__spec__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -importlib__bootstrap_toplevel_consts_34_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - & const_str_loader._ascii.ob_base, - & const_str_load_module._ascii.ob_base, - &_Py_ID(name), - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str_pop._ascii.ob_base, - &_Py_ID(getattr), - &_Py_ID(__loader__), - & const_str_AttributeError._ascii.ob_base, - &_Py_ID(__name__), - &_Py_ID(__package__), - & const_str_hasattr._ascii.ob_base, - & const_str_rpartition._ascii.ob_base, - &_Py_ID(__spec__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -const_str__load_backward_compatible = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_load_backward_compatible", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[387]; - } -importlib__bootstrap_toplevel_consts_34_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 386, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x06\x05\x0e\xd8\x08\x0c\x8c\x0b\xd7\x08\x1f\xd2\x08\x1f\xa0\x04\xa4\x09\xd1\x08\x2a\xd4\x08\x2a\xd0\x08\x2a\xd0\x08\x2a\xf8\xf0\x02\x04\x05\x0e\xd8\x0b\x0f\x8c\x39\x9d\x03\x9c\x0b\xd0\x0b\x23\xd0\x0b\x23\xdd\x15\x18\x94\x5b\x97\x5f\x92\x5f\xa0\x54\xa4\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x25\x2b\x8d\x43\x8c\x4b\x98\x04\x9c\x09\xd1\x0c\x22\xd8\x08\x0d\xf8\xf8\xf8\xf5\x06\x00\x0e\x11\x8c\x5b\x8f\x5f\x8a\x5f\x98\x54\x9c\x59\xd1\x0d\x27\xd4\x0d\x27\x80\x46\xd8\x1d\x23\x85\x43\x84\x4b\x90\x04\x94\x09\xd1\x04\x1a\xdd\x07\x0e\x88\x76\x90\x7c\xa0\x54\xd1\x07\x2a\xd4\x07\x2a\xd0\x07\x32\xf0\x02\x03\x09\x11\xd8\x20\x24\xa4\x0b\x88\x46\xd4\x0c\x1d\xd0\x0c\x1d\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe5\x07\x0e\x88\x76\x90\x7d\xa0\x64\xd1\x07\x2b\xd4\x07\x2b\xd0\x07\x33\xf0\x02\x08\x09\x11\xf0\x08\x00\x22\x28\xa4\x1f\x88\x46\xd4\x0c\x1e\xdd\x13\x1a\x98\x36\xa0\x3a\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x42\x01\xd8\x25\x29\xa4\x59\xd7\x25\x39\xd2\x25\x39\xb8\x23\xd1\x25\x3e\xd4\x25\x3e\xb8\x71\xd4\x25\x41\x90\x06\xd4\x10\x22\xf8\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe5\x07\x0e\x88\x76\x90\x7a\xa0\x34\xd1\x07\x28\xd4\x07\x28\xd0\x07\x30\xf0\x02\x03\x09\x11\xd8\x1e\x22\x88\x46\x8c\x4f\x88\x4f\xf8\xdd\x0f\x1d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe0\x0b\x11\x80\x4d", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[66]; - } -importlib__bootstrap_toplevel_consts_34_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 65, - }, - .ob_shash = -1, - .ob_sval = "\x82\x1f\x22\x00\xa2\x41\x0e\x41\x30\x03\xc2\x3d\x0c\x43\x0a\x00\xc3\x0a\x0a\x43\x17\x03\xc3\x16\x01\x43\x17\x03\xc3\x2c\x41\x01\x44\x2e\x00\xc4\x2e\x0a\x44\x3b\x03\xc4\x3a\x01\x44\x3b\x03\xc5\x10\x07\x45\x18\x00\xc5\x18\x0a\x45\x25\x03\xc5\x24\x01\x45\x25\x03", -}; -static - struct _PyCode_DEF(724) -importlib__bootstrap_toplevel_consts_34 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 362, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_34_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_34_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_34_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 630, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__load_backward_compatible._ascii.ob_base, - .co_qualname = & const_str__load_backward_compatible._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_34_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x51\x23\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x38\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x82\x00\x78\x03\x59\x00\x77\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x53\x09\x00\x7c\x01\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x25\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x06\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x19\x09\x00\x7c\x00\x7c\x01\x5f\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x10\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -importlib__bootstrap_toplevel_consts_35_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "import {!r} # {!r}", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib__bootstrap_toplevel_consts_35_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - Py_None, - & const_str_exec_module._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_33_consts_8._ascii.ob_base, - Py_True, - & importlib__bootstrap_toplevel_consts_33_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_35_consts_6._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[18]; - }_object; - } -importlib__bootstrap_toplevel_consts_35_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 18, - }, - .ob_item = { - & const_str_loader._ascii.ob_base, - & const_str_hasattr._ascii.ob_base, - & const_str__object_name._ascii.ob_base, - & const_str__warnings._ascii.ob_base, - & const_str_warn._ascii.ob_base, - & const_str_ImportWarning._ascii.ob_base, - & const_str__load_backward_compatible._ascii.ob_base, - & const_str_module_from_spec._ascii.ob_base, - &_Py_ID(_initializing), - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - &_Py_ID(name), - & const_str_submodule_search_locations._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_exec_module._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - & const_str_pop._ascii.ob_base, - & const_str__verbose_message._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__load_unlocked = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_load_unlocked", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[371]; - } -importlib__bootstrap_toplevel_consts_35_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 370, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x07\x0b\x84\x7b\xd0\x07\x1e\xe5\x0f\x16\x90\x74\x94\x7b\xa0\x4d\xd1\x0f\x32\xd4\x0f\x32\xf0\x00\x04\x09\x33\xdd\x16\x22\xa0\x34\xa4\x3b\xd1\x16\x2f\xd4\x16\x2f\xf0\x00\x01\x14\x34\xf0\x00\x01\x14\x34\xf0\x00\x01\x14\x34\x88\x43\xe5\x0c\x15\x8f\x4e\x8a\x4e\x98\x33\xa5\x0d\xd1\x0c\x2e\xd4\x0c\x2e\xd0\x0c\x2e\xdd\x13\x2c\xa8\x54\xd1\x13\x32\xd4\x13\x32\xd0\x0c\x32\xe5\x0d\x1d\x98\x64\xd1\x0d\x23\xd4\x0d\x23\x80\x46\xf0\x0a\x00\x1a\x1e\x80\x44\xd4\x04\x16\xf0\x02\x17\x05\x23\xd8\x21\x27\x8d\x03\x8c\x0b\x90\x44\x94\x49\xd1\x08\x1e\xf0\x02\x0c\x09\x12\xd8\x0f\x13\x8c\x7b\xd0\x0f\x22\xd8\x13\x17\xd4\x13\x32\xd0\x13\x3a\xdd\x1a\x25\xd0\x26\x36\xb8\x54\xbc\x59\xd0\x1a\x47\xd1\x1a\x47\xd4\x1a\x47\xd0\x14\x47\xf0\x03\x00\x14\x3b\xf0\x08\x00\x11\x15\x94\x0b\xd7\x10\x27\xd2\x10\x27\xa8\x06\xd1\x10\x2f\xd4\x10\x2f\xd0\x10\x2f\xf8\xf8\xf0\x02\x05\x09\x12\xf0\x02\x03\x0d\x15\xdd\x14\x17\x94\x4b\xa0\x04\xa4\x09\xd0\x14\x2a\xd0\x14\x2a\xf8\xdd\x13\x1b\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xe0\x0c\x11\xf8\xf8\xf8\xf5\x0a\x00\x12\x15\x94\x1b\x97\x1f\x92\x1f\xa0\x14\xa4\x19\xd1\x11\x2b\xd4\x11\x2b\x88\x06\xd8\x21\x27\x8d\x03\x8c\x0b\x90\x44\x94\x49\xd1\x08\x1e\xdd\x08\x18\xd0\x19\x2d\xa8\x74\xac\x79\xb8\x24\xbc\x2b\xd1\x08\x46\xd4\x08\x46\xd0\x08\x46\xe0\x1d\x22\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xf8\x98\x55\x88\x04\xd4\x08\x1a\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22\xe0\x0b\x11\x80\x4d", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[74]; - } -importlib__bootstrap_toplevel_consts_35_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 73, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x3a\x14\x45\x14\x00\xc2\x0f\x3f\x43\x0f\x00\xc3\x0e\x01\x45\x14\x00\xc3\x0f\x02\x43\x36\x03\xc3\x12\x12\x43\x25\x02\xc3\x24\x01\x43\x36\x03\xc3\x25\x0a\x43\x32\x05\xc3\x2f\x02\x43\x36\x03\xc3\x31\x01\x43\x32\x05\xc3\x32\x04\x43\x36\x03\xc3\x36\x41\x16\x45\x14\x00\xc5\x14\x09\x45\x1d\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_35_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_spec._ascii.ob_base, - &_Py_ID(msg), - & const_str_module._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(708) -importlib__bootstrap_toplevel_consts_35 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 354, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_35_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_35_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_35_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 666, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_35_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__load_unlocked._ascii.ob_base, - .co_qualname = & const_str__load_unlocked._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_35_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x81\x5b\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x46\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x9d\x02\x7d\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x03\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1e\x7c\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x80\x16\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x6e\x1a\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x2a\x23\x00\x01\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x6e\x10\x23\x00\x74\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x82\x00\x78\x03\x59\x00\x77\x01\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x7c\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x07\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x0c\x23\x00\x64\x07\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[192]; - } -importlib__bootstrap_toplevel_consts_36_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 191, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x61\x20\x6e\x65\x77\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6c\x6f\x61\x64\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x73\x70\x65\x63\x27\x73\x20\x6c\x6f\x61\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x69\x74\x73\x20\x70\x61\x72\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x69\x6e\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2c\x20\x74\x68\x61\x74\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x6d\x6f\x64\x75\x6c\x65\x20\x67\x65\x74\x73\x0a\x20\x20\x20\x20\x63\x6c\x6f\x62\x62\x65\x72\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib__bootstrap_toplevel_consts_36_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_36_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib__bootstrap_toplevel_consts_36_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str__ModuleLockManager._ascii.ob_base, - &_Py_ID(name), - & const_str__load_unlocked._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[132]; - } -importlib__bootstrap_toplevel_consts_36_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 131, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x12\x00\x0a\x1c\x98\x44\x9c\x49\xd1\x09\x26\xd4\x09\x26\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xdd\x0f\x1d\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xf0\x03\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf1\x00\x01\x05\x24\xf4\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf8\xf8\xf8\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -importlib__bootstrap_toplevel_consts_36_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x95\x0f\x31\x03\xb1\x04\x35\x07\xb8\x01\x35\x07", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib__bootstrap_toplevel_consts_36_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_spec._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(124) -importlib__bootstrap_toplevel_consts_36 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 62, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_36_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_36_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib__bootstrap_toplevel_consts_36_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 711, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_36_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib__bootstrap_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__load._ascii.ob_base, - .co_qualname = & const_str__load._ascii.ob_base, - .co_linetable = & importlib__bootstrap_toplevel_consts_36_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_BuiltinImporter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BuiltinImporter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[145]; - } -importlib__bootstrap_toplevel_consts_37_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 144, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x4d\x65\x74\x61\x20\x70\x61\x74\x68\x20\x69\x6d\x70\x6f\x72\x74\x20\x66\x6f\x72\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x41\x6c\x6c\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x61\x72\x65\x20\x65\x69\x74\x68\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x73\x74\x61\x74\x69\x63\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x74\x6f\x20\x61\x76\x6f\x69\x64\x20\x74\x68\x65\x20\x6e\x65\x65\x64\x20\x74\x6f\x0a\x20\x20\x20\x20\x69\x6e\x73\x74\x61\x6e\x74\x69\x61\x74\x65\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -importlib__bootstrap_toplevel_consts_37_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "built-in", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[116]; - } -importlib__bootstrap_toplevel_consts_37_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 115, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x72\x65\x70\x72\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x20\x20\x54\x68\x65\x20\x69\x6d\x70\x6f\x72\x74\x20\x6d\x61\x63\x68\x69\x6e\x65\x72\x79\x20\x64\x6f\x65\x73\x20\x74\x68\x65\x20\x6a\x6f\x62\x20\x69\x74\x73\x65\x6c\x66\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[82]; - } -importlib__bootstrap_toplevel_consts_37_consts_3_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 81, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BuiltinImporter.module_repr() is deprecated and slated for removal in Python 3.12", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -importlib__bootstrap_toplevel_consts_37_consts_3_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_11_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & zipimport_toplevel_consts_11_consts_15_consts_1._ascii.ob_base, - & zipimport_toplevel_consts_11_consts_15_consts_2._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_11_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_archive._ascii.ob_base, - & const_str_path_sep._ascii.ob_base, - & const_str_prefix._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -zipimport_toplevel_consts_11_consts_15_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zipimporter.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -zipimport_toplevel_consts_11_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x4e\xa0\x74\xa4\x7c\xd0\x0f\x4e\xb5\x58\xd0\x0f\x4e\xb8\x74\xbc\x7b\xd0\x0f\x4e\xd0\x0f\x4e\xd0\x0f\x4e\xd0\x08\x4e", -}; -static - struct _PyCode_DEF(52) -zipimport_toplevel_consts_11_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & zipimport_toplevel_consts_11_consts_15_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_11_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 339, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & zipimport_toplevel_consts_11_consts_15_qualname._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_11_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x9d\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -zipimport_toplevel_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - &_Py_ID(zipimporter), - & zipimport_toplevel_consts_11_consts_1._ascii.ob_base, - & zipimport_toplevel_consts_11_consts_2.ob_base.ob_base, - Py_None, - & zipimport_toplevel_consts_11_consts_4.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_5.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_6.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_7.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_8.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_9.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_10.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_11.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_12.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_13.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_14.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_15.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -zipimport_toplevel_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - & const_str_find_loader._ascii.ob_base, - & const_str_find_module._ascii.ob_base, - & const_str_find_spec._ascii.ob_base, - & const_str_get_code._ascii.ob_base, - & const_str_get_data._ascii.ob_base, - & const_str_get_filename._ascii.ob_base, - &_Py_ID(get_source), - & const_str_is_package._ascii.ob_base, - & const_str_load_module._ascii.ob_base, - & const_str_get_resource_reader._ascii.ob_base, - & const_str_invalidate_caches._ascii.ob_base, - &_Py_ID(__repr__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[249]; - } -zipimport_toplevel_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 248, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0c\x05\x08\xf0\x00\x0c\x05\x08\xf0\x22\x25\x05\x24\xf0\x00\x25\x05\x24\xf0\x00\x25\x05\x24\xf0\x5a\x01\x20\x05\x18\xf0\x00\x20\x05\x18\xf0\x00\x20\x05\x18\xf0\x00\x20\x05\x18\xf0\x4a\x01\x0e\x05\x33\xf0\x00\x0e\x05\x33\xf0\x00\x0e\x05\x33\xf0\x00\x0e\x05\x33\xf0\x20\x19\x05\x1c\xf0\x00\x19\x05\x1c\xf0\x00\x19\x05\x1c\xf0\x00\x19\x05\x1c\xf0\x36\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x14\x11\x05\x32\xf0\x00\x11\x05\x32\xf0\x00\x11\x05\x32\xf0\x2a\x09\x05\x17\xf0\x00\x09\x05\x17\xf0\x00\x09\x05\x17\xf0\x18\x16\x05\x3b\xf0\x00\x16\x05\x3b\xf0\x00\x16\x05\x3b\xf0\x34\x09\x05\x12\xf0\x00\x09\x05\x12\xf0\x00\x09\x05\x12\xf0\x1a\x28\x05\x13\xf0\x00\x28\x05\x13\xf0\x00\x28\x05\x13\xf0\x56\x01\x0c\x05\x29\xf0\x00\x0c\x05\x29\xf0\x00\x0c\x05\x29\xf0\x1e\x07\x05\x1d\xf0\x00\x07\x05\x1d\xf0\x00\x07\x05\x1d\xf0\x14\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01\xf0\x00\x01\x05\x4f\x01", -}; -static - struct _PyCode_DEF(102) -zipimport_toplevel_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 51, - }, - .co_consts = & zipimport_toplevel_consts_11_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 46, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = &_Py_ID(zipimporter), - .co_qualname = &_Py_ID(zipimporter), - .co_linetable = & zipimport_toplevel_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x10\x64\x04\x84\x01\x5a\x05\x64\x10\x64\x05\x84\x01\x5a\x06\x64\x10\x64\x06\x84\x01\x5a\x07\x64\x07\x84\x00\x5a\x08\x64\x08\x84\x00\x5a\x09\x64\x09\x84\x00\x5a\x0a\x64\x0a\x84\x00\x5a\x0b\x64\x0b\x84\x00\x5a\x0c\x64\x0c\x84\x00\x5a\x0d\x64\x0d\x84\x00\x5a\x0e\x64\x0e\x84\x00\x5a\x0f\x64\x0f\x84\x00\x5a\x10\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -zipimport_toplevel_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__init__.pyc", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_16 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_34._ascii.ob_base, - Py_True, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_17 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_12._ascii.ob_base, - Py_False, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - &_Py_STR(dot), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_prefix._ascii.ob_base, - & const_str_rpartition._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[35]; - } -zipimport_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 34, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0f\x8c\x3b\x98\x18\xd7\x19\x2c\xd2\x19\x2c\xa8\x53\xd1\x19\x31\xd4\x19\x31\xb0\x21\xd4\x19\x34\xd1\x0b\x34\xd0\x04\x34", -}; -static - struct _PyCode_DEF(72) -zipimport_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & zipimport_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 357, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_55_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__get_module_path._ascii.ob_base, - .co_qualname = & const_str__get_module_path._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_19_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_path_sep._ascii.ob_base, - & const_str__files._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -zipimport_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x0f\x13\x95\x58\x89\x6f\x80\x47\xe0\x0b\x12\x90\x64\x94\x6b\xd0\x0b\x21\xd0\x04\x21", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_dirpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dirpath", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(path), - & const_str_dirpath._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(40) -zipimport_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 20, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 361, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__is_dir._ascii.ob_base, - .co_qualname = & const_str__is_dir._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x02\x7c\x02\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__zip_searchorder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_zip_searchorder", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str__get_module_path._ascii.ob_base, - & const_str__zip_searchorder._ascii.ob_base, - & const_str__files._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[84]; - } -zipimport_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 83, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0b\x1b\x98\x44\xa0\x28\xd1\x0b\x2b\xd4\x0b\x2b\x80\x44\xdd\x29\x39\xf0\x00\x03\x05\x1d\xf0\x00\x03\x05\x1d\xd1\x08\x25\x88\x06\x90\x0a\x98\x49\xd8\x13\x17\x98\x26\x91\x3d\x88\x08\xd8\x0b\x13\x90\x74\x94\x7b\xd0\x0b\x22\xd0\x0b\x22\xd8\x13\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xf0\x03\x00\x0c\x23\xe0\x0b\x0f\x88\x34", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_isbytecode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "isbytecode", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -zipimport_toplevel_consts_20_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - &_Py_ID(path), - & const_str_suffix._ascii.ob_base, - & const_str_isbytecode._ascii.ob_base, - & const_str_ispackage._ascii.ob_base, - & const_str_fullpath._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(102) -zipimport_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 51, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 370, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__get_module_info._ascii.ob_base, - .co_qualname = & const_str__get_module_info._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x18\x5c\x03\x00\x00\x7d\x03\x7d\x04\x7d\x05\x7c\x02\x7c\x03\x7a\x00\x00\x00\x7d\x06\x7c\x06\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x04\x7c\x05\x63\x02\x01\x00\x53\x00\x8c\x19\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -zipimport_toplevel_consts_21_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "can't open Zip file: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -zipimport_toplevel_consts_21_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "can't read Zip file: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -zipimport_toplevel_consts_21_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "not a Zip file: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -zipimport_toplevel_consts_21_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "corrupt Zip file: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -zipimport_toplevel_consts_21_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bad central directory size: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -zipimport_toplevel_consts_21_consts_13 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bad central directory offset: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -zipimport_toplevel_consts_21_consts_14 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bad central directory size or offset: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -zipimport_toplevel_consts_21_consts_17 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "EOF read where not expected", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -zipimport_toplevel_consts_21_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "\x50\x4b\x01\x02", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -zipimport_toplevel_consts_21_consts_28 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bad local header offset: ", -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_2048 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 2048 }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_ascii = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ascii", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -zipimport_toplevel_consts_21_consts_34 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zipimport: found {} names in {!r}", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[35]; - }_object; - } -zipimport_toplevel_consts_21_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 35, - }, - .ob_item = { - Py_None, - & zipimport_toplevel_consts_21_consts_1._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & zipimport_toplevel_consts_21_consts_4._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & zipimport_toplevel_consts_21_consts_7._ascii.ob_base, - & zipimport_toplevel_consts_21_consts_8._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 12], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 20], - & zipimport_toplevel_consts_21_consts_12._ascii.ob_base, - & zipimport_toplevel_consts_21_consts_13._ascii.ob_base, - & zipimport_toplevel_consts_21_consts_14._ascii.ob_base, - Py_True, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 46], - & zipimport_toplevel_consts_21_consts_17._ascii.ob_base, - & zipimport_toplevel_consts_21_consts_18.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 10], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 14], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 24], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 28], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 30], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 34], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 42], - & zipimport_toplevel_consts_21_consts_28._ascii.ob_base, - & const_int_2048.ob_base.ob_base, - & const_str_ascii._ascii.ob_base, - &_Py_ID(latin1), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & zipimport_toplevel_consts_21_consts_34._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str_END_CENTRAL_DIR_SIZE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "END_CENTRAL_DIR_SIZE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_STRING_END_ARCHIVE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "STRING_END_ARCHIVE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_MAX_COMMENT_LEN = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MAX_COMMENT_LEN", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_UnicodeDecodeError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UnicodeDecodeError", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_translate = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "translate", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_cp437_table = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cp437_table", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[26]; - }_object; - } -zipimport_toplevel_consts_21_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 26, - }, - .ob_item = { - & const_str__io._ascii.ob_base, - & const_str_open_code._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ZipImportError._ascii.ob_base, - &_Py_ID(tell), - &_Py_ID(seek), - & const_str_END_CENTRAL_DIR_SIZE._ascii.ob_base, - &_Py_ID(read), - &_Py_ID(len), - & const_str_STRING_END_ARCHIVE._ascii.ob_base, - & const_str_max._ascii.ob_base, - & const_str_MAX_COMMENT_LEN._ascii.ob_base, - & const_str_rfind._ascii.ob_base, - & const_str__unpack_uint32._ascii.ob_base, - & const_str_EOFError._ascii.ob_base, - & const_str__unpack_uint16._ascii.ob_base, - &_Py_ID(decode), - & const_str_UnicodeDecodeError._ascii.ob_base, - & const_str_translate._ascii.ob_base, - & const_str_cp437_table._ascii.ob_base, - &_Py_ID(replace), - & const_str_path_sep._ascii.ob_base, - & const_str__bootstrap_external._ascii.ob_base, - & const_str__path_join._ascii.ob_base, - &_Py_ID(_bootstrap), - & const_str__verbose_message._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[2052]; - } -zipimport_toplevel_consts_21_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2051, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x03\x05\x50\x01\xdd\x0d\x10\x8c\x5d\x98\x37\xd1\x0d\x23\xd4\x0d\x23\x88\x02\x88\x02\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x50\x01\xf0\x00\x01\x05\x50\x01\xf0\x00\x01\x05\x50\x01\xdd\x0e\x1c\xd0\x1d\x40\xb0\x57\xd0\x1d\x40\xd0\x1d\x40\xc0\x77\xd0\x0e\x4f\xd1\x0e\x4f\xd4\x0e\x4f\xd0\x08\x4f\xf0\x03\x01\x05\x50\x01\xf8\xf8\xf8\xf0\x06\x00\x0a\x0c\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x08\x00\x18\x1a\x97\x77\x92\x77\x91\x79\x94\x79\x88\x0c\xf0\x02\x6e\x01\x09\x22\xf0\x02\x05\x0d\x58\x01\xd8\x10\x12\x97\x07\x92\x07\xd5\x19\x2d\xd0\x18\x2d\xa8\x71\xd1\x10\x31\xd4\x10\x31\xd0\x10\x31\xd8\x22\x24\xa7\x27\xa2\x27\xa1\x29\xa4\x29\x90\x0f\xd8\x19\x1b\x9f\x17\x9a\x17\xd5\x21\x35\xd1\x19\x36\xd4\x19\x36\x90\x06\x90\x06\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xdd\x16\x24\xd0\x25\x48\xb8\x57\xd0\x25\x48\xd0\x25\x48\xc8\x77\xd0\x16\x57\xd1\x16\x57\xd4\x16\x57\xd0\x10\x57\xf0\x03\x01\x0d\x58\x01\xf8\xf8\xf8\xe5\x0f\x12\x90\x36\x89\x7b\x8c\x7b\xd5\x1e\x32\xd2\x0f\x32\xd0\x0f\x32\xdd\x16\x24\xd0\x25\x48\xb8\x57\xd0\x25\x48\xd0\x25\x48\xc8\x77\xd0\x16\x57\xd1\x16\x57\xd4\x16\x57\xd0\x10\x57\xd8\x0f\x15\x90\x62\x90\x71\x90\x62\x8c\x7a\xd5\x1d\x2f\xd2\x0f\x2f\xd1\x0f\x2f\xf0\x06\x05\x11\x37\xd8\x14\x16\x97\x47\x92\x47\x98\x41\x98\x71\x91\x4d\x94\x4d\x90\x4d\xd8\x20\x22\xa7\x07\xa2\x07\xa1\x09\xa4\x09\x90\x49\x90\x49\xf8\xdd\x17\x1e\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xf0\x03\x02\x11\x37\xf8\xf8\xf8\xf5\x06\x00\x25\x28\xa8\x09\xb5\x4f\xd1\x28\x43\xdd\x28\x3c\xf1\x03\x01\x29\x3d\xd8\x3e\x3f\xf1\x03\x01\x25\x41\x01\xf4\x00\x01\x25\x41\x01\xd0\x10\x21\xf0\x04\x05\x11\x37\xd8\x14\x16\x97\x47\x92\x47\xd0\x1c\x2d\xd1\x14\x2e\xd4\x14\x2e\xd0\x14\x2e\xd8\x1b\x1d\x9f\x37\x9a\x37\x99\x39\x9c\x39\x90\x44\x90\x44\xf8\xdd\x17\x1e\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xf0\x00\x02\x11\x37\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xf0\x03\x02\x11\x37\xf8\xf8\xf8\xf0\x06\x00\x17\x1b\x97\x6a\x92\x6a\xd5\x21\x33\xd1\x16\x34\xd4\x16\x34\x90\x03\xd8\x13\x16\x98\x11\x92\x37\x90\x37\xdd\x1a\x28\xd0\x29\x47\xb8\x47\xd0\x29\x47\xd0\x29\x47\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xe0\x19\x1d\x98\x63\xa0\x23\xd5\x26\x3a\xd1\x22\x3a\xd0\x1e\x3a\xd4\x19\x3b\x90\x06\xdd\x13\x16\x90\x76\x91\x3b\x94\x3b\xd5\x22\x36\xd2\x13\x36\xd0\x13\x36\xdd\x1a\x28\xd0\x29\x49\xb8\x67\xd0\x29\x49\xd0\x29\x49\xd8\x2e\x35\xf0\x03\x01\x1b\x37\xf1\x00\x01\x1b\x37\xf4\x00\x01\x1b\x37\xf0\x00\x01\x15\x37\xe0\x22\x2b\xad\x63\xb0\x24\xa9\x69\xac\x69\xd1\x22\x37\xb8\x23\xd1\x22\x3d\x90\x0f\xe5\x1a\x28\xa8\x16\xb0\x02\xb0\x32\xb0\x05\xac\x1d\xd1\x1a\x37\xd4\x1a\x37\x88\x4b\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x88\x4d\xd8\x0f\x1e\xa0\x1b\xd2\x0f\x2c\xd0\x0f\x2c\xdd\x16\x24\xd0\x25\x4f\xc0\x47\xd0\x25\x4f\xd0\x25\x4f\xd0\x56\x5d\xd0\x16\x5e\xd1\x16\x5e\xd4\x16\x5e\xd0\x10\x5e\xd8\x0f\x1e\xa0\x1d\xd2\x0f\x2e\xd0\x0f\x2e\xdd\x16\x24\xd0\x25\x51\xc0\x67\xd0\x25\x51\xd0\x25\x51\xd0\x58\x5f\xd0\x16\x60\xd1\x16\x60\xd4\x16\x60\xd0\x10\x60\xd8\x0c\x1b\x98\x7b\xd1\x0c\x2a\x88\x4f\xd8\x19\x28\xa8\x3d\xd1\x19\x38\x88\x4a\xd8\x0f\x19\x98\x41\x8a\x7e\x88\x7e\xdd\x16\x24\xd0\x25\x59\xc8\x67\xd0\x25\x59\xd0\x25\x59\xd0\x60\x67\xd0\x16\x68\xd1\x16\x68\xd4\x16\x68\xd0\x10\x68\xe0\x14\x16\x88\x45\xe0\x14\x15\x88\x45\xf0\x02\x03\x0d\x58\x01\xd8\x10\x12\x97\x07\x92\x07\x98\x0f\xd1\x10\x28\xd4\x10\x28\xd0\x10\x28\xd0\x10\x28\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xf0\x00\x01\x0d\x58\x01\xdd\x16\x24\xd0\x25\x48\xb8\x57\xd0\x25\x48\xd0\x25\x48\xc8\x77\xd0\x16\x57\xd1\x16\x57\xd4\x16\x57\xd0\x10\x57\xf0\x03\x01\x0d\x58\x01\xf8\xf8\xf8\xf0\x04\x36\x0d\x1b\xd8\x19\x1b\x9f\x17\x9a\x17\xa0\x12\x99\x1b\x9c\x1b\x90\x06\xdd\x13\x16\x90\x76\x91\x3b\x94\x3b\xa0\x11\x92\x3f\x90\x3f\xdd\x1a\x22\xd0\x23\x40\xd1\x1a\x41\xd4\x1a\x41\xd0\x14\x41\xe0\x13\x19\x98\x22\x98\x31\x98\x22\x94\x3a\xa0\x1d\xd2\x13\x2e\xd0\x13\x2e\xd9\x14\x19\xdd\x13\x16\x90\x76\x91\x3b\x94\x3b\xa0\x22\xd2\x13\x24\xd0\x13\x24\xdd\x1a\x22\xd0\x23\x40\xd1\x1a\x41\xd4\x1a\x41\xd0\x14\x41\xdd\x18\x26\xa0\x76\xa8\x61\xb0\x02\xa8\x64\xa4\x7c\xd1\x18\x34\xd4\x18\x34\x90\x05\xdd\x1b\x29\xa8\x26\xb0\x12\xb0\x42\xb0\x15\xac\x2d\xd1\x1b\x38\xd4\x1b\x38\x90\x08\xdd\x17\x25\xa0\x66\xa8\x52\xb0\x02\xa8\x55\xa4\x6d\xd1\x17\x34\xd4\x17\x34\x90\x04\xdd\x17\x25\xa0\x66\xa8\x52\xb0\x02\xa8\x55\xa4\x6d\xd1\x17\x34\xd4\x17\x34\x90\x04\xdd\x16\x24\xa0\x56\xa8\x42\xa8\x72\xa8\x45\xa4\x5d\xd1\x16\x33\xd4\x16\x33\x90\x03\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x90\x09\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x90\x09\xdd\x1c\x2a\xa8\x36\xb0\x22\xb0\x52\xb0\x25\xac\x3d\xd1\x1c\x39\xd4\x1c\x39\x90\x09\xdd\x1d\x2b\xa8\x46\xb0\x32\xb0\x62\xb0\x35\xac\x4d\xd1\x1d\x3a\xd4\x1d\x3a\x90\x0a\xdd\x1f\x2d\xa8\x66\xb0\x52\xb8\x02\xb0\x55\xac\x6d\xd1\x1f\x3c\xd4\x1f\x3c\x90\x0c\xdd\x1e\x2c\xa8\x56\xb0\x42\xb0\x72\xb0\x45\xac\x5d\xd1\x1e\x3b\xd4\x1e\x3b\x90\x0b\xd8\x1e\x27\xa8\x2a\xd1\x1e\x34\xb0\x7c\xd1\x1e\x43\x90\x0b\xd8\x13\x1e\xa0\x1d\xd2\x13\x2e\xd0\x13\x2e\xdd\x1a\x28\xd0\x29\x50\xc0\x57\xd0\x29\x50\xd0\x29\x50\xd0\x57\x5e\xd0\x1a\x5f\xd1\x1a\x5f\xd4\x1a\x5f\xd0\x14\x5f\xd8\x10\x1b\x98\x7a\xd1\x10\x29\x90\x0b\xf0\x04\x03\x11\x5c\x01\xd8\x1b\x1d\x9f\x37\x9a\x37\xa0\x39\xd1\x1b\x2d\xd4\x1b\x2d\x90\x44\x90\x44\xf8\xdd\x17\x1e\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd0\x53\x5a\xd0\x1a\x5b\xd1\x1a\x5b\xd4\x1a\x5b\xd0\x14\x5b\xf0\x03\x01\x11\x5c\x01\xf8\xf8\xf8\xe5\x13\x16\x90\x74\x91\x39\x94\x39\xa0\x09\xd2\x13\x29\xd0\x13\x29\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd0\x53\x5a\xd0\x1a\x5b\xd1\x1a\x5b\xd4\x1a\x5b\xd0\x14\x5b\xf0\x08\x04\x11\x5c\x01\xdd\x17\x1a\x98\x32\x9f\x37\x9a\x37\xa0\x3b\xb0\x19\xd1\x23\x3a\xd1\x1b\x3b\xd4\x1b\x3b\xd1\x17\x3c\xd4\x17\x3c\xc0\x0b\xc8\x69\xd1\x40\x57\xd2\x17\x57\xd0\x17\x57\xdd\x1e\x2c\xd0\x2d\x50\xc0\x57\xd0\x2d\x50\xd0\x2d\x50\xd0\x57\x5e\xd0\x1e\x5f\xd1\x1e\x5f\xd4\x1e\x5f\xd0\x18\x5f\xf0\x03\x00\x18\x58\x01\xf8\xe5\x17\x1e\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xf0\x00\x01\x11\x5c\x01\xdd\x1a\x28\xd0\x29\x4c\xc0\x17\xd0\x29\x4c\xd0\x29\x4c\xd0\x53\x5a\xd0\x1a\x5b\xd1\x1a\x5b\xd4\x1a\x5b\xd0\x14\x5b\xf0\x03\x01\x11\x5c\x01\xf8\xf8\xf8\xf0\x06\x00\x14\x19\x98\x35\x91\x3d\xf0\x00\x08\x11\x4c\x01\xe0\x1b\x1f\x9f\x3b\x9a\x3b\x99\x3d\x9c\x3d\x90\x44\x90\x44\xf0\x06\x03\x15\x4c\x01\xd8\x1f\x23\x9f\x7b\x9a\x7b\xa8\x37\xd1\x1f\x33\xd4\x1f\x33\x98\x04\x98\x04\xf8\xdd\x1b\x2d\xf0\x00\x01\x15\x4c\x01\xf0\x00\x01\x15\x4c\x01\xf0\x00\x01\x15\x4c\x01\xd8\x1f\x23\x9f\x7b\x9a\x7b\xa8\x38\xd1\x1f\x34\xd4\x1f\x34\xd7\x1f\x3e\xd2\x1f\x3e\xbd\x7b\xd1\x1f\x4b\xd4\x1f\x4b\x98\x04\x98\x04\x98\x04\xf0\x03\x01\x15\x4c\x01\xf8\xf8\xf8\xf0\x06\x00\x18\x1c\x97\x7c\x92\x7c\xa0\x43\xad\x18\xd1\x17\x32\xd4\x17\x32\x90\x04\xdd\x17\x2a\xd4\x17\x35\xb0\x67\xb8\x74\xd1\x17\x44\xd4\x17\x44\x90\x04\xd8\x15\x19\x98\x38\xa0\x59\xb0\x09\xb8\x3b\xc8\x04\xc8\x64\xd0\x54\x57\xd0\x14\x58\x90\x01\xd8\x1e\x1f\x90\x05\x90\x64\x91\x0b\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\xf1\x6d\x01\x36\x0d\x1b\xf0\x0c\x00\x15\x1a\xf0\x64\x01\x00\x0d\x0f\x8f\x47\x8a\x47\x90\x4c\xd1\x0c\x21\xd4\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf8\x88\x42\x8f\x47\x8a\x47\x90\x4c\xd1\x0c\x21\xd4\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf8\xf8\xf8\xd0\x0c\x21\xf0\x67\x03\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf1\x00\x73\x01\x05\x22\xf4\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf8\xf8\xf8\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf0\x00\x73\x01\x05\x22\xf5\x68\x03\x00\x05\x0f\xd4\x04\x1f\xd0\x20\x43\xc0\x55\xc8\x47\xd1\x04\x54\xd4\x04\x54\xd0\x04\x54\xd8\x0b\x10\x80\x4c", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[230]; - } -zipimport_toplevel_consts_21_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 229, - }, - .ob_shash = -1, - .ob_sval = "\x82\x14\x17\x00\x97\x1f\x36\x03\xbb\x15\x59\x08\x03\xc1\x12\x41\x0a\x42\x1d\x02\xc2\x1c\x01\x58\x21\x02\xc2\x1d\x1f\x42\x3c\x05\xc2\x3c\x41\x03\x58\x21\x02\xc4\x00\x2a\x44\x2b\x02\xc4\x2a\x01\x58\x21\x02\xc4\x2b\x1f\x45\x0a\x05\xc5\x0a\x23\x58\x21\x02\xc5\x2e\x29\x46\x18\x02\xc6\x17\x01\x58\x21\x02\xc6\x18\x1f\x46\x37\x05\xc6\x37\x44\x14\x58\x21\x02\xcb\x0c\x15\x4b\x22\x02\xcb\x21\x01\x58\x21\x02\xcb\x22\x1f\x4c\x01\x05\xcc\x01\x46\x11\x58\x21\x02\xd2\x13\x15\x52\x29\x02\xd2\x28\x01\x58\x21\x02\xd2\x29\x1f\x53\x08\x05\xd3\x08\x2a\x58\x21\x02\xd3\x33\x41\x00\x54\x34\x02\xd4\x33\x01\x58\x21\x02\xd4\x34\x1f\x55\x13\x05\xd5\x13\x1d\x58\x21\x02\xd5\x31\x15\x56\x07\x02\xd6\x06\x01\x58\x21\x02\xd6\x07\x37\x57\x01\x05\xd6\x3e\x02\x58\x21\x02\xd7\x00\x01\x57\x01\x05\xd7\x01\x41\x09\x58\x21\x02\xd8\x0b\x16\x59\x08\x03\xd8\x21\x17\x58\x38\x05\xd8\x38\x03\x59\x08\x03\xd9\x08\x04\x59\x0c\x07\xd9\x0f\x01\x59\x0c\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_fp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fp", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_start_offset = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "start_offset", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_header_position = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "header_position", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_file_size = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "file_size", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_max_comment_start = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "max_comment_start", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_pos = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pos", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_header_size = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "header_size", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_header_offset = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "header_offset", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_arc_offset = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "arc_offset", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_compress = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "compress", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_time = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "time", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_date = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "date", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_crc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "crc", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_data_size = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "data_size", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_name_size = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "name_size", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_extra_size = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "extra_size", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_comment_size = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "comment_size", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_file_offset = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "file_offset", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_t = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "t", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[27]; - }_object; - } -zipimport_toplevel_consts_21_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 27, - }, - .ob_item = { - & const_str_archive._ascii.ob_base, - & const_str_fp._ascii.ob_base, - & const_str_start_offset._ascii.ob_base, - & const_str_header_position._ascii.ob_base, - &_Py_ID(buffer), - & const_str_file_size._ascii.ob_base, - & const_str_max_comment_start._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_pos._ascii.ob_base, - & const_str_header_size._ascii.ob_base, - & const_str_header_offset._ascii.ob_base, - & const_str_arc_offset._ascii.ob_base, - & const_str_files._ascii.ob_base, - & const_str_count._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_compress._ascii.ob_base, - & const_str_time._ascii.ob_base, - & const_str_date._ascii.ob_base, - & const_str_crc._ascii.ob_base, - & const_str_data_size._ascii.ob_base, - & const_str_name_size._ascii.ob_base, - & const_str_extra_size._ascii.ob_base, - & const_str_comment_size._ascii.ob_base, - & const_str_file_offset._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(path), - & const_str_t._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[28]; - } -zipimport_toplevel_consts_21_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 27, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(3286) -zipimport_toplevel_consts_21 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 1643, - }, - .co_consts = & zipimport_toplevel_consts_21_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = & zipimport_toplevel_consts_21_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 9, - .co_firstlineno = 401, - .co_nlocalsplus = 27, - .co_nlocals = 27, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & zipimport_toplevel_consts_21_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__read_directory._ascii.ob_base, - .co_qualname = & const_str__read_directory._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_21_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x35\x00\x01\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x04\x64\x00\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x90\x01\x72\x42\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0a\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0a\x00\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x07\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x64\x06\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x07\x7c\x08\x7c\x08\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x05\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0a\x00\x00\x7c\x08\x7a\x00\x00\x00\x7d\x03\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x09\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x0a\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x03\x7c\x09\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x7c\x0a\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x7c\x09\x7a\x17\x00\x00\x7d\x03\x7c\x03\x7c\x0a\x7a\x0a\x00\x00\x7d\x0b\x7c\x0b\x64\x06\x6b\x00\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0e\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x69\x00\x7d\x0c\x64\x06\x7d\x0d\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x00\x00\x00\x00\x00\x72\x0f\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x04\x64\x00\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x12\x6b\x03\x00\x00\x00\x00\x72\x02\x90\x02\x6e\xbe\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x13\x64\x14\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x14\x64\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0f\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x09\x64\x15\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x10\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x15\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x11\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x0a\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x12\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x0b\x64\x16\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x13\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x16\x64\x17\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x17\x64\x18\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x14\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x18\x64\x19\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x15\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x19\x64\x1a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x16\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x1b\x64\x10\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x17\x7c\x14\x7c\x15\x7a\x00\x00\x00\x7c\x16\x7a\x00\x00\x00\x7d\x09\x7c\x17\x7c\x0a\x6b\x04\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x1c\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x17\x7c\x0b\x7a\x0d\x00\x00\x7d\x17\x09\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x14\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x18\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x14\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x14\x7a\x0a\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x14\x7a\x0a\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x6e\x22\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0e\x64\x1d\x7a\x01\x00\x00\x72\x15\x7c\x18\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x6e\x54\x09\x00\x7c\x18\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x1e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x6e\x3d\x23\x00\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x30\x01\x00\x7c\x18\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x1f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x18\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x20\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x18\x74\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x17\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x18\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x19\x7c\x19\x7c\x0f\x7c\x13\x7c\x05\x7c\x17\x7c\x10\x7c\x11\x7c\x12\x66\x08\x7d\x1a\x7c\x1a\x7c\x0c\x7c\x18\x3c\x00\x00\x00\x7c\x0d\x64\x21\x7a\x0d\x00\x00\x7d\x0d\x90\x03\x8c\x05\x09\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x23\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x74\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x64\x22\x7c\x0d\x7c\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x0c\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyCompactUnicodeObject _compact; - uint16_t _data[257]; - } -zipimport_toplevel_consts_22 = { - ._compact = { - ._base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 256, - .hash = -1, - .state = { - .kind = 2, - .compact = 1, - .ascii = 0, - .ready = 1, - }, - }, - }, - ._data = { - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, - 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 199, 252, 233, 226, 228, 224, 229, 231, 234, 235, 232, 239, 238, 236, 196, 197, - 201, 230, 198, 244, 246, 242, 251, 249, 255, 214, 220, 162, 163, 165, 8359, 402, - 225, 237, 243, 250, 241, 209, 170, 186, 191, 8976, 172, 189, 188, 161, 171, 187, - 9617, 9618, 9619, 9474, 9508, 9569, 9570, 9558, 9557, 9571, 9553, 9559, 9565, 9564, 9563, 9488, - 9492, 9524, 9516, 9500, 9472, 9532, 9566, 9567, 9562, 9556, 9577, 9574, 9568, 9552, 9580, 9575, - 9576, 9572, 9573, 9561, 9560, 9554, 9555, 9579, 9578, 9496, 9484, 9608, 9604, 9612, 9616, 9600, - 945, 223, 915, 960, 931, 963, 181, 964, 934, 920, 937, 948, 8734, 966, 949, 8745, - 8801, 177, 8805, 8804, 8992, 8993, 247, 8776, 176, 8729, 183, 8730, 8319, 178, 9632, 160, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -zipimport_toplevel_consts_23_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zipimport: zlib UNAVAILABLE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[42]; - } -zipimport_toplevel_consts_23_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 41, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "can't decompress data; zlib not available", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_decompress = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "decompress", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -zipimport_toplevel_consts_23_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_decompress._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -zipimport_toplevel_consts_23_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zipimport: zlib available", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -zipimport_toplevel_consts_23_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - Py_None, - & zipimport_toplevel_consts_23_consts_1._ascii.ob_base, - & zipimport_toplevel_consts_23_consts_2._ascii.ob_base, - Py_True, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & zipimport_toplevel_consts_23_consts_5._object.ob_base.ob_base, - Py_False, - & zipimport_toplevel_consts_23_consts_7._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__importing_zlib = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_importing_zlib", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_zlib = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zlib", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -zipimport_toplevel_consts_23_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__importing_zlib._ascii.ob_base, - &_Py_ID(_bootstrap), - & const_str__verbose_message._ascii.ob_base, - & const_str_ZipImportError._ascii.ob_base, - & const_str_zlib._ascii.ob_base, - & const_str_decompress._ascii.ob_base, - & const_str_Exception._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str__get_decompress_func = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_decompress_func", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[197]; - } -zipimport_toplevel_consts_23_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 196, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x07\x16\xf0\x00\x04\x05\x4a\x01\xf5\x06\x00\x09\x13\xd4\x08\x23\xd0\x24\x41\xd1\x08\x42\xd4\x08\x42\xd0\x08\x42\xdd\x0e\x1c\xd0\x1d\x48\xd1\x0e\x49\xd4\x0e\x49\xd0\x08\x49\xe0\x16\x1a\x80\x4f\xf0\x02\x06\x05\x20\xd8\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xd0\x08\x23\xf8\xdd\x0b\x14\xf0\x00\x02\x05\x4a\x01\xf0\x00\x02\x05\x4a\x01\xf0\x00\x02\x05\x4a\x01\xdd\x08\x12\xd4\x08\x23\xd0\x24\x41\xd1\x08\x42\xd4\x08\x42\xd0\x08\x42\xdd\x0e\x1c\xd0\x1d\x48\xd1\x0e\x49\xd4\x0e\x49\xd0\x08\x49\xf0\x05\x02\x05\x4a\x01\xf8\xf8\xf8\xf0\x03\x00\x09\x24\xf0\x0a\x00\x1b\x20\x88\x0f\x88\x0f\xf8\x98\x25\x88\x0f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xe5\x04\x0e\xd4\x04\x1f\xd0\x20\x3b\xd1\x04\x3c\xd4\x04\x3c\xd0\x04\x3c\xd8\x0b\x15\xd0\x04\x15", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -zipimport_toplevel_consts_23_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\xae\x06\x35\x00\xb4\x01\x41\x2a\x00\xb5\x2e\x41\x23\x03\xc1\x23\x03\x41\x2a\x00\xc1\x2a\x04\x41\x2e\x03", -}; -static - struct _PyCode_DEF(270) -zipimport_toplevel_consts_23 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 135, - }, - .co_consts = & zipimport_toplevel_consts_23_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = & zipimport_toplevel_consts_23_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 566, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_23_consts_5._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__get_decompress_func._ascii.ob_base, - .co_qualname = & const_str__get_decompress_func._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_23_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x23\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x03\x61\x00\x09\x00\x64\x04\x64\x05\x6c\x04\x6d\x05\x7d\x00\x01\x00\x6e\x31\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x06\x61\x00\x6e\x07\x23\x00\x64\x06\x61\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -zipimport_toplevel_consts_24_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "negative data size", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -zipimport_toplevel_consts_24_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "\x50\x4b\x03\x04", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -zipimport_toplevel_consts_24_consts_9 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bad local file header: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -zipimport_toplevel_consts_24_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zipimport: can't read data", -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_negative_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = -1, - }, - .ob_digit = { 15 }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -zipimport_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & zipimport_toplevel_consts_24_consts_2._ascii.ob_base, - & zipimport_toplevel_consts_21_consts_4._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 30], - & zipimport_toplevel_consts_21_consts_17._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], - & zipimport_toplevel_consts_24_consts_8.ob_base.ob_base, - & zipimport_toplevel_consts_24_consts_9._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 26], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 28], - & zipimport_toplevel_consts_24_consts_12._ascii.ob_base, - & zipimport_toplevel_consts_23_consts_2._ascii.ob_base, - & const_int_negative_15.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -zipimport_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_ZipImportError._ascii.ob_base, - & const_str__io._ascii.ob_base, - & const_str_open_code._ascii.ob_base, - &_Py_ID(seek), - & const_str_OSError._ascii.ob_base, - &_Py_ID(read), - &_Py_ID(len), - & const_str_EOFError._ascii.ob_base, - & const_str__unpack_uint16._ascii.ob_base, - & const_str__get_decompress_func._ascii.ob_base, - & const_str_Exception._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[632]; - } -zipimport_toplevel_consts_24_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 631, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x4d\x56\xd1\x04\x4a\x80\x48\x88\x68\x98\x09\xa0\x39\xa8\x6b\xb8\x34\xc0\x14\xc0\x73\xd8\x07\x10\x90\x31\x82\x7d\x80\x7d\xdd\x0e\x1c\xd0\x1d\x31\xd1\x0e\x32\xd4\x0e\x32\xd0\x08\x32\xe5\x09\x0c\x8c\x1d\x90\x77\xd1\x09\x1f\xd4\x09\x1f\xf0\x00\x18\x05\x38\xa0\x32\xf0\x04\x03\x09\x54\x01\xd8\x0c\x0e\x8f\x47\x8a\x47\x90\x4b\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xdd\x12\x20\xd0\x21\x44\xb8\x17\xd0\x21\x44\xd0\x21\x44\xc8\x37\xd0\x12\x53\xd1\x12\x53\xd4\x12\x53\xd0\x0c\x53\xf0\x03\x01\x09\x54\x01\xf8\xf8\xf8\xe0\x11\x13\x97\x17\x92\x17\x98\x12\x91\x1b\x94\x1b\x88\x06\xdd\x0b\x0e\x88\x76\x89\x3b\x8c\x3b\x98\x22\xd2\x0b\x1c\xd0\x0b\x1c\xdd\x12\x1a\xd0\x1b\x38\xd1\x12\x39\xd4\x12\x39\xd0\x0c\x39\xe0\x0b\x11\x90\x22\x90\x31\x90\x22\x8c\x3a\x98\x1d\xd2\x0b\x26\xd0\x0b\x26\xe5\x12\x20\xd0\x21\x46\xb8\x37\xd0\x21\x46\xd0\x21\x46\xc8\x57\xd0\x12\x55\xd1\x12\x55\xd4\x12\x55\xd0\x0c\x55\xe5\x14\x22\xa0\x36\xa8\x22\xa8\x52\xa8\x25\xa4\x3d\xd1\x14\x31\xd4\x14\x31\x88\x09\xdd\x15\x23\xa0\x46\xa8\x32\xa8\x62\xa8\x35\xa4\x4d\xd1\x15\x32\xd4\x15\x32\x88\x0a\xd8\x16\x18\x98\x39\x91\x6e\xa0\x7a\xd1\x16\x31\x88\x0b\xd8\x08\x13\x90\x7b\xd1\x08\x22\x88\x0b\xf0\x02\x03\x09\x54\x01\xd8\x0c\x0e\x8f\x47\x8a\x47\x90\x4b\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xf0\x00\x01\x09\x54\x01\xdd\x12\x20\xd0\x21\x44\xb8\x17\xd0\x21\x44\xd0\x21\x44\xc8\x37\xd0\x12\x53\xd1\x12\x53\xd4\x12\x53\xd0\x0c\x53\xf0\x03\x01\x09\x54\x01\xf8\xf8\xf8\xe0\x13\x15\x97\x37\x92\x37\x98\x39\xd1\x13\x25\xd4\x13\x25\x88\x08\xdd\x0b\x0e\x88\x78\x89\x3d\x8c\x3d\x98\x49\xd2\x0b\x25\xd0\x0b\x25\xdd\x12\x19\xd0\x1a\x36\xd1\x12\x37\xd4\x12\x37\xd0\x0c\x37\xf0\x03\x00\x0c\x26\xf0\x2f\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf1\x00\x18\x05\x38\xf4\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf8\xf8\xf8\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x00\x18\x05\x38\xf0\x34\x00\x08\x10\x90\x31\x82\x7d\x80\x7d\xe0\x0f\x17\x88\x0f\xf0\x06\x03\x05\x4a\x01\xdd\x15\x29\xd1\x15\x2b\xd4\x15\x2b\x88\x0a\x88\x0a\xf8\xdd\x0b\x14\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xf0\x00\x01\x05\x4a\x01\xdd\x0e\x1c\xd0\x1d\x48\xd1\x0e\x49\xd4\x0e\x49\xd0\x08\x49\xf0\x03\x01\x05\x4a\x01\xf8\xf8\xf8\xe0\x0b\x15\x88\x3a\x90\x68\xa0\x03\xd1\x0b\x24\xd4\x0b\x24\xd0\x04\x24", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[78]; - } -zipimport_toplevel_consts_24_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 77, - }, - .ob_shash = -1, - .ob_sval = "\xb5\x01\x46\x00\x03\xb7\x15\x41\x0d\x02\xc1\x0c\x01\x46\x00\x03\xc1\x0d\x1f\x41\x2c\x05\xc1\x2c\x42\x17\x46\x00\x03\xc4\x04\x15\x44\x1a\x02\xc4\x19\x01\x46\x00\x03\xc4\x1a\x1f\x44\x39\x05\xc4\x39\x3a\x46\x00\x03\xc6\x00\x04\x46\x04\x07\xc6\x07\x01\x46\x04\x07\xc6\x14\x0e\x46\x23\x00\xc6\x23\x1a\x46\x3d\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_datapath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "datapath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_raw_data = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "raw_data", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -zipimport_toplevel_consts_24_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - & const_str_archive._ascii.ob_base, - & const_str_toc_entry._ascii.ob_base, - & const_str_datapath._ascii.ob_base, - & const_str_compress._ascii.ob_base, - & const_str_data_size._ascii.ob_base, - & const_str_file_size._ascii.ob_base, - & const_str_file_offset._ascii.ob_base, - & const_str_time._ascii.ob_base, - & const_str_date._ascii.ob_base, - & const_str_crc._ascii.ob_base, - & const_str_fp._ascii.ob_base, - &_Py_ID(buffer), - & const_str_name_size._ascii.ob_base, - & const_str_extra_size._ascii.ob_base, - & const_str_header_size._ascii.ob_base, - & const_str_raw_data._ascii.ob_base, - & const_str_decompress._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -zipimport_toplevel_consts_24_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(920) -zipimport_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 460, - }, - .co_consts = & zipimport_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = & zipimport_toplevel_consts_24_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 587, - .co_nlocalsplus = 17, - .co_nlocals = 17, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_24_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & zipimport_toplevel_consts_24_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__get_data._ascii.ob_base, - .co_qualname = & const_str__get_data._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_24_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x5c\x08\x00\x00\x7d\x02\x7d\x03\x7d\x04\x7d\x05\x7d\x06\x7d\x07\x7d\x08\x7d\x09\x7c\x04\x64\x01\x6b\x00\x00\x00\x00\x00\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x0a\x09\x00\x7c\x0a\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x22\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0a\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x0b\x64\x00\x64\x07\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x03\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x64\x0a\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x64\x0b\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x64\x05\x7c\x0c\x7a\x00\x00\x00\x7c\x0d\x7a\x00\x00\x00\x7d\x0e\x7c\x06\x7c\x0e\x7a\x0d\x00\x00\x7d\x06\x09\x00\x7c\x0a\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x22\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x15\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x9b\x02\x9d\x02\x7c\x00\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0a\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x03\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x0f\x53\x00\x09\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x10\x6e\x1d\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x10\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x7c\x10\x7c\x0f\x64\x0e\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_25_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_abs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abs", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -zipimport_toplevel_consts_25_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_abs._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__eq_mtime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_eq_mtime", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[24]; - } -zipimport_toplevel_consts_25_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 23, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x0e\x88\x72\x90\x42\x89\x77\x89\x3c\x8c\x3c\x98\x31\xd2\x0b\x1c\xd0\x04\x1c", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_t1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "t1", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_t2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "t2", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_25_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_t1._ascii.ob_base, - & const_str_t2._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(46) -zipimport_toplevel_consts_25 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 23, - }, - .co_consts = & zipimport_toplevel_consts_25_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_25_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 633, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_25_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__eq_mtime._ascii.ob_base, - .co_qualname = & const_str__eq_mtime._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_25_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7a\x0a\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x01\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -zipimport_toplevel_consts_26_consts_11 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "compiled module ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -zipimport_toplevel_consts_26_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " is not a code object", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -zipimport_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_external_toplevel_consts_46_consts_4._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & const_str_never._ascii.ob_base, - & const_str_always._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 12], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], - & importlib__bootstrap_external_toplevel_consts_44_consts_4._ascii.ob_base, - & zipimport_toplevel_consts_26_consts_11._ascii.ob_base, - & zipimport_toplevel_consts_26_consts_12._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__get_pyc_source = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_pyc_source", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -const_str__get_mtime_and_size_of_source = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_mtime_and_size_of_source", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[18]; - }_object; - } -zipimport_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 18, - }, - .ob_item = { - & const_str__bootstrap_external._ascii.ob_base, - & const_str__classify_pyc._ascii.ob_base, - & const_str__imp._ascii.ob_base, - & const_str_check_hash_based_pycs._ascii.ob_base, - & const_str__get_pyc_source._ascii.ob_base, - & const_str_source_hash._ascii.ob_base, - & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, - & const_str__validate_hash_pyc._ascii.ob_base, - & const_str__get_mtime_and_size_of_source._ascii.ob_base, - & const_str__eq_mtime._ascii.ob_base, - & const_str__unpack_uint32._ascii.ob_base, - &_Py_ID(_bootstrap), - & const_str__verbose_message._ascii.ob_base, - & const_str_marshal._ascii.ob_base, - & const_str_loads._ascii.ob_base, - &_Py_ID(isinstance), - & const_str__code_type._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__unmarshal_code = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_unmarshal_code", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[403]; - } -zipimport_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 402, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x10\x18\xd8\x10\x18\xf0\x05\x03\x13\x06\xf0\x00\x03\x13\x06\x80\x4b\xf5\x0a\x00\x0d\x20\xd4\x0c\x2d\xa8\x64\xb0\x48\xb8\x6b\xd1\x0c\x4a\xd4\x0c\x4a\x80\x45\xe0\x11\x16\x98\x13\x91\x1b\xa0\x01\xd2\x11\x21\x80\x4a\xd8\x07\x11\xf0\x00\x18\x05\x1c\xd8\x17\x1c\x98\x74\x91\x7c\xa0\x71\xd2\x17\x28\x88\x0c\xdd\x0c\x10\xd4\x0c\x26\xa8\x27\xd2\x0c\x31\xd0\x0c\x31\xd8\x11\x1d\xf0\x03\x00\x0d\x32\xdd\x21\x25\xd4\x21\x3b\xb8\x78\xd2\x21\x47\xd0\x21\x47\xdd\x1b\x2a\xa8\x34\xb0\x18\xd1\x1b\x3a\xd4\x1b\x3a\x88\x4c\xd8\x0f\x1b\xd0\x0f\x27\xdd\x1e\x22\xd4\x1e\x2e\xdd\x14\x27\xd4\x14\x39\xd8\x14\x20\xf1\x05\x03\x1f\x12\xf4\x00\x03\x1f\x12\x90\x0b\xf5\x0a\x00\x11\x24\xd4\x10\x36\xd8\x14\x18\x98\x2b\xa0\x78\xb0\x1b\xf1\x03\x01\x11\x3e\xf4\x00\x01\x11\x3e\xf0\x00\x01\x11\x3e\xf8\xf5\x08\x00\x0d\x2a\xa8\x24\xb0\x08\xd1\x0c\x39\xd4\x0c\x39\xf1\x03\x00\x09\x22\x88\x0c\x90\x6b\xf0\x06\x00\x0c\x18\xf0\x00\x07\x09\x1c\xf5\x06\x00\x15\x1e\x9d\x6e\xa8\x54\xb0\x21\xb0\x42\xb0\x24\xac\x5a\xd1\x1e\x38\xd4\x1e\x38\xb8\x2c\xd1\x14\x47\xd4\x14\x47\xf0\x00\x04\x0d\x1c\xdd\x14\x22\xa0\x34\xa8\x02\xa8\x32\xa8\x05\xa4\x3b\xd1\x14\x2f\xd4\x14\x2f\xb0\x3b\xd2\x14\x3e\xd0\x14\x3e\xdd\x10\x1a\xd4\x10\x2b\xd8\x14\x39\xa8\x58\xd0\x14\x39\xd0\x14\x39\xf1\x03\x01\x11\x3b\xf4\x00\x01\x11\x3b\xf0\x00\x01\x11\x3b\xe0\x17\x1b\x90\x74\xe5\x0b\x12\x8c\x3d\x98\x14\x98\x62\x98\x63\x98\x63\x9c\x19\xd1\x0b\x23\xd4\x0b\x23\x80\x44\xdd\x0b\x15\x90\x64\x9d\x4a\xd1\x0b\x27\xd4\x0b\x27\xf0\x00\x01\x05\x4e\x01\xdd\x0e\x17\xd0\x18\x4c\xa8\x38\xd0\x18\x4c\xd0\x18\x4c\xd0\x18\x4c\xd1\x0e\x4d\xd4\x0e\x4d\xd0\x08\x4d\xd8\x0b\x0f\x80\x4b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -zipimport_toplevel_consts_26_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_pathname._ascii.ob_base, - & const_str_fullpath._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_exc_details._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_hash_based._ascii.ob_base, - & const_str_check_source._ascii.ob_base, - & const_str_source_bytes._ascii.ob_base, - & const_str_source_hash._ascii.ob_base, - & const_str_source_mtime._ascii.ob_base, - & const_str_source_size._ascii.ob_base, - &_Py_ID(code), - }, - }, -}; -static - struct _PyCode_DEF(670) -zipimport_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 335, - }, - .co_consts = & zipimport_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 5, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 641, - .co_nlocalsplus = 14, - .co_nlocals = 14, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_7_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__unmarshal_code._ascii.ob_base, - .co_qualname = & const_str__unmarshal_code._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x03\x7c\x02\x64\x01\x9c\x02\x7d\x05\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x03\x7c\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x64\x02\x7a\x01\x00\x00\x64\x03\x6b\x03\x00\x00\x00\x00\x7d\x07\x7c\x07\x72\x74\x7c\x06\x64\x04\x7a\x01\x00\x00\x64\x03\x6b\x03\x00\x00\x00\x00\x7d\x08\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x03\x00\x00\x00\x00\x72\x5a\x7c\x08\x73\x10\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x48\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x09\x81\x36\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x0a\x7c\x03\x7c\x05\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x6e\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x0b\x7d\x0c\x7c\x0b\x72\x59\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x07\x64\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x08\x64\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0c\x6b\x03\x00\x00\x00\x00\x72\x19\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x7c\x03\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x09\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x13\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x7c\x01\x9b\x02\x64\x0c\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x0d\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -zipimport_toplevel_consts_27_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_external_toplevel_consts_29.ob_base.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[10]), - (PyObject *)&_Py_SINGLETON(bytes_characters[13]), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -zipimport_toplevel_consts_27_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(replace), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -const_str__normalize_line_endings = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_normalize_line_endings", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[46]; - } -zipimport_toplevel_consts_27_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 45, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0d\x13\x8f\x5e\x8a\x5e\x98\x47\xa0\x55\xd1\x0d\x2b\xd4\x0d\x2b\x80\x46\xd8\x0d\x13\x8f\x5e\x8a\x5e\x98\x45\xa0\x35\xd1\x0d\x29\xd4\x0d\x29\x80\x46\xd8\x0b\x11\x80\x4d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -zipimport_toplevel_consts_27_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_source._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(94) -zipimport_toplevel_consts_27 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 47, - }, - .co_consts = & zipimport_toplevel_consts_27_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_27_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 686, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__normalize_line_endings._ascii.ob_base, - .co_qualname = & const_str__normalize_line_endings._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_27_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -zipimport_toplevel_consts_28_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - & const_str_exec._ascii.ob_base, - Py_True, - & importlib__bootstrap_external_toplevel_consts_69_consts_5_consts_5._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_28_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__normalize_line_endings._ascii.ob_base, - & const_str_compile._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__compile_source = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_compile_source", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[39]; - } -zipimport_toplevel_consts_28_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 38, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0d\x24\xa0\x56\xd1\x0d\x2c\xd4\x0d\x2c\x80\x46\xdd\x0b\x12\x90\x36\x98\x38\xa0\x56\xb8\x24\xd0\x0b\x3f\xd1\x0b\x3f\xd4\x0b\x3f\xd0\x04\x3f", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_28_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_pathname._ascii.ob_base, - & const_str_source._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(70) -zipimport_toplevel_consts_28 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 35, - }, - .co_consts = & zipimport_toplevel_consts_28_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_28_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 693, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_28_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__compile_source._ascii.ob_base, - .co_qualname = & const_str__compile_source._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_28_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x64\x01\x64\x02\xac\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_1980 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 1980 }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -zipimport_toplevel_consts_29_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 9], - & const_int_1980.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 15], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 31], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 11], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 63], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_mktime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mktime", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_29_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_time._ascii.ob_base, - & const_str_mktime._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__parse_dostime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_parse_dostime", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[93]; - } -zipimport_toplevel_consts_29_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 92, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0b\x0f\x8c\x3b\xd8\x09\x0a\x88\x61\x89\x16\x90\x34\x89\x0f\xd8\x09\x0a\x88\x61\x89\x16\x90\x33\x89\x0e\xd8\x08\x09\x88\x44\x89\x08\xd8\x08\x09\x88\x52\x89\x07\xd8\x09\x0a\x88\x61\x89\x16\x90\x34\x89\x0f\xd8\x09\x0a\x88\x54\x89\x18\x90\x51\x89\x0e\xd8\x08\x0a\x88\x42\x90\x02\xf0\x0f\x07\x18\x14\xf1\x00\x07\x0c\x15\xf4\x00\x07\x0c\x15\xf0\x00\x07\x05\x15", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_d = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_29_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_d._ascii.ob_base, - & const_str_t._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(120) -zipimport_toplevel_consts_29 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 60, - }, - .co_consts = & zipimport_toplevel_consts_29_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_29_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 11, - .co_firstlineno = 699, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_29_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__parse_dostime._ascii.ob_base, - .co_qualname = & const_str__parse_dostime._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_29_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x7a\x09\x00\x00\x64\x02\x7a\x00\x00\x00\x7c\x00\x64\x03\x7a\x09\x00\x00\x64\x04\x7a\x01\x00\x00\x7c\x00\x64\x05\x7a\x01\x00\x00\x7c\x01\x64\x06\x7a\x09\x00\x00\x7c\x01\x64\x03\x7a\x09\x00\x00\x64\x07\x7a\x01\x00\x00\x7c\x01\x64\x05\x7a\x01\x00\x00\x64\x08\x7a\x05\x00\x00\x64\x09\x64\x09\x64\x09\x66\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_c = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "c", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_o = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "o", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -zipimport_toplevel_consts_30_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_c._ascii.ob_base, - & const_str_o._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -zipimport_toplevel_consts_30_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & zipimport_toplevel_consts_30_consts_2._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 6], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - & importlib__bootstrap_external_toplevel_consts_82._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_IndexError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IndexError", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -zipimport_toplevel_consts_30_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__files._ascii.ob_base, - & const_str__parse_dostime._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - & const_str_IndexError._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[151]; - } -zipimport_toplevel_consts_30_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 150, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x0c\x05\x14\xe0\x0f\x13\x90\x42\x90\x43\x90\x43\x8c\x79\x98\x4a\xd0\x0f\x26\xd0\x0f\x26\xd0\x0f\x26\xd0\x0f\x26\xd8\x0f\x13\x90\x43\x90\x52\x90\x43\x8c\x79\x88\x04\xd8\x14\x18\x94\x4b\xa0\x04\xd4\x14\x25\x88\x09\xf0\x06\x00\x10\x19\x98\x11\x8c\x7c\x88\x04\xd8\x0f\x18\x98\x11\x8c\x7c\x88\x04\xd8\x1c\x25\xa0\x61\x9c\x4c\xd0\x08\x19\xdd\x0f\x1d\x98\x64\xa0\x44\xd1\x0f\x29\xd4\x0f\x29\xd0\x2b\x3c\xd0\x0f\x3c\xd0\x08\x3c\xf8\xdd\x0c\x14\x95\x6a\xa5\x29\xd0\x0b\x2c\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\x88\x74\xf0\x03\x01\x05\x14\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -zipimport_toplevel_consts_30_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\x82\x41\x0e\x41\x11\x00\xc1\x11\x17\x41\x2c\x03\xc1\x2b\x01\x41\x2c\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_uncompressed_size = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "uncompressed_size", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -zipimport_toplevel_consts_30_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(path), - & const_str_toc_entry._ascii.ob_base, - & const_str_time._ascii.ob_base, - & const_str_date._ascii.ob_base, - & const_str_uncompressed_size._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(222) -zipimport_toplevel_consts_30 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 111, - }, - .co_consts = & zipimport_toplevel_consts_30_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_30_names._object.ob_base.ob_base, - .co_exceptiontable = & zipimport_toplevel_consts_30_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 712, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_30_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__get_mtime_and_size_of_source._ascii.ob_base, - .co_qualname = & const_str__get_mtime_and_size_of_source._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_30_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x01\x64\x01\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x76\x00\x73\x02\x4a\x00\x82\x01\x7c\x01\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x02\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x66\x02\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x04\x01\x00\x59\x00\x64\x06\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_31_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & zipimport_toplevel_consts_30_consts_2._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -zipimport_toplevel_consts_31_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__files._ascii.ob_base, - & const_str__get_data._ascii.ob_base, - & const_str_archive._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[114]; - } -zipimport_toplevel_consts_31_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 113, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0f\x90\x02\x90\x03\x90\x03\x8c\x39\x98\x0a\xd0\x0b\x22\xd0\x0b\x22\xd0\x0b\x22\xd0\x0b\x22\xd8\x0b\x0f\x90\x03\x90\x12\x90\x03\x8c\x39\x80\x44\xf0\x04\x05\x05\x32\xd8\x14\x18\x94\x4b\xa0\x04\xd4\x14\x25\x88\x09\xf5\x08\x00\x10\x19\x98\x14\x9c\x1c\xa0\x79\xd1\x0f\x31\xd4\x0f\x31\xd0\x08\x31\xf8\xf5\x07\x00\x0c\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\x88\x74\xf0\x03\x01\x05\x14\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -zipimport_toplevel_consts_31_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x9a\x0d\x3c\x00\xbc\x0a\x41\x0a\x03\xc1\x09\x01\x41\x0a\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -zipimport_toplevel_consts_31_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(path), - & const_str_toc_entry._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(154) -zipimport_toplevel_consts_31 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 77, - }, - .co_consts = & zipimport_toplevel_consts_31_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_31_names._object.ob_base.ob_base, - .co_exceptiontable = & zipimport_toplevel_consts_31_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 731, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__get_pyc_source._ascii.ob_base, - .co_qualname = & const_str__get_pyc_source._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_31_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x76\x00\x73\x02\x4a\x00\x82\x01\x7c\x01\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -zipimport_toplevel_consts_32_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "trying {}{}{}", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -zipimport_toplevel_consts_32_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module load failed: ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -zipimport_toplevel_consts_32_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - Py_None, - & zipimport_toplevel_consts_32_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & importlib__bootstrap_toplevel_consts_17._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & zipimport_toplevel_consts_32_consts_5._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - & zipimport_toplevel_consts_11_consts_10_consts_2._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -zipimport_toplevel_consts_32_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str__get_module_path._ascii.ob_base, - & const_str__zip_searchorder._ascii.ob_base, - &_Py_ID(_bootstrap), - & const_str__verbose_message._ascii.ob_base, - & const_str_archive._ascii.ob_base, - & const_str_path_sep._ascii.ob_base, - & const_str__files._ascii.ob_base, - & const_str__get_data._ascii.ob_base, - & const_str__unmarshal_code._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str__compile_source._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - & const_str_ZipImportError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[381]; - } -zipimport_toplevel_consts_32_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 380, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0b\x1b\x98\x44\xa0\x28\xd1\x0b\x2b\xd4\x0b\x2b\x80\x44\xd8\x13\x17\x80\x4c\xdd\x29\x39\xf0\x00\x1d\x05\x53\x01\xf0\x00\x1d\x05\x53\x01\xd1\x08\x25\x88\x06\x90\x0a\x98\x49\xd8\x13\x17\x98\x26\x91\x3d\x88\x08\xdd\x08\x12\xd4\x08\x23\xa0\x4f\xb0\x54\xb4\x5c\xc5\x38\xc8\x58\xd0\x61\x62\xd0\x08\x63\xd1\x08\x63\xd4\x08\x63\xd0\x08\x63\xf0\x02\x14\x09\x2c\xd8\x18\x1c\x9c\x0b\xa0\x48\xd4\x18\x2d\x88\x49\xf0\x08\x00\x17\x20\xa0\x01\x94\x6c\x88\x47\xdd\x13\x1c\x98\x54\x9c\x5c\xa8\x39\xd1\x13\x35\xd4\x13\x35\x88\x44\xd8\x13\x17\x88\x44\xd8\x0f\x19\xf0\x00\x06\x0d\x36\xf0\x02\x03\x11\x27\xdd\x1b\x2a\xa8\x34\xb0\x17\xb8\x28\xc0\x48\xc8\x64\xd1\x1b\x53\xd4\x1b\x53\x90\x44\x90\x44\xf8\xdd\x17\x22\xf0\x00\x01\x11\x27\xf0\x00\x01\x11\x27\xf0\x00\x01\x11\x27\xd8\x23\x26\x90\x4c\x90\x4c\x90\x4c\x90\x4c\x90\x4c\x90\x4c\xf8\xf8\xf8\xf8\xf0\x03\x01\x11\x27\xf8\xf8\xf8\xf5\x06\x00\x18\x27\xa0\x77\xb0\x04\xd1\x17\x35\xd4\x17\x35\x90\x04\xd8\x0f\x13\x88\x7c\xf0\x06\x00\x11\x19\xd8\x16\x1f\xa0\x01\x94\x6c\x88\x47\xd8\x13\x17\x98\x19\xa0\x47\xd0\x13\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xf8\xf5\x25\x00\x10\x18\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x28\x00\x0c\x18\xf0\x00\x04\x09\x53\x01\xd8\x12\x37\xa8\x1c\xd0\x12\x37\xd0\x12\x37\x88\x43\xdd\x12\x20\xa0\x13\xa8\x38\xd0\x12\x34\xd1\x12\x34\xd4\x12\x34\xb8\x2c\xd0\x0c\x46\xe5\x12\x20\xd0\x21\x42\xb0\x68\xd0\x21\x42\xd0\x21\x42\xc8\x18\xd0\x12\x52\xd1\x12\x52\xd4\x12\x52\xd0\x0c\x52", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[43]; - } -zipimport_toplevel_consts_32_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 42, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x09\x0d\x43\x07\x02\xc1\x38\x13\x42\x0c\x02\xc2\x0c\x0a\x42\x22\x05\xc2\x16\x02\x42\x1d\x05\xc2\x1d\x05\x42\x22\x05\xc3\x07\x0a\x43\x14\x05\xc3\x13\x01\x43\x14\x05", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_import_error = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "import_error", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -zipimport_toplevel_consts_32_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - &_Py_ID(path), - & const_str_import_error._ascii.ob_base, - & const_str_suffix._ascii.ob_base, - & const_str_isbytecode._ascii.ob_base, - & const_str_ispackage._ascii.ob_base, - & const_str_fullpath._ascii.ob_base, - & const_str_toc_entry._ascii.ob_base, - & const_str_modpath._ascii.ob_base, - & const_str_data._ascii.ob_base, - &_Py_ID(code), - & const_str_exc._ascii.ob_base, - &_Py_ID(msg), - }, - }, -}; -static - struct _PyCode_DEF(520) -zipimport_toplevel_consts_32 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 260, - }, - .co_consts = & zipimport_toplevel_consts_32_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_consts_32_names._object.ob_base.ob_base, - .co_exceptiontable = & zipimport_toplevel_consts_32_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 746, - .co_nlocalsplus = 14, - .co_nlocals = 14, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & zipimport_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_7_localspluskinds.ob_base.ob_base, - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = & const_str__get_module_code._ascii.ob_base, - .co_qualname = & const_str__get_module_code._ascii.ob_base, - .co_linetable = & zipimport_toplevel_consts_32_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x00\x7d\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\xbc\x5c\x03\x00\x00\x7d\x04\x7d\x05\x7d\x06\x7c\x02\x7c\x04\x7a\x00\x00\x00\x7d\x07\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x64\x02\xac\x03\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x64\x00\x7d\x0b\x7c\x05\x72\x2e\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x09\x7c\x07\x7c\x01\x7c\x0a\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x6e\x29\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0c\x7d\x0c\x7c\x0c\x7d\x03\x59\x00\x64\x00\x7d\x0c\x7e\x0c\x6e\x18\x64\x00\x7d\x0c\x7e\x0c\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x0a\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x0b\x80\x01\x8c\x9e\x7c\x08\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x0b\x7c\x06\x7c\x09\x66\x03\x63\x02\x01\x00\x53\x00\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x8c\xb9\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x72\x17\x64\x05\x7c\x03\x9b\x00\x9d\x02\x7d\x0d\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x7c\x01\xac\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x82\x02\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x01\x9b\x02\x9d\x02\x7c\x01\xac\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[33]; - }_object; - } -zipimport_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 33, - }, - .ob_item = { - & zipimport_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & zipimport_toplevel_consts_3._object.ob_base.ob_base, - & const_str_ZipImportError._ascii.ob_base, - &_Py_ID(zipimporter), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & zipimport_toplevel_consts_7.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 22], - & zipimport_toplevel_consts_9.ob_base.ob_base, - & const_int_65535.ob_base.ob_base, - & zipimport_toplevel_consts_11.ob_base.ob_base, - & zipimport_toplevel_consts_12._ascii.ob_base, - Py_True, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_11._ascii.ob_base, - Py_False, - & zipimport_toplevel_consts_16._object.ob_base.ob_base, - & zipimport_toplevel_consts_17._object.ob_base.ob_base, - & zipimport_toplevel_consts_18.ob_base.ob_base, - & zipimport_toplevel_consts_19.ob_base.ob_base, - & zipimport_toplevel_consts_20.ob_base.ob_base, - & zipimport_toplevel_consts_21.ob_base.ob_base, - & zipimport_toplevel_consts_22._compact._base.ob_base, - & zipimport_toplevel_consts_23.ob_base.ob_base, - & zipimport_toplevel_consts_24.ob_base.ob_base, - & zipimport_toplevel_consts_25.ob_base.ob_base, - & zipimport_toplevel_consts_26.ob_base.ob_base, - & zipimport_toplevel_consts_27.ob_base.ob_base, - & zipimport_toplevel_consts_28.ob_base.ob_base, - & zipimport_toplevel_consts_29.ob_base.ob_base, - & zipimport_toplevel_consts_30.ob_base.ob_base, - & zipimport_toplevel_consts_31.ob_base.ob_base, - & zipimport_toplevel_consts_32.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__frozen_importlib = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_frozen_importlib", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[46]; - }_object; - } -zipimport_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 46, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str__frozen_importlib_external._ascii.ob_base, - & const_str__bootstrap_external._ascii.ob_base, - & const_str__unpack_uint16._ascii.ob_base, - & const_str__unpack_uint32._ascii.ob_base, - & const_str__frozen_importlib._ascii.ob_base, - &_Py_ID(_bootstrap), - & const_str__imp._ascii.ob_base, - & const_str__io._ascii.ob_base, - & const_str_marshal._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_time._ascii.ob_base, - & const_str__warnings._ascii.ob_base, - &_Py_ID(__all__), - & const_str_path_sep._ascii.ob_base, - & const_str_path_separators._ascii.ob_base, - & const_str_alt_path_sep._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_ZipImportError._ascii.ob_base, - & const_str__zip_directory_cache._ascii.ob_base, - & const_str_type._ascii.ob_base, - & const_str__module_type._ascii.ob_base, - & const_str_END_CENTRAL_DIR_SIZE._ascii.ob_base, - & const_str_STRING_END_ARCHIVE._ascii.ob_base, - & const_str_MAX_COMMENT_LEN._ascii.ob_base, - & const_str__LoaderBasics._ascii.ob_base, - &_Py_ID(zipimporter), - & const_str__zip_searchorder._ascii.ob_base, - & const_str__get_module_path._ascii.ob_base, - & const_str__is_dir._ascii.ob_base, - & const_str__get_module_info._ascii.ob_base, - & const_str__read_directory._ascii.ob_base, - & const_str_cp437_table._ascii.ob_base, - & const_str__importing_zlib._ascii.ob_base, - & const_str__get_decompress_func._ascii.ob_base, - & const_str__get_data._ascii.ob_base, - & const_str__eq_mtime._ascii.ob_base, - & const_str__unmarshal_code._ascii.ob_base, - & const_str___code__._ascii.ob_base, - & const_str__code_type._ascii.ob_base, - & const_str__normalize_line_endings._ascii.ob_base, - & const_str__compile_source._ascii.ob_base, - & const_str__parse_dostime._ascii.ob_base, - & const_str__get_mtime_and_size_of_source._ascii.ob_base, - & const_str__get_pyc_source._ascii.ob_base, - & const_str__get_module_code._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[620]; - } -zipimport_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 619, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x0c\x01\x04\xf0\x00\x0c\x01\x04\xf0\x20\x00\x01\x39\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xd8\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd0\x00\x45\xd8\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0e\x80\x0e\x80\x0e\x80\x0e\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x10\xd0\x00\x10\xd0\x00\x10\xd0\x00\x10\xe0\x0b\x1b\x98\x5d\xd0\x0a\x2b\x80\x07\xf0\x06\x00\x0c\x1f\xd4\x0b\x27\x80\x08\xd8\x0f\x22\xd4\x0f\x32\xb0\x31\xb0\x32\xb0\x32\xd4\x0f\x36\x80\x0c\xf0\x06\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\x90\x5b\xf1\x00\x01\x01\x09\xf4\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x08\x00\x18\x1a\xd0\x00\x14\xe0\x0f\x13\x88\x74\x90\x43\x89\x79\x8c\x79\x80\x0c\xe0\x17\x19\xd0\x00\x14\xd8\x15\x22\xd0\x00\x12\xd8\x12\x1f\x80\x0f\xf0\x04\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xd0\x12\x25\xd4\x12\x33\xf1\x00\x66\x04\x01\x4f\x01\xf4\x00\x66\x04\x01\x4f\x01\xf0\x00\x66\x04\x01\x4f\x01\xf0\x5e\x09\x00\x06\x0e\x90\x0e\xd1\x05\x1e\xa0\x04\xa0\x64\xd0\x04\x2b\xd8\x05\x0d\x90\x0d\xd1\x05\x1d\x98\x75\xa0\x64\xd0\x04\x2b\xd8\x04\x19\xd8\x04\x19\xf0\x09\x05\x14\x02\xd0\x00\x10\xf0\x12\x01\x01\x35\xf0\x00\x01\x01\x35\xf0\x00\x01\x01\x35\xf0\x08\x06\x01\x22\xf0\x00\x06\x01\x22\xf0\x00\x06\x01\x22\xf0\x12\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x3e\x7b\x01\x01\x11\xf0\x00\x7b\x01\x01\x11\xf0\x00\x7b\x01\x01\x11\xf0\x4a\x04\x18\x05\x2f\xf0\x05\x00\x01\x0c\xf0\x3a\x00\x13\x18\x80\x0f\xf0\x0a\x12\x01\x16\xf0\x00\x12\x01\x16\xf0\x00\x12\x01\x16\xf0\x2a\x28\x01\x25\xf0\x00\x28\x01\x25\xf0\x00\x28\x01\x25\xf0\x5c\x01\x02\x01\x1d\xf0\x00\x02\x01\x1d\xf0\x00\x02\x01\x1d\xf0\x10\x26\x01\x10\xf0\x00\x26\x01\x10\xf0\x00\x26\x01\x10\xf0\x50\x01\x00\x0e\x12\x88\x54\x90\x2f\xd4\x12\x2a\xd1\x0d\x2b\xd4\x0d\x2b\x80\x0a\xf0\x0a\x03\x01\x12\xf0\x00\x03\x01\x12\xf0\x00\x03\x01\x12\xf0\x0e\x02\x01\x40\x01\xf0\x00\x02\x01\x40\x01\xf0\x00\x02\x01\x40\x01\xf0\x0c\x08\x01\x15\xf0\x00\x08\x01\x15\xf0\x00\x08\x01\x15\xf0\x1a\x0d\x01\x14\xf0\x00\x0d\x01\x14\xf0\x00\x0d\x01\x14\xf0\x26\x0a\x01\x32\xf0\x00\x0a\x01\x32\xf0\x00\x0a\x01\x32\xf0\x1e\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01\xf0\x00\x20\x01\x53\x01", -}; -static - struct _PyCode_DEF(406) -zipimport_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 203, - }, - .co_consts = & zipimport_toplevel_consts._object.ob_base.ob_base, - .co_names = & zipimport_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & zipimport_toplevel_consts_7_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & zipimport_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x02\x64\x01\x64\x03\x6c\x01\x6d\x03\x5a\x03\x6d\x04\x5a\x04\x01\x00\x64\x01\x64\x02\x6c\x05\x5a\x06\x64\x01\x64\x02\x6c\x07\x5a\x07\x64\x01\x64\x02\x6c\x08\x5a\x08\x64\x01\x64\x02\x6c\x09\x5a\x09\x64\x01\x64\x02\x6c\x0a\x5a\x0a\x64\x01\x64\x02\x6c\x0b\x5a\x0b\x64\x01\x64\x02\x6c\x0c\x5a\x0c\x64\x04\x64\x05\x67\x02\x5a\x0d\x65\x02\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0e\x65\x02\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x10\x02\x00\x47\x00\x64\x07\x84\x00\x64\x04\x65\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x12\x69\x00\x5a\x13\x02\x00\x65\x14\x65\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x15\x64\x08\x5a\x16\x64\x09\x5a\x17\x64\x0a\x5a\x18\x02\x00\x47\x00\x64\x0b\x84\x00\x64\x05\x65\x02\x6a\x19\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1a\x65\x0e\x64\x0c\x7a\x00\x00\x00\x64\x0d\x64\x0d\x66\x03\x65\x0e\x64\x0e\x7a\x00\x00\x00\x64\x0f\x64\x0d\x66\x03\x64\x10\x64\x11\x66\x04\x5a\x1b\x64\x12\x84\x00\x5a\x1c\x64\x13\x84\x00\x5a\x1d\x64\x14\x84\x00\x5a\x1e\x64\x15\x84\x00\x5a\x1f\x64\x16\x5a\x20\x64\x0f\x61\x21\x64\x17\x84\x00\x5a\x22\x64\x18\x84\x00\x5a\x23\x64\x19\x84\x00\x5a\x24\x64\x1a\x84\x00\x5a\x25\x02\x00\x65\x14\x65\x25\x6a\x26\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x27\x64\x1b\x84\x00\x5a\x28\x64\x1c\x84\x00\x5a\x29\x64\x1d\x84\x00\x5a\x2a\x64\x1e\x84\x00\x5a\x2b\x64\x1f\x84\x00\x5a\x2c\x64\x20\x84\x00\x5a\x2d\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void zipimport_do_patchups(void) { - if (sizeof(wchar_t) == 2) { - zipimport_toplevel_consts_22._compact._base.wstr = (wchar_t *) zipimport_toplevel_consts_22._data; - zipimport_toplevel_consts_22._compact.wstr_length = 256; - } -} - -PyObject * -_Py_get_zipimport_toplevel(void) -{ - zipimport_do_patchups(); - return Py_NewRef((PyObject *) &zipimport_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[52]; - } -abc_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 51, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Abstract Base Classes (ABCs) according to PEP 3119.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[586]; - } -abc_toplevel_consts_1_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 585, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x0a\x20\x20\x20\x20\x52\x65\x71\x75\x69\x72\x65\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x69\x73\x20\x41\x42\x43\x4d\x65\x74\x61\x20\x6f\x72\x20\x64\x65\x72\x69\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x69\x74\x2e\x20\x20\x41\x0a\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x74\x68\x61\x74\x20\x68\x61\x73\x20\x61\x20\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x64\x65\x72\x69\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x41\x42\x43\x4d\x65\x74\x61\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x0a\x20\x20\x20\x20\x69\x6e\x73\x74\x61\x6e\x74\x69\x61\x74\x65\x64\x20\x75\x6e\x6c\x65\x73\x73\x20\x61\x6c\x6c\x20\x6f\x66\x20\x69\x74\x73\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x61\x72\x65\x20\x6f\x76\x65\x72\x72\x69\x64\x64\x65\x6e\x2e\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x63\x61\x6c\x6c\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x79\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x6f\x72\x6d\x61\x6c\x0a\x20\x20\x20\x20\x27\x73\x75\x70\x65\x72\x27\x20\x63\x61\x6c\x6c\x20\x6d\x65\x63\x68\x61\x6e\x69\x73\x6d\x73\x2e\x20\x20\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x28\x29\x20\x6d\x61\x79\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x64\x65\x63\x6c\x61\x72\x65\x0a\x20\x20\x20\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x66\x6f\x72\x20\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73\x20\x61\x6e\x64\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x55\x73\x61\x67\x65\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x3d\x41\x42\x43\x4d\x65\x74\x61\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x6d\x65\x74\x68\x6f\x64\x28\x73\x65\x6c\x66\x2c\x20\x61\x72\x67\x31\x2c\x20\x61\x72\x67\x32\x2c\x20\x61\x72\x67\x4e\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -abc_toplevel_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & abc_toplevel_consts_1_consts_0._ascii.ob_base, - Py_True, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(__isabstractmethod__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -abc_toplevel_consts_1_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_abstractmethod = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abstractmethod", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -abc_toplevel_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x22\x00\x24\x28\x80\x47\xd4\x04\x20\xd8\x0b\x12\x80\x4e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_funcobj = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "funcobj", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_funcobj._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(20) -abc_toplevel_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & abc_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 7, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_abstractmethod._ascii.ob_base, - .co_qualname = & const_str_abstractmethod._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str_abstractclassmethod = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abstractclassmethod", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[265]; - } -abc_toplevel_consts_2_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 264, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2c\x20\x75\x73\x65\x20\x27\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x27\x20\x77\x69\x74\x68\x20\x27\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x27\x20\x69\x6e\x73\x74\x65\x61\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x41\x42\x43\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x63\x6c\x61\x73\x73\x6d\x65\x74\x68\x6f\x64\x28\x63\x6c\x73\x2c\x20\x2e\x2e\x2e\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -abc_toplevel_consts_2_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(__isabstractmethod__), - & const_str_super._ascii.ob_base, - &_Py_ID(__init__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -abc_toplevel_consts_2_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abstractclassmethod.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[42]; - } -abc_toplevel_consts_2_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 41, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd8\x28\x2c\x88\x08\xd4\x08\x25\xdd\x08\x0d\x89\x07\x8c\x07\xd7\x08\x18\xd2\x08\x18\x98\x18\xd1\x08\x22\xd4\x08\x22\xd0\x08\x22\xd0\x08\x22\xd0\x08\x22", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_callable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "callable", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -abc_toplevel_consts_2_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_callable._ascii.ob_base, - &_Py_ID(__class__), - }, - }, -}; -static - struct _PyCode_DEF(88) -abc_toplevel_consts_2_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 44, - }, - .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_2_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 43, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & abc_toplevel_consts_2_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & abc_toplevel_consts_2_consts_3_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_2_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x64\x01\x7c\x01\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -abc_toplevel_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_abstractclassmethod._ascii.ob_base, - & abc_toplevel_consts_2_consts_1._ascii.ob_base, - Py_True, - & abc_toplevel_consts_2_consts_3.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -abc_toplevel_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__isabstractmethod__), - &_Py_ID(__init__), - &_Py_ID(__classcell__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[75]; - } -abc_toplevel_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 74, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0a\x05\x08\xf0\x00\x0a\x05\x08\xf0\x18\x00\x1c\x20\xd0\x04\x18\xf0\x04\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23", -}; -static - struct _PyCode_DEF(38) -abc_toplevel_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & abc_toplevel_consts_2_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 28, - .co_nlocalsplus = 1, - .co_nlocals = 0, - .co_nplaincellvars = 1, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_abstractclassmethod._ascii.ob_base, - .co_qualname = & const_str_abstractclassmethod._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x88\x00\x66\x01\x64\x03\x84\x08\x5a\x05\x88\x00\x78\x01\x5a\x06\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str_abstractstaticmethod = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abstractstaticmethod", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[264]; - } -abc_toplevel_consts_4_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 263, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2c\x20\x75\x73\x65\x20\x27\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x27\x20\x77\x69\x74\x68\x20\x27\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x27\x20\x69\x6e\x73\x74\x65\x61\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x41\x42\x43\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x73\x74\x61\x74\x69\x63\x6d\x65\x74\x68\x6f\x64\x28\x2e\x2e\x2e\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -abc_toplevel_consts_4_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abstractstaticmethod.__init__", -}; -static - struct _PyCode_DEF(88) -abc_toplevel_consts_4_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 44, - }, - .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_2_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 63, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & abc_toplevel_consts_2_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & abc_toplevel_consts_4_consts_3_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_2_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x64\x01\x7c\x01\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -abc_toplevel_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_abstractstaticmethod._ascii.ob_base, - & abc_toplevel_consts_4_consts_1._ascii.ob_base, - Py_True, - & abc_toplevel_consts_4_consts_3.ob_base.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(38) -abc_toplevel_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & abc_toplevel_consts_4_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 48, - .co_nlocalsplus = 1, - .co_nlocals = 0, - .co_nplaincellvars = 1, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_abstractstaticmethod._ascii.ob_base, - .co_qualname = & const_str_abstractstaticmethod._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x88\x00\x66\x01\x64\x03\x84\x08\x5a\x05\x88\x00\x78\x01\x5a\x06\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_abstractproperty = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abstractproperty", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[250]; - } -abc_toplevel_consts_6_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 249, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x69\x6e\x64\x69\x63\x61\x74\x69\x6e\x67\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2c\x20\x75\x73\x65\x20\x27\x70\x72\x6f\x70\x65\x72\x74\x79\x27\x20\x77\x69\x74\x68\x20\x27\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x27\x20\x69\x6e\x73\x74\x65\x61\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x43\x28\x41\x42\x43\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x70\x72\x6f\x70\x65\x72\x74\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x40\x61\x62\x73\x74\x72\x61\x63\x74\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x20\x6d\x79\x5f\x61\x62\x73\x74\x72\x61\x63\x74\x5f\x70\x72\x6f\x70\x65\x72\x74\x79\x28\x73\x65\x6c\x66\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x2e\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -abc_toplevel_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_abstractproperty._ascii.ob_base, - & abc_toplevel_consts_6_consts_1._ascii.ob_base, - Py_True, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -abc_toplevel_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__isabstractmethod__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[35]; - } -abc_toplevel_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 34, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0a\x05\x08\xf0\x00\x0a\x05\x08\xf0\x18\x00\x1c\x20\xd0\x04\x18\xd0\x04\x18\xd0\x04\x18", -}; -static - struct _PyCode_DEF(22) -abc_toplevel_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 11, - }, - .co_consts = & abc_toplevel_consts_6_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 68, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_abstractproperty._ascii.ob_base, - .co_qualname = & const_str_abstractproperty._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_get_cache_token = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "get_cache_token", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__abc_init = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_init", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__abc_register = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_register", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str__abc_instancecheck = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_instancecheck", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str__abc_subclasscheck = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_subclasscheck", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__get_dump = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_dump", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__reset_registry = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_reset_registry", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__reset_caches = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_reset_caches", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -abc_toplevel_consts_9 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_get_cache_token._ascii.ob_base, - & const_str__abc_init._ascii.ob_base, - & const_str__abc_register._ascii.ob_base, - & const_str__abc_instancecheck._ascii.ob_base, - & const_str__abc_subclasscheck._ascii.ob_base, - & const_str__get_dump._ascii.ob_base, - & const_str__reset_registry._ascii.ob_base, - & const_str__reset_caches._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_ABCMeta = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[657]; - } -abc_toplevel_consts_10_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 656, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x4d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x66\x6f\x72\x20\x64\x65\x66\x69\x6e\x69\x6e\x67\x20\x41\x62\x73\x74\x72\x61\x63\x74\x20\x42\x61\x73\x65\x20\x43\x6c\x61\x73\x73\x65\x73\x20\x28\x41\x42\x43\x73\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x55\x73\x65\x20\x74\x68\x69\x73\x20\x6d\x65\x74\x61\x63\x6c\x61\x73\x73\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x41\x42\x43\x2e\x20\x20\x41\x6e\x20\x41\x42\x43\x20\x63\x61\x6e\x20\x62\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x61\x63\x74\x73\x20\x61\x73\x20\x61\x20\x6d\x69\x78\x2d\x69\x6e\x20\x63\x6c\x61\x73\x73\x2e\x20\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x61\x6c\x73\x6f\x20\x72\x65\x67\x69\x73\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x75\x6e\x72\x65\x6c\x61\x74\x65\x64\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x63\x6c\x61\x73\x73\x65\x73\x20\x28\x65\x76\x65\x6e\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x20\x63\x6c\x61\x73\x73\x65\x73\x29\x20\x61\x6e\x64\x20\x75\x6e\x72\x65\x6c\x61\x74\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x41\x42\x43\x73\x20\x61\x73\x20\x27\x76\x69\x72\x74\x75\x61\x6c\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x27\x20\x2d\x2d\x20\x74\x68\x65\x73\x65\x20\x61\x6e\x64\x20\x74\x68\x65\x69\x72\x20\x64\x65\x73\x63\x65\x6e\x64\x61\x6e\x74\x73\x20\x77\x69\x6c\x6c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x41\x42\x43\x20\x62\x79\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x73\x73\x75\x62\x63\x6c\x61\x73\x73\x28\x29\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2c\x20\x62\x75\x74\x20\x74\x68\x65\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x41\x42\x43\x20\x77\x6f\x6e\x27\x74\x20\x73\x68\x6f\x77\x20\x75\x70\x20\x69\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x68\x65\x69\x72\x20\x4d\x52\x4f\x20\x28\x4d\x65\x74\x68\x6f\x64\x20\x52\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x20\x4f\x72\x64\x65\x72\x29\x20\x6e\x6f\x72\x20\x77\x69\x6c\x6c\x20\x6d\x65\x74\x68\x6f\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x41\x42\x43\x20\x62\x65\x20\x63\x61\x6c\x6c\x61\x62\x6c\x65\x20\x28\x6e\x6f\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x76\x65\x6e\x20\x76\x69\x61\x20\x73\x75\x70\x65\x72\x28\x29\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -abc_toplevel_consts_10_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_super._ascii.ob_base, - &_Py_ID(__new__), - & const_str__abc_init._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -abc_toplevel_consts_10_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta.__new__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[55]; - } -abc_toplevel_consts_10_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 54, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd8\x12\x21\x95\x25\x91\x27\x94\x27\x94\x2f\xa0\x24\xa8\x04\xa8\x65\xb0\x59\xd0\x12\x49\xd0\x12\x49\xc0\x26\xd0\x12\x49\xd0\x12\x49\x88\x43\xdd\x0c\x15\x90\x63\x89\x4e\x8c\x4e\x88\x4e\xd8\x13\x16\x88\x4a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_mcls = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mcls", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_bases = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bases", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_namespace = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "namespace", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -abc_toplevel_consts_10_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_mcls._ascii.ob_base, - &_Py_ID(name), - & const_str_bases._ascii.ob_base, - & const_str_namespace._ascii.ob_base, - & const_str_kwargs._ascii.ob_base, - & const_str_cls._ascii.ob_base, - &_Py_ID(__class__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -abc_toplevel_consts_10_consts_2_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\x20\x20\x20\x20\x20\x20\x80", -}; -static - struct _PyCode_DEF(96) -abc_toplevel_consts_10_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 48, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 11, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 4, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 105, - .co_nlocalsplus = 7, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & abc_toplevel_consts_10_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & abc_toplevel_consts_10_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__new__), - .co_qualname = & abc_toplevel_consts_10_consts_2_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x66\x04\x69\x00\x7c\x04\xa4\x01\x8e\x01\x7d\x05\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x05\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[124]; - } -abc_toplevel_consts_10_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 123, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x67\x69\x73\x74\x65\x72\x20\x61\x20\x76\x69\x72\x74\x75\x61\x6c\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x20\x6f\x66\x20\x61\x6e\x20\x41\x42\x43\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x2c\x20\x74\x6f\x20\x61\x6c\x6c\x6f\x77\x20\x75\x73\x61\x67\x65\x20\x61\x73\x20\x61\x20\x63\x6c\x61\x73\x73\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & abc_toplevel_consts_10_consts_3_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__abc_register._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_register = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "register", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -abc_toplevel_consts_10_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta.register", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -abc_toplevel_consts_10_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x14\x21\xa0\x13\xa0\x68\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_subclass = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "subclass", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -abc_toplevel_consts_10_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_subclass._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(34) -abc_toplevel_consts_10_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & abc_toplevel_consts_10_consts_3_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 110, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_10_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_register._ascii.ob_base, - .co_qualname = & abc_toplevel_consts_10_consts_3_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[40]; - } -abc_toplevel_consts_10_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 39, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Override for isinstance(instance, cls).", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & abc_toplevel_consts_10_consts_4_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__abc_instancecheck._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -abc_toplevel_consts_10_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta.__instancecheck__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -abc_toplevel_consts_10_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x13\x25\xa0\x63\xa8\x38\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_instance = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "instance", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -abc_toplevel_consts_10_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_instance._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(34) -abc_toplevel_consts_10_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & abc_toplevel_consts_10_consts_4_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 117, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_10_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__instancecheck__), - .co_qualname = & abc_toplevel_consts_10_consts_4_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[40]; - } -abc_toplevel_consts_10_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 39, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Override for issubclass(subclass, cls).", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & abc_toplevel_consts_10_consts_5_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__abc_subclasscheck._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -abc_toplevel_consts_10_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta.__subclasscheck__", -}; -static - struct _PyCode_DEF(34) -abc_toplevel_consts_10_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & abc_toplevel_consts_10_consts_5_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 121, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_10_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasscheck__), - .co_qualname = & abc_toplevel_consts_10_consts_5_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[40]; - } -abc_toplevel_consts_10_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 39, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Debug helper to print the ABC registry.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -abc_toplevel_consts_10_consts_7_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Class: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -abc_toplevel_consts_10_consts_7_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Inv. counter: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -abc_toplevel_consts_10_consts_7_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_registry: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -abc_toplevel_consts_10_consts_7_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_cache: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -abc_toplevel_consts_10_consts_7_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_negative_cache: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -abc_toplevel_consts_10_consts_7_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_negative_cache_version: ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -abc_toplevel_consts_10_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & abc_toplevel_consts_10_consts_7_consts_0._ascii.ob_base, - & abc_toplevel_consts_10_consts_7_consts_1._ascii.ob_base, - &_Py_STR(dot), - & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, - & abc_toplevel_consts_10_consts_7_consts_4._ascii.ob_base, - & abc_toplevel_consts_10_consts_7_consts_5._ascii.ob_base, - & abc_toplevel_consts_10_consts_7_consts_6._ascii.ob_base, - & abc_toplevel_consts_10_consts_7_consts_7._ascii.ob_base, - & abc_toplevel_consts_10_consts_7_consts_8._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -abc_toplevel_consts_10_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_print._ascii.ob_base, - &_Py_ID(__module__), - &_Py_ID(__qualname__), - & const_str_get_cache_token._ascii.ob_base, - & const_str__get_dump._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__dump_registry = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_dump_registry", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -abc_toplevel_consts_10_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta._dump_registry", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[235]; - } -abc_toplevel_consts_10_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 234, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0c\x11\xd0\x12\x3f\x98\x43\x9c\x4e\xd0\x12\x3f\xd0\x12\x3f\xa8\x53\xd4\x2d\x3d\xd0\x12\x3f\xd0\x12\x3f\xc0\x64\xd0\x0c\x4b\xd1\x0c\x4b\xd4\x0c\x4b\xd0\x0c\x4b\xdd\x0c\x11\xd0\x12\x36\xa5\x3f\xd1\x23\x34\xd4\x23\x34\xd0\x12\x36\xd0\x12\x36\xb8\x54\xd0\x0c\x42\xd1\x0c\x42\xd4\x0c\x42\xd0\x0c\x42\xe5\x2c\x35\xb0\x63\xa9\x4e\xac\x4e\xf1\x03\x01\x0d\x2a\x88\x5d\x98\x4a\xd0\x28\x3b\xd8\x0d\x28\xdd\x0c\x11\xd0\x12\x35\xa0\x4d\xd0\x12\x35\xd0\x12\x35\xb8\x44\xd0\x0c\x41\xd1\x0c\x41\xd4\x0c\x41\xd0\x0c\x41\xdd\x0c\x11\xd0\x12\x2f\xa0\x1a\xd0\x12\x2f\xd0\x12\x2f\xb0\x64\xd0\x0c\x3b\xd1\x0c\x3b\xd4\x0c\x3b\xd0\x0c\x3b\xdd\x0c\x11\xd0\x12\x41\xd0\x2a\x3d\xd0\x12\x41\xd0\x12\x41\xc8\x04\xd0\x0c\x4d\xd1\x0c\x4d\xd4\x0c\x4d\xd0\x0c\x4d\xdd\x0c\x11\xd0\x12\x51\xd0\x32\x4d\xd0\x12\x51\xd0\x12\x51\xd8\x17\x1b\xf0\x03\x01\x0d\x1d\xf1\x00\x01\x0d\x1d\xf4\x00\x01\x0d\x1d\xf0\x00\x01\x0d\x1d\xf0\x00\x01\x0d\x1d\xf0\x00\x01\x0d\x1d", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__abc_registry = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_registry", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str__abc_cache = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_cache", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str__abc_negative_cache = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_negative_cache", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -const_str__abc_negative_cache_version = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_negative_cache_version", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -abc_toplevel_consts_10_consts_7_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_file._ascii.ob_base, - & const_str__abc_registry._ascii.ob_base, - & const_str__abc_cache._ascii.ob_base, - & const_str__abc_negative_cache._ascii.ob_base, - & const_str__abc_negative_cache_version._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(336) -abc_toplevel_consts_10_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 168, - }, - .co_consts = & abc_toplevel_consts_10_consts_7_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 125, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_10_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__dump_registry._ascii.ob_base, - .co_qualname = & abc_toplevel_consts_10_consts_7_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x9d\x04\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x04\x00\x00\x7d\x02\x7d\x03\x7d\x04\x7d\x05\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x02\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x7c\x03\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x04\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x05\x9b\x02\x9d\x02\x7c\x01\xac\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[47]; - } -abc_toplevel_consts_10_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 46, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Clear the registry (for debugging or testing).", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -abc_toplevel_consts_10_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & abc_toplevel_consts_10_consts_8_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__reset_registry._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str__abc_registry_clear = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_registry_clear", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -abc_toplevel_consts_10_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta._abc_registry_clear", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -abc_toplevel_consts_10_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0c\x1b\x98\x43\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(36) -abc_toplevel_consts_10_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & abc_toplevel_consts_10_consts_8_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 137, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_10_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__abc_registry_clear._ascii.ob_base, - .co_qualname = & abc_toplevel_consts_10_consts_8_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -abc_toplevel_consts_10_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Clear the caches (for debugging or testing).", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -abc_toplevel_consts_10_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & abc_toplevel_consts_10_consts_9_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_10_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__reset_caches._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__abc_caches_clear = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc_caches_clear", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -abc_toplevel_consts_10_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABCMeta._abc_caches_clear", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -abc_toplevel_consts_10_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0c\x19\x98\x23\xd1\x0c\x1e\xd4\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e", -}; -static - struct _PyCode_DEF(36) -abc_toplevel_consts_10_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & abc_toplevel_consts_10_consts_9_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 141, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_10_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str__abc_caches_clear._ascii.ob_base, - .co_qualname = & abc_toplevel_consts_10_consts_9_qualname._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -abc_toplevel_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_ABCMeta._ascii.ob_base, - & abc_toplevel_consts_10_consts_1._ascii.ob_base, - & abc_toplevel_consts_10_consts_2.ob_base.ob_base, - & abc_toplevel_consts_10_consts_3.ob_base.ob_base, - & abc_toplevel_consts_10_consts_4.ob_base.ob_base, - & abc_toplevel_consts_10_consts_5.ob_base.ob_base, - Py_None, - & abc_toplevel_consts_10_consts_7.ob_base.ob_base, - & abc_toplevel_consts_10_consts_8.ob_base.ob_base, - & abc_toplevel_consts_10_consts_9.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -abc_toplevel_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__new__), - & const_str_register._ascii.ob_base, - &_Py_ID(__instancecheck__), - &_Py_ID(__subclasscheck__), - & const_str__dump_registry._ascii.ob_base, - & const_str__abc_registry_clear._ascii.ob_base, - & const_str__abc_caches_clear._ascii.ob_base, - &_Py_ID(__classcell__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[162]; - } -abc_toplevel_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 161, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x0b\x09\x0c\xf0\x00\x0b\x09\x0c\xf0\x18\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x00\x03\x09\x17\xf0\x0a\x05\x09\x30\xf0\x00\x05\x09\x30\xf0\x00\x05\x09\x30\xf0\x0e\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x08\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x00\x02\x09\x35\xf0\x08\x0a\x09\x1d\xf0\x00\x0a\x09\x1d\xf0\x00\x0a\x09\x1d\xf0\x00\x0a\x09\x1d\xf0\x18\x02\x09\x21\xf0\x00\x02\x09\x21\xf0\x00\x02\x09\x21\xf0\x08\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f\xf0\x00\x02\x09\x1f", -}; -static - struct _PyCode_DEF(72) -abc_toplevel_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & abc_toplevel_consts_10_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 92, - .co_nlocalsplus = 1, - .co_nlocals = 0, - .co_nplaincellvars = 1, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_ABCMeta._ascii.ob_base, - .co_qualname = & const_str_ABCMeta._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x88\x00\x66\x01\x64\x02\x84\x08\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x0a\x64\x07\x84\x01\x5a\x08\x64\x08\x84\x00\x5a\x09\x64\x09\x84\x00\x5a\x0a\x88\x00\x78\x01\x5a\x0b\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -abc_toplevel_consts_12 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_ABCMeta._ascii.ob_base, - & const_str_get_cache_token._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_abc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abc", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[668]; - } -abc_toplevel_consts_14_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 667, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x63\x61\x6c\x63\x75\x6c\x61\x74\x65\x20\x74\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x6f\x66\x20\x61\x6e\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x20\x63\x6c\x61\x73\x73\x20\x68\x61\x73\x20\x68\x61\x64\x20\x6f\x6e\x65\x20\x6f\x66\x20\x69\x74\x73\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x77\x61\x73\x20\x63\x72\x65\x61\x74\x65\x64\x2c\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x20\x75\x6e\x74\x69\x6c\x0a\x20\x20\x20\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x61\x6c\x6c\x65\x64\x2e\x20\x41\x6c\x74\x65\x72\x6e\x61\x74\x69\x76\x65\x6c\x79\x2c\x20\x69\x66\x20\x61\x20\x6e\x65\x77\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x0a\x20\x20\x20\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x2c\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x6f\x6e\x6c\x79\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\x64\x20\x61\x6e\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x6d\x65\x74\x68\x6f\x64\x20\x6f\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x6c\x61\x73\x73\x20\x61\x66\x74\x65\x72\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x61\x6c\x6c\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x63\x61\x6c\x6c\x65\x64\x20\x62\x65\x66\x6f\x72\x65\x20\x61\x6e\x79\x20\x75\x73\x65\x20\x69\x73\x20\x6d\x61\x64\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x2c\x0a\x20\x20\x20\x20\x75\x73\x75\x61\x6c\x6c\x79\x20\x69\x6e\x20\x63\x6c\x61\x73\x73\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x73\x20\x74\x68\x61\x74\x20\x61\x64\x64\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x75\x62\x6a\x65\x63\x74\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x63\x6c\x73\x2c\x20\x74\x6f\x20\x61\x6c\x6c\x6f\x77\x20\x75\x73\x61\x67\x65\x20\x61\x73\x20\x61\x20\x63\x6c\x61\x73\x73\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x63\x6c\x73\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x6e\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x6f\x66\x20\x41\x42\x43\x4d\x65\x74\x61\x2c\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x68\x69\x6e\x67\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -abc_toplevel_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & abc_toplevel_consts_14_consts_0._ascii.ob_base, - &_Py_ID(__abstractmethods__), - (PyObject *)& _Py_SINGLETON(tuple_empty), - Py_None, - &_Py_ID(__isabstractmethod__), - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_frozenset = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "frozenset", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -abc_toplevel_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_hasattr._ascii.ob_base, - & const_str_set._ascii.ob_base, - &_Py_ID(__bases__), - &_Py_ID(getattr), - &_Py_ID(add), - &_Py_ID(__dict__), - &_Py_ID(items), - & const_str_frozenset._ascii.ob_base, - &_Py_ID(__abstractmethods__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str_update_abstractmethods = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "update_abstractmethods", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[245]; - } -abc_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 244, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x20\x00\x0c\x13\x90\x33\xd0\x18\x2d\xd1\x0b\x2e\xd4\x0b\x2e\xf0\x00\x04\x05\x13\xf0\x08\x00\x10\x13\x88\x0a\xe5\x10\x13\x91\x05\x94\x05\x80\x49\xf0\x06\x00\x11\x14\x94\x0d\xf0\x00\x04\x05\x24\xf0\x00\x04\x05\x24\x88\x04\xdd\x14\x1b\x98\x44\xd0\x22\x37\xb8\x12\xd1\x14\x3c\xd4\x14\x3c\xf0\x00\x03\x09\x24\xf0\x00\x03\x09\x24\x88\x44\xdd\x14\x1b\x98\x43\xa0\x14\xa0\x74\xd1\x14\x2c\xd4\x14\x2c\x88\x45\xdd\x0f\x16\x90\x75\xd0\x1e\x34\xb0\x65\xd1\x0f\x3c\xd4\x0f\x3c\xf0\x00\x01\x0d\x24\xd8\x10\x19\x97\x0d\x92\x0d\x98\x64\xd1\x10\x23\xd4\x10\x23\xd0\x10\x23\xf8\xf0\x07\x03\x09\x24\xf0\x0a\x00\x18\x1b\x94\x7c\xd7\x17\x29\xd2\x17\x29\xd1\x17\x2b\xd4\x17\x2b\xf0\x00\x02\x05\x20\xf0\x00\x02\x05\x20\x89\x0b\x88\x04\x88\x65\xdd\x0b\x12\x90\x35\xd0\x1a\x30\xb0\x25\xd1\x0b\x38\xd4\x0b\x38\xf0\x00\x01\x09\x20\xd8\x0c\x15\x8f\x4d\x8a\x4d\x98\x24\xd1\x0c\x1f\xd4\x0c\x1f\xd0\x0c\x1f\xf8\xdd\x1e\x27\xa8\x09\xd1\x1e\x32\xd4\x1e\x32\x80\x43\xd4\x04\x1b\xd8\x0b\x0e\x80\x4a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_abstracts = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abstracts", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_scls = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "scls", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -abc_toplevel_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_abstracts._ascii.ob_base, - & const_str_scls._ascii.ob_base, - &_Py_ID(name), - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(418) -abc_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 209, - }, - .co_consts = & abc_toplevel_consts_14_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 146, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_update_abstractmethods._ascii.ob_base, - .co_qualname = & const_str_update_abstractmethods._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x4d\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x39\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x04\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x3a\x8c\x4e\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x2b\x5c\x02\x00\x00\x7d\x03\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x04\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x2c\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_ABC = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ABC", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[87]; - } -abc_toplevel_consts_15_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 86, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x48\x65\x6c\x70\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x74\x68\x61\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x77\x61\x79\x20\x74\x6f\x20\x63\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x41\x42\x43\x20\x75\x73\x69\x6e\x67\x0a\x20\x20\x20\x20\x69\x6e\x68\x65\x72\x69\x74\x61\x6e\x63\x65\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -abc_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_ABC._ascii.ob_base, - & abc_toplevel_consts_15_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -abc_toplevel_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[32]; - } -abc_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 31, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x05\x08\xf0\x00\x02\x05\x08\xf0\x06\x00\x11\x13\x80\x49\x80\x49\x80\x49", -}; -static - struct _PyCode_DEF(22) -abc_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 11, - }, - .co_consts = & abc_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 184, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_ABC._ascii.ob_base, - .co_qualname = & const_str_ABC._ascii.ob_base, - .co_linetable = & abc_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -abc_toplevel_consts_17 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(metaclass), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[19]; - }_object; - } -abc_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 19, - }, - .ob_item = { - & abc_toplevel_consts_0._ascii.ob_base, - & abc_toplevel_consts_1.ob_base.ob_base, - & abc_toplevel_consts_2.ob_base.ob_base, - & const_str_abstractclassmethod._ascii.ob_base, - & abc_toplevel_consts_4.ob_base.ob_base, - & const_str_abstractstaticmethod._ascii.ob_base, - & abc_toplevel_consts_6.ob_base.ob_base, - & const_str_abstractproperty._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & abc_toplevel_consts_9._object.ob_base.ob_base, - & abc_toplevel_consts_10.ob_base.ob_base, - & const_str_ABCMeta._ascii.ob_base, - & abc_toplevel_consts_12._object.ob_base.ob_base, - & const_str_abc._ascii.ob_base, - & abc_toplevel_consts_14.ob_base.ob_base, - & abc_toplevel_consts_15.ob_base.ob_base, - & const_str_ABC._ascii.ob_base, - & abc_toplevel_consts_17._object.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str__abc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abc", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__py_abc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_py_abc", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[24]; - }_object; - } -abc_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 24, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_abstractmethod._ascii.ob_base, - & const_str_classmethod._ascii.ob_base, - & const_str_abstractclassmethod._ascii.ob_base, - & const_str_staticmethod._ascii.ob_base, - & const_str_abstractstaticmethod._ascii.ob_base, - & const_str_property._ascii.ob_base, - & const_str_abstractproperty._ascii.ob_base, - & const_str__abc._ascii.ob_base, - & const_str_get_cache_token._ascii.ob_base, - & const_str__abc_init._ascii.ob_base, - & const_str__abc_register._ascii.ob_base, - & const_str__abc_instancecheck._ascii.ob_base, - & const_str__abc_subclasscheck._ascii.ob_base, - & const_str__get_dump._ascii.ob_base, - & const_str__reset_registry._ascii.ob_base, - & const_str__reset_caches._ascii.ob_base, - & const_str_type._ascii.ob_base, - & const_str_ABCMeta._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str__py_abc._ascii.ob_base, - &_Py_ID(__module__), - & const_str_update_abstractmethods._ascii.ob_base, - & const_str_ABC._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[448]; - } -abc_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 447, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x08\x00\x01\x3a\xd0\x00\x39\xf0\x06\x12\x01\x13\xf0\x00\x12\x01\x13\xf0\x00\x12\x01\x13\xf0\x2a\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\x98\x2b\xf1\x00\x11\x01\x23\xf4\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x28\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x00\x11\x01\x23\x98\x3c\xf1\x00\x11\x01\x23\xf4\x00\x11\x01\x23\xf0\x00\x11\x01\x23\xf0\x28\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\x90\x78\xf1\x00\x0d\x01\x20\xf4\x00\x0d\x01\x20\xf0\x00\x0d\x01\x20\xf0\x20\x3b\x01\x1f\xf0\x02\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x0e\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\x90\x24\xf1\x00\x33\x05\x1f\xf4\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf0\x00\x33\x05\x1f\xf8\xf0\x09\x00\x08\x13\xf0\x00\x02\x01\x1f\xf0\x00\x02\x01\x1f\xf0\x00\x02\x01\x1f\xd8\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd0\x04\x30\xd8\x19\x1e\x80\x47\xd4\x04\x16\xd0\x04\x16\xd0\x04\x16\xf0\x05\x02\x01\x1f\xf8\xf8\xf8\xf0\x74\x01\x23\x01\x0f\xf0\x00\x23\x01\x0f\xf0\x00\x23\x01\x0f\xf0\x4c\x01\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\x90\x47\xf0\x00\x04\x01\x13\xf1\x00\x04\x01\x13\xf4\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -abc_toplevel_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\xb1\x14\x41\x14\x00\xc1\x14\x14\x41\x2b\x03\xc1\x2a\x01\x41\x2b\x03", -}; -static - struct _PyCode_DEF(260) -abc_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 130, - }, - .co_consts = & abc_toplevel_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = & abc_toplevel_exceptiontable.ob_base.ob_base, - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & abc_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & abc_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x84\x00\x5a\x01\x02\x00\x47\x00\x64\x02\x84\x00\x64\x03\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x03\x02\x00\x47\x00\x64\x04\x84\x00\x64\x05\x65\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x02\x00\x47\x00\x64\x06\x84\x00\x64\x07\x65\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x09\x00\x64\x08\x64\x09\x6c\x08\x6d\x09\x5a\x09\x6d\x0a\x5a\x0a\x6d\x0b\x5a\x0b\x6d\x0c\x5a\x0c\x6d\x0d\x5a\x0d\x6d\x0e\x5a\x0e\x6d\x0f\x5a\x0f\x6d\x10\x5a\x10\x01\x00\x02\x00\x47\x00\x64\x0a\x84\x00\x64\x0b\x65\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x12\x6e\x1a\x23\x00\x65\x13\x24\x00\x72\x12\x01\x00\x64\x08\x64\x0c\x6c\x14\x6d\x12\x5a\x12\x6d\x09\x5a\x09\x01\x00\x64\x0d\x65\x12\x5f\x15\x00\x00\x00\x00\x00\x00\x00\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x0e\x84\x00\x5a\x16\x02\x00\x47\x00\x64\x0f\x84\x00\x64\x10\x65\x12\xac\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x17\x64\x12\x53\x00", - ._co_firsttraceable = 0, -}; -static void abc_do_patchups(void) { -} - -PyObject * -_Py_get_abc_toplevel(void) -{ - abc_do_patchups(); - return Py_NewRef((PyObject *) &abc_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[159]; - } -codecs_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 158, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x63\x6f\x64\x65\x63\x73\x20\x2d\x2d\x20\x50\x79\x74\x68\x6f\x6e\x20\x43\x6f\x64\x65\x63\x20\x52\x65\x67\x69\x73\x74\x72\x79\x2c\x20\x41\x50\x49\x20\x61\x6e\x64\x20\x68\x65\x6c\x70\x65\x72\x73\x2e\x0a\x0a\x0a\x57\x72\x69\x74\x74\x65\x6e\x20\x62\x79\x20\x4d\x61\x72\x63\x2d\x41\x6e\x64\x72\x65\x20\x4c\x65\x6d\x62\x75\x72\x67\x20\x28\x6d\x61\x6c\x40\x6c\x65\x6d\x62\x75\x72\x67\x2e\x63\x6f\x6d\x29\x2e\x0a\x0a\x28\x63\x29\x20\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x43\x4e\x52\x49\x2c\x20\x41\x6c\x6c\x20\x52\x69\x67\x68\x74\x73\x20\x52\x65\x73\x65\x72\x76\x65\x64\x2e\x20\x4e\x4f\x20\x57\x41\x52\x52\x41\x4e\x54\x59\x2e\x0a\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_54_consts_5._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -codecs_toplevel_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Failed to load the builtin codecs: %s", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_lookup = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lookup", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_EncodedFile = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "EncodedFile", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_BOM = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_BOM_BE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_BE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_BOM_LE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_LE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_BOM32_BE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM32_BE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_BOM32_LE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM32_LE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_BOM64_BE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM64_BE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_BOM64_LE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM64_LE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_BOM_UTF8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_UTF8", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_BOM_UTF16 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_UTF16", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_BOM_UTF16_LE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_UTF16_LE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_BOM_UTF16_BE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_UTF16_BE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_BOM_UTF32 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_UTF32", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_BOM_UTF32_LE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_UTF32_LE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_BOM_UTF32_BE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BOM_UTF32_BE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_CodecInfo = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "CodecInfo", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_Codec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Codec", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_IncrementalEncoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalEncoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_IncrementalDecoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalDecoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_StreamReader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_StreamWriter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_StreamReaderWriter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_StreamRecoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_getencoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getencoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_getdecoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getdecoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_getincrementalencoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getincrementalencoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_getincrementaldecoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getincrementaldecoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_getreader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getreader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_getwriter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getwriter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_iterencode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "iterencode", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_iterdecode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "iterdecode", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_strict_errors = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "strict_errors", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_ignore_errors = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ignore_errors", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_replace_errors = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "replace_errors", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str_xmlcharrefreplace_errors = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "xmlcharrefreplace_errors", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -const_str_backslashreplace_errors = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "backslashreplace_errors", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_namereplace_errors = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "namereplace_errors", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_register_error = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "register_error", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_lookup_error = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lookup_error", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[44]; - }_object; - } -codecs_toplevel_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 44, - }, - .ob_item = { - & const_str_register._ascii.ob_base, - & const_str_lookup._ascii.ob_base, - &_Py_ID(open), - & const_str_EncodedFile._ascii.ob_base, - & const_str_BOM._ascii.ob_base, - & const_str_BOM_BE._ascii.ob_base, - & const_str_BOM_LE._ascii.ob_base, - & const_str_BOM32_BE._ascii.ob_base, - & const_str_BOM32_LE._ascii.ob_base, - & const_str_BOM64_BE._ascii.ob_base, - & const_str_BOM64_LE._ascii.ob_base, - & const_str_BOM_UTF8._ascii.ob_base, - & const_str_BOM_UTF16._ascii.ob_base, - & const_str_BOM_UTF16_LE._ascii.ob_base, - & const_str_BOM_UTF16_BE._ascii.ob_base, - & const_str_BOM_UTF32._ascii.ob_base, - & const_str_BOM_UTF32_LE._ascii.ob_base, - & const_str_BOM_UTF32_BE._ascii.ob_base, - & const_str_CodecInfo._ascii.ob_base, - & const_str_Codec._ascii.ob_base, - & const_str_IncrementalEncoder._ascii.ob_base, - & const_str_IncrementalDecoder._ascii.ob_base, - & const_str_StreamReader._ascii.ob_base, - & const_str_StreamWriter._ascii.ob_base, - & const_str_StreamReaderWriter._ascii.ob_base, - & const_str_StreamRecoder._ascii.ob_base, - & const_str_getencoder._ascii.ob_base, - & const_str_getdecoder._ascii.ob_base, - & const_str_getincrementalencoder._ascii.ob_base, - & const_str_getincrementaldecoder._ascii.ob_base, - & const_str_getreader._ascii.ob_base, - & const_str_getwriter._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(decode), - & const_str_iterencode._ascii.ob_base, - & const_str_iterdecode._ascii.ob_base, - & const_str_strict_errors._ascii.ob_base, - & const_str_ignore_errors._ascii.ob_base, - & const_str_replace_errors._ascii.ob_base, - & const_str_xmlcharrefreplace_errors._ascii.ob_base, - & const_str_backslashreplace_errors._ascii.ob_base, - & const_str_namereplace_errors._ascii.ob_base, - & const_str_register_error._ascii.ob_base, - & const_str_lookup_error._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[4]; - } -codecs_toplevel_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 3, - }, - .ob_shash = -1, - .ob_sval = "\xef\xbb\xbf", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -codecs_toplevel_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "\xff\xfe", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -codecs_toplevel_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "\xfe\xff", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -codecs_toplevel_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "\xff\xfe\x00\x00", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -codecs_toplevel_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "\x00\x00\xfe\xff", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[49]; - } -codecs_toplevel_consts_12_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 48, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Codec details when looking up the codec registry", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_12_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(_is_text_encoding), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_incrementalencoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "incrementalencoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_incrementaldecoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "incrementaldecoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_streamwriter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "streamwriter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_streamreader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "streamreader", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -codecs_toplevel_consts_12_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & const_str_tuple._ascii.ob_base, - &_Py_ID(__new__), - &_Py_ID(name), - &_Py_ID(encode), - &_Py_ID(decode), - & const_str_incrementalencoder._ascii.ob_base, - & const_str_incrementaldecoder._ascii.ob_base, - & const_str_streamwriter._ascii.ob_base, - & const_str_streamreader._ascii.ob_base, - &_Py_ID(_is_text_encoding), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -codecs_toplevel_consts_12_consts_5_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -codecs_toplevel_consts_12_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "CodecInfo.__new__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[105]; - } -codecs_toplevel_consts_12_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 104, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x10\x15\x8f\x7d\x8a\x7d\x98\x53\xa0\x36\xa8\x36\xb0\x3c\xc0\x1c\xd0\x22\x4e\xd1\x0f\x4f\xd4\x0f\x4f\x88\x04\xd8\x14\x18\x88\x04\x8c\x09\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x22\x34\x88\x04\xd4\x08\x1f\xd8\x22\x34\x88\x04\xd4\x08\x1f\xd8\x1c\x28\x88\x04\xd4\x08\x19\xd8\x1c\x28\x88\x04\xd4\x08\x19\xd8\x0b\x1c\xd0\x0b\x28\xd8\x25\x36\x88\x44\xd4\x0c\x22\xd8\x0f\x13\x88\x0b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -codecs_toplevel_consts_12_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(decode), - & const_str_streamreader._ascii.ob_base, - & const_str_streamwriter._ascii.ob_base, - & const_str_incrementalencoder._ascii.ob_base, - & const_str_incrementaldecoder._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(_is_text_encoding), - & const_str_self._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(184) -codecs_toplevel_consts_12_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 92, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_12_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 8, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 1, - .co_stacksize = 7, - .co_firstlineno = 94, - .co_nlocalsplus = 10, - .co_nlocals = 10, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_12_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__new__), - .co_qualname = & codecs_toplevel_consts_12_consts_5_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_12_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x7c\x04\x66\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x07\x7c\x09\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x09\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x09\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x09\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x09\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x09\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x09\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\x81\x07\x7c\x08\x7c\x09\x5f\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -codecs_toplevel_consts_12_consts_6_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "<%s.%s object for encoding %s at %#x>", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_12_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & codecs_toplevel_consts_12_consts_6_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -codecs_toplevel_consts_12_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(__class__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(name), - & const_str_id._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -codecs_toplevel_consts_12_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "CodecInfo.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[49]; - } -codecs_toplevel_consts_12_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 48, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x36\xd8\x11\x15\x94\x1e\xd4\x11\x2a\xa8\x44\xac\x4e\xd4\x2c\x47\xd8\x11\x15\x94\x19\x9d\x42\x98\x74\x99\x48\x9c\x48\xf0\x03\x01\x11\x26\xf1\x03\x02\x10\x26\xf0\x00\x02\x09\x26", -}; -static - struct _PyCode_DEF(96) -codecs_toplevel_consts_12_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 48, - }, - .co_consts = & codecs_toplevel_consts_12_consts_6_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_12_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 109, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & codecs_toplevel_consts_12_consts_6_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_12_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x66\x04\x7a\x06\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -codecs_toplevel_consts_12_consts_7 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - Py_None, - Py_None, - Py_None, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -codecs_toplevel_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_CodecInfo._ascii.ob_base, - & codecs_toplevel_consts_12_consts_1._ascii.ob_base, - Py_True, - Py_None, - & codecs_toplevel_consts_12_consts_4._object.ob_base.ob_base, - & codecs_toplevel_consts_12_consts_5.ob_base.ob_base, - & codecs_toplevel_consts_12_consts_6.ob_base.ob_base, - & codecs_toplevel_consts_12_consts_7._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -codecs_toplevel_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(_is_text_encoding), - &_Py_ID(__new__), - &_Py_ID(__repr__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[89]; - } -codecs_toplevel_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 88, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x3a\xd0\x04\x3a\xf0\x10\x00\x19\x1d\xd0\x04\x15\xe0\x45\x49\xd8\x3f\x43\xf0\x03\x0d\x05\x14\xe0\x1d\x21\xf0\x05\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x00\x0d\x05\x14\xf0\x1e\x03\x05\x26\xf0\x00\x03\x05\x26\xf0\x00\x03\x05\x26\xf0\x00\x03\x05\x26\xf0\x00\x03\x05\x26", -}; -static - struct _PyCode_DEF(46) -codecs_toplevel_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 23, - }, - .co_consts = & codecs_toplevel_consts_12_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 83, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_CodecInfo._ascii.ob_base, - .co_qualname = & const_str_CodecInfo._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x09\x00\x09\x00\x64\x07\x64\x03\x64\x04\x9c\x01\x64\x05\x84\x03\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[1082]; - } -codecs_toplevel_consts_14_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1081, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x44\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x66\x6f\x72\x20\x73\x74\x61\x74\x65\x6c\x65\x73\x73\x20\x65\x6e\x63\x6f\x64\x65\x72\x73\x2f\x64\x65\x63\x6f\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x2e\x65\x6e\x63\x6f\x64\x65\x28\x29\x2f\x2e\x64\x65\x63\x6f\x64\x65\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x69\x6e\x67\x20\x76\x61\x6c\x75\x65\x73\x20\x61\x72\x65\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x2d\x20\x72\x61\x69\x73\x65\x20\x61\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x65\x72\x72\x6f\x72\x20\x28\x6f\x72\x20\x61\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x69\x67\x6e\x6f\x72\x65\x27\x20\x2d\x20\x69\x67\x6e\x6f\x72\x65\x20\x74\x68\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x3b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x50\x79\x74\x68\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x6f\x66\x66\x69\x63\x69\x61\x6c\x20\x55\x2b\x46\x46\x46\x44\x20\x52\x45\x50\x4c\x41\x43\x45\x4d\x45\x4e\x54\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x43\x48\x41\x52\x41\x43\x54\x45\x52\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x69\x6e\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x63\x6f\x64\x65\x63\x73\x20\x6f\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x27\x3f\x27\x20\x6f\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x75\x72\x72\x6f\x67\x61\x74\x65\x65\x73\x63\x61\x70\x65\x27\x20\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x70\x72\x69\x76\x61\x74\x65\x20\x63\x6f\x64\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x55\x2b\x44\x43\x6e\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x78\x6d\x6c\x63\x68\x61\x72\x72\x65\x66\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x20\x58\x4d\x4c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x28\x6f\x6e\x6c\x79\x20\x66\x6f\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x64\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6e\x61\x6d\x65\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x20\x20\x20\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x5c\x4e\x7b\x2e\x2e\x2e\x7d\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x28\x6f\x6e\x6c\x79\x20\x66\x6f\x72\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x76\x61\x6c\x75\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\x78\x74\x65\x6e\x64\x65\x64\x20\x76\x69\x61\x20\x72\x65\x67\x69\x73\x74\x65\x72\x5f\x65\x72\x72\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[548]; - } -codecs_toplevel_consts_14_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 547, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x45\x6e\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x74\x75\x70\x6c\x65\x20\x28\x6f\x75\x74\x70\x75\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6c\x65\x6e\x67\x74\x68\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x64\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x74\x6f\x20\x61\x70\x70\x6c\x79\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x6d\x61\x79\x20\x6e\x6f\x74\x20\x73\x74\x6f\x72\x65\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x43\x6f\x64\x65\x63\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x20\x55\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x66\x6f\x72\x20\x63\x6f\x64\x65\x63\x73\x20\x77\x68\x69\x63\x68\x20\x68\x61\x76\x65\x20\x74\x6f\x20\x6b\x65\x65\x70\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x6b\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x66\x66\x69\x63\x69\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x7a\x65\x72\x6f\x20\x6c\x65\x6e\x67\x74\x68\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x61\x6e\x20\x65\x6d\x70\x74\x79\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x75\x74\x70\x75\x74\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x6e\x20\x74\x68\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x74\x75\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_14_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_14_consts_3_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_14_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_NotImplementedError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -codecs_toplevel_consts_14_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Codec.encode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -codecs_toplevel_consts_14_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x22\x00\x0f\x22\xd0\x08\x21", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_input = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "input", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_14_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_input._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct _PyCode_DEF(16) -codecs_toplevel_consts_14_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & codecs_toplevel_consts_14_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 138, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_14_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(encode), - .co_qualname = & codecs_toplevel_consts_14_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_14_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[755]; - } -codecs_toplevel_consts_14_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 754, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x44\x65\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x74\x75\x70\x6c\x65\x20\x28\x6f\x75\x74\x70\x75\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6c\x65\x6e\x67\x74\x68\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x70\x75\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x77\x68\x69\x63\x68\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x68\x65\x20\x62\x66\x5f\x67\x65\x74\x72\x65\x61\x64\x62\x75\x66\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x20\x73\x6c\x6f\x74\x2e\x20\x50\x79\x74\x68\x6f\x6e\x20\x73\x74\x72\x69\x6e\x67\x73\x2c\x20\x62\x75\x66\x66\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x6e\x64\x20\x6d\x65\x6d\x6f\x72\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x73\x20\x61\x72\x65\x20\x65\x78\x61\x6d\x70\x6c\x65\x73\x20\x6f\x66\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x73\x6c\x6f\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x64\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x74\x6f\x20\x61\x70\x70\x6c\x79\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x6d\x61\x79\x20\x6e\x6f\x74\x20\x73\x74\x6f\x72\x65\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x43\x6f\x64\x65\x63\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x20\x55\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x66\x6f\x72\x20\x63\x6f\x64\x65\x63\x73\x20\x77\x68\x69\x63\x68\x20\x68\x61\x76\x65\x20\x74\x6f\x20\x6b\x65\x65\x70\x20\x73\x74\x61\x74\x65\x20\x69\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x6b\x65\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x65\x66\x66\x69\x63\x69\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x7a\x65\x72\x6f\x20\x6c\x65\x6e\x67\x74\x68\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x20\x61\x6e\x20\x65\x6d\x70\x74\x79\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x75\x74\x70\x75\x74\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x6e\x20\x74\x68\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x74\x75\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_14_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_14_consts_4_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -codecs_toplevel_consts_14_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Codec.decode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -codecs_toplevel_consts_14_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x2a\x00\x0f\x22\xd0\x08\x21", -}; -static - struct _PyCode_DEF(16) -codecs_toplevel_consts_14_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & codecs_toplevel_consts_14_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 157, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_14_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(decode), - .co_qualname = & codecs_toplevel_consts_14_consts_4_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_14_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_14_consts_6 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(strict), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -codecs_toplevel_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_Codec._ascii.ob_base, - & codecs_toplevel_consts_14_consts_1._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_14_consts_3.ob_base.ob_base, - & codecs_toplevel_consts_14_consts_4.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -codecs_toplevel_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(encode), - &_Py_ID(decode), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[71]; - } -codecs_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 70, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x15\x05\x08\xf0\x00\x15\x05\x08\xf0\x2c\x11\x05\x22\xf0\x00\x11\x05\x22\xf0\x00\x11\x05\x22\xf0\x00\x11\x05\x22\xf0\x26\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22\xf0\x00\x15\x05\x22", -}; -static - struct _PyCode_DEF(34) -codecs_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & codecs_toplevel_consts_14_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 114, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Codec._ascii.ob_base, - .co_qualname = & const_str_Codec._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x06\x64\x03\x84\x01\x5a\x04\x64\x06\x64\x04\x84\x01\x5a\x05\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[233]; - } -codecs_toplevel_consts_16_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 232, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x41\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x65\x6e\x63\x6f\x64\x65\x73\x20\x61\x6e\x20\x69\x6e\x70\x75\x74\x20\x69\x6e\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x74\x65\x70\x73\x2e\x20\x54\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x63\x61\x6e\x0a\x20\x20\x20\x20\x62\x65\x20\x70\x61\x73\x73\x65\x64\x20\x70\x69\x65\x63\x65\x20\x62\x79\x20\x70\x69\x65\x63\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2e\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x72\x65\x6d\x65\x6d\x62\x65\x72\x73\x20\x74\x68\x65\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x70\x72\x6f\x63\x65\x73\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x63\x61\x6c\x6c\x73\x20\x74\x6f\x20\x65\x6e\x63\x6f\x64\x65\x28\x29\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[245]; - } -codecs_toplevel_consts_16_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 244, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x53\x65\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x6f\x63\x73\x74\x72\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x20\x76\x61\x6c\x75\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_16_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & codecs_toplevel_consts_16_consts_3_consts_0._ascii.ob_base, - &_Py_STR(empty), - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_16_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(errors), - &_Py_ID(buffer), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_16_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalEncoder.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -codecs_toplevel_consts_16_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x10\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x18\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_16_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct _PyCode_DEF(34) -codecs_toplevel_consts_16_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & codecs_toplevel_consts_16_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_16_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 186, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_16_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_16_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[66]; - } -codecs_toplevel_consts_16_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 65, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x45\x6e\x63\x6f\x64\x65\x73\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_16_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_16_consts_5_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -codecs_toplevel_consts_16_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalEncoder.encode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -codecs_toplevel_consts_16_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x08\x00\x0f\x22\xd0\x08\x21", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_final = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "final", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_16_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_input._ascii.ob_base, - & const_str_final._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(16) -codecs_toplevel_consts_16_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & codecs_toplevel_consts_16_consts_5_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 197, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(encode), - .co_qualname = & codecs_toplevel_consts_16_consts_5_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_16_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[59]; - } -codecs_toplevel_consts_16_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 58, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x69\x6e\x69\x74\x69\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_16_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_16_consts_6_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -codecs_toplevel_consts_16_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalEncoder.reset", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_16_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & codecs_toplevel_consts_16_consts_6_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 203, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_16_consts_6_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[59]; - } -codecs_toplevel_consts_16_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 58, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_16_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_16_consts_7_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_16_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalEncoder.getstate", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[10]; - } -codecs_toplevel_consts_16_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 9, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x10\x11\x88\x71", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_16_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & codecs_toplevel_consts_16_consts_7_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 208, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(getstate), - .co_qualname = & codecs_toplevel_consts_16_consts_7_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_16_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[109]; - } -codecs_toplevel_consts_16_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 108, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x53\x65\x74\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x2e\x20\x73\x74\x61\x74\x65\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x62\x65\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x67\x65\x74\x73\x74\x61\x74\x65\x28\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_16_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_16_consts_8_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_16_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalEncoder.setstate", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_16_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_state._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_16_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & codecs_toplevel_consts_16_consts_8_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 214, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(setstate), - .co_qualname = & codecs_toplevel_consts_16_consts_8_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_16_consts_11 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -codecs_toplevel_consts_16_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str_IncrementalEncoder._ascii.ob_base, - & codecs_toplevel_consts_16_consts_1._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_16_consts_3.ob_base.ob_base, - Py_False, - & codecs_toplevel_consts_16_consts_5.ob_base.ob_base, - & codecs_toplevel_consts_16_consts_6.ob_base.ob_base, - & codecs_toplevel_consts_16_consts_7.ob_base.ob_base, - & codecs_toplevel_consts_16_consts_8.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -codecs_toplevel_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - &_Py_ID(encode), - &_Py_ID(reset), - &_Py_ID(getstate), - &_Py_ID(setstate), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[116]; - } -codecs_toplevel_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 115, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x09\x05\x19\xf0\x00\x09\x05\x19\xf0\x00\x09\x05\x19\xf0\x00\x09\x05\x19\xf0\x16\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x0c\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x0a\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x0c\x04\x05\x0c\xf0\x00\x04\x05\x0c\xf0\x00\x04\x05\x0c\xf0\x00\x04\x05\x0c\xf0\x00\x04\x05\x0c", -}; -static - struct _PyCode_DEF(52) -codecs_toplevel_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & codecs_toplevel_consts_16_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 180, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_IncrementalEncoder._ascii.ob_base, - .co_qualname = & const_str_IncrementalEncoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0a\x64\x03\x84\x01\x5a\x04\x64\x0b\x64\x05\x84\x01\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -const_str_BufferedIncrementalEncoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalEncoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[193]; - } -codecs_toplevel_consts_18_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 192, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x20\x6f\x66\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x61\x73\x20\x74\x68\x65\x20\x62\x61\x73\x65\x63\x6c\x61\x73\x73\x20\x66\x6f\x72\x20\x61\x6e\x0a\x20\x20\x20\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x6b\x65\x65\x70\x20\x73\x6f\x6d\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x75\x74\x70\x75\x74\x20\x69\x6e\x20\x61\x0a\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x63\x61\x6c\x6c\x73\x20\x74\x6f\x20\x65\x6e\x63\x6f\x64\x65\x28\x29\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_18_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_IncrementalEncoder._ascii.ob_base, - &_Py_ID(__init__), - &_Py_ID(buffer), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -codecs_toplevel_consts_18_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalEncoder.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -codecs_toplevel_consts_18_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x23\xd2\x08\x23\xa0\x44\xa8\x26\xd1\x08\x31\xd4\x08\x31\xd0\x08\x31\xe0\x16\x18\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(74) -codecs_toplevel_consts_18_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 37, - }, - .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 226, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_18_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__buffer_encode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_buffer_encode", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[42]; - } -codecs_toplevel_consts_18_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 41, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalEncoder._buffer_encode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -codecs_toplevel_consts_18_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x0f\x22\xd0\x08\x21", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_18_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_input._ascii.ob_base, - &_Py_ID(errors), - & const_str_final._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(16) -codecs_toplevel_consts_18_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 231, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_18_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str__buffer_encode._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_18_consts_4_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_18_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(buffer), - & const_str__buffer_encode._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -codecs_toplevel_consts_18_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalEncoder.encode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -codecs_toplevel_consts_18_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\x98\x55\xd1\x0f\x22\x88\x04\xd8\x1d\x21\xd7\x1d\x30\xd2\x1d\x30\xb0\x14\xb0\x74\xb4\x7b\xc0\x45\xd1\x1d\x4a\xd4\x1d\x4a\xd1\x08\x1a\x88\x16\x90\x18\xe0\x16\x1a\x98\x38\x98\x39\x98\x39\x94\x6f\x88\x04\x8c\x0b\xd8\x0f\x15\x88\x0d", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_result = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "result", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_consumed = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "consumed", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -codecs_toplevel_consts_18_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_input._ascii.ob_base, - & const_str_final._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_result._ascii.ob_base, - & const_str_consumed._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(118) -codecs_toplevel_consts_18_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 59, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 236, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_18_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(encode), - .co_qualname = & codecs_toplevel_consts_18_consts_6_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7a\x00\x00\x00\x7d\x03\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x03\x7c\x05\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_18_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_IncrementalEncoder._ascii.ob_base, - &_Py_ID(reset), - &_Py_ID(buffer), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[33]; - } -codecs_toplevel_consts_18_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 32, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalEncoder.reset", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -codecs_toplevel_consts_18_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x20\xd2\x08\x20\xa0\x14\xd1\x08\x26\xd4\x08\x26\xd0\x08\x26\xd8\x16\x18\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(72) -codecs_toplevel_consts_18_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 244, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_18_consts_7_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_18_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(buffer), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -codecs_toplevel_consts_18_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalEncoder.getstate", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -codecs_toplevel_consts_18_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x7b\xd0\x0f\x1f\x98\x61\xd0\x08\x1f", -}; -static - struct _PyCode_DEF(20) -codecs_toplevel_consts_18_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 248, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(getstate), - .co_qualname = & codecs_toplevel_consts_18_consts_8_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -codecs_toplevel_consts_18_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalEncoder.setstate", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -codecs_toplevel_consts_18_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x16\x1b\x90\x6b\x98\x72\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(24) -codecs_toplevel_consts_18_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 12, - }, - .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 251, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(setstate), - .co_qualname = & codecs_toplevel_consts_18_consts_9_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x70\x01\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -codecs_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_BufferedIncrementalEncoder._ascii.ob_base, - & codecs_toplevel_consts_18_consts_1._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_18_consts_3.ob_base.ob_base, - & codecs_toplevel_consts_18_consts_4.ob_base.ob_base, - Py_False, - & codecs_toplevel_consts_18_consts_6.ob_base.ob_base, - & codecs_toplevel_consts_18_consts_7.ob_base.ob_base, - & codecs_toplevel_consts_18_consts_8.ob_base.ob_base, - & codecs_toplevel_consts_18_consts_9.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -codecs_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - & const_str__buffer_encode._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(reset), - &_Py_ID(getstate), - &_Py_ID(setstate), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[131]; - } -codecs_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 130, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x0a\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x0a\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x10\x02\x05\x19\xf0\x00\x02\x05\x19\xf0\x00\x02\x05\x19\xf0\x08\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x06\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22", -}; -static - struct _PyCode_DEF(58) -codecs_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & codecs_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 220, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_BufferedIncrementalEncoder._ascii.ob_base, - .co_qualname = & const_str_BufferedIncrementalEncoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0b\x64\x03\x84\x01\x5a\x04\x64\x04\x84\x00\x5a\x05\x64\x0c\x64\x06\x84\x01\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x84\x00\x5a\x09\x64\x0a\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[233]; - } -codecs_toplevel_consts_20_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 232, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x41\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x64\x65\x63\x6f\x64\x65\x73\x20\x61\x6e\x20\x69\x6e\x70\x75\x74\x20\x69\x6e\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x74\x65\x70\x73\x2e\x20\x54\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x63\x61\x6e\x0a\x20\x20\x20\x20\x62\x65\x20\x70\x61\x73\x73\x65\x64\x20\x70\x69\x65\x63\x65\x20\x62\x79\x20\x70\x69\x65\x63\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2e\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x72\x65\x6d\x65\x6d\x62\x65\x72\x73\x20\x74\x68\x65\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x70\x72\x6f\x63\x65\x73\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x63\x61\x6c\x6c\x73\x20\x74\x6f\x20\x64\x65\x63\x6f\x64\x65\x28\x29\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[244]; - } -codecs_toplevel_consts_20_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 243, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x43\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x53\x65\x65\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x6f\x63\x73\x74\x72\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x20\x76\x61\x6c\x75\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_20_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_20_consts_3_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_20_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_20_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalDecoder.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -codecs_toplevel_consts_20_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x10\x00\x17\x1d\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(20) -codecs_toplevel_consts_20_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & codecs_toplevel_consts_20_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_20_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 260, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_20_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_20_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[65]; - } -codecs_toplevel_consts_20_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 64, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x44\x65\x63\x6f\x64\x65\x20\x69\x6e\x70\x75\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_20_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_20_consts_5_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -codecs_toplevel_consts_20_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalDecoder.decode", -}; -static - struct _PyCode_DEF(16) -codecs_toplevel_consts_20_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & codecs_toplevel_consts_20_consts_5_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 270, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(decode), - .co_qualname = & codecs_toplevel_consts_20_consts_5_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_16_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[58]; - } -codecs_toplevel_consts_20_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 57, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x73\x65\x74\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x74\x6f\x20\x74\x68\x65\x20\x69\x6e\x69\x74\x69\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_20_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_20_consts_6_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -codecs_toplevel_consts_20_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalDecoder.reset", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_20_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & codecs_toplevel_consts_20_consts_6_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 276, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_20_consts_6_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[522]; - } -codecs_toplevel_consts_20_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 521, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x28\x62\x75\x66\x66\x65\x72\x65\x64\x5f\x69\x6e\x70\x75\x74\x2c\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x5f\x73\x74\x61\x74\x65\x5f\x69\x6e\x66\x6f\x29\x20\x74\x75\x70\x6c\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x65\x64\x5f\x69\x6e\x70\x75\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x62\x79\x74\x65\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x62\x79\x74\x65\x73\x20\x74\x68\x61\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x65\x72\x65\x20\x70\x61\x73\x73\x65\x64\x20\x74\x6f\x20\x64\x65\x63\x6f\x64\x65\x28\x29\x20\x74\x68\x61\x74\x20\x68\x61\x76\x65\x20\x6e\x6f\x74\x20\x79\x65\x74\x20\x62\x65\x65\x6e\x20\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x5f\x73\x74\x61\x74\x65\x5f\x69\x6e\x66\x6f\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x6e\x6f\x6e\x2d\x6e\x65\x67\x61\x74\x69\x76\x65\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x57\x49\x54\x48\x4f\x55\x54\x20\x79\x65\x74\x20\x68\x61\x76\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x63\x65\x73\x73\x65\x64\x20\x74\x68\x65\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x20\x6f\x66\x20\x62\x75\x66\x66\x65\x72\x65\x64\x5f\x69\x6e\x70\x75\x74\x2e\x20\x20\x49\x6e\x20\x74\x68\x65\x20\x69\x6e\x69\x74\x69\x61\x6c\x20\x73\x74\x61\x74\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x61\x66\x74\x65\x72\x20\x72\x65\x73\x65\x74\x28\x29\x2c\x20\x67\x65\x74\x73\x74\x61\x74\x65\x28\x29\x20\x6d\x75\x73\x74\x20\x72\x65\x74\x75\x72\x6e\x20\x28\x62\x22\x22\x2c\x20\x30\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_20_consts_7_consts_1 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - (PyObject *)&_Py_SINGLETON(bytes_empty), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_20_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_20_consts_7_consts_0._ascii.ob_base, - & codecs_toplevel_consts_20_consts_7_consts_1._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_20_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalDecoder.getstate", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[10]; - } -codecs_toplevel_consts_20_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 9, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x18\x00\x10\x18\x88\x78", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_20_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & codecs_toplevel_consts_20_consts_7_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 281, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(getstate), - .co_qualname = & codecs_toplevel_consts_20_consts_7_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_20_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[183]; - } -codecs_toplevel_consts_20_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 182, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x53\x65\x74\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x61\x74\x65\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\x62\x65\x65\x6e\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x67\x65\x74\x73\x74\x61\x74\x65\x28\x29\x2e\x20\x20\x54\x68\x65\x20\x65\x66\x66\x65\x63\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x73\x65\x74\x73\x74\x61\x74\x65\x28\x28\x62\x22\x22\x2c\x20\x30\x29\x29\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x65\x71\x75\x69\x76\x61\x6c\x65\x6e\x74\x20\x74\x6f\x20\x72\x65\x73\x65\x74\x28\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_20_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_20_consts_8_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_20_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IncrementalDecoder.setstate", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_20_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & codecs_toplevel_consts_20_consts_8_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 295, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(setstate), - .co_qualname = & codecs_toplevel_consts_20_consts_8_qualname._ascii.ob_base, - .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -codecs_toplevel_consts_20_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str_IncrementalDecoder._ascii.ob_base, - & codecs_toplevel_consts_20_consts_1._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_20_consts_3.ob_base.ob_base, - Py_False, - & codecs_toplevel_consts_20_consts_5.ob_base.ob_base, - & codecs_toplevel_consts_20_consts_6.ob_base.ob_base, - & codecs_toplevel_consts_20_consts_7.ob_base.ob_base, - & codecs_toplevel_consts_20_consts_8.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -codecs_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - &_Py_ID(decode), - &_Py_ID(reset), - &_Py_ID(getstate), - &_Py_ID(setstate), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[116]; - } -codecs_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 115, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x08\x05\x1d\xf0\x00\x08\x05\x1d\xf0\x00\x08\x05\x1d\xf0\x00\x08\x05\x1d\xf0\x14\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x00\x04\x05\x22\xf0\x0c\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x00\x03\x05\x0c\xf0\x0a\x0c\x05\x18\xf0\x00\x0c\x05\x18\xf0\x00\x0c\x05\x18\xf0\x1c\x06\x05\x0c\xf0\x00\x06\x05\x0c\xf0\x00\x06\x05\x0c\xf0\x00\x06\x05\x0c\xf0\x00\x06\x05\x0c", -}; -static - struct _PyCode_DEF(52) -codecs_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & codecs_toplevel_consts_20_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 254, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_IncrementalDecoder._ascii.ob_base, - .co_qualname = & const_str_IncrementalDecoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0a\x64\x03\x84\x01\x5a\x04\x64\x0b\x64\x05\x84\x01\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -const_str_BufferedIncrementalDecoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalDecoder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[175]; - } -codecs_toplevel_consts_22_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 174, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x20\x6f\x66\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x61\x73\x20\x74\x68\x65\x20\x62\x61\x73\x65\x63\x6c\x61\x73\x73\x20\x66\x6f\x72\x20\x61\x6e\x0a\x20\x20\x20\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x69\x6e\x63\x6f\x6d\x70\x6c\x65\x74\x65\x0a\x20\x20\x20\x20\x62\x79\x74\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_22_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - (PyObject *)&_Py_SINGLETON(bytes_empty), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_22_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_IncrementalDecoder._ascii.ob_base, - &_Py_ID(__init__), - &_Py_ID(buffer), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -codecs_toplevel_consts_22_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalDecoder.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -codecs_toplevel_consts_22_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x23\xd2\x08\x23\xa0\x44\xa8\x26\xd1\x08\x31\xd4\x08\x31\xd0\x08\x31\xe0\x16\x19\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(74) -codecs_toplevel_consts_22_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 37, - }, - .co_consts = & codecs_toplevel_consts_22_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_22_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 309, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_22_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_22_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__buffer_decode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_buffer_decode", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[42]; - } -codecs_toplevel_consts_22_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 41, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalDecoder._buffer_decode", -}; -static - struct _PyCode_DEF(16) -codecs_toplevel_consts_22_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 314, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_18_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str__buffer_decode._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_22_consts_4_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_22_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(buffer), - & const_str__buffer_decode._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -codecs_toplevel_consts_22_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalDecoder.decode", -}; -static - struct _PyCode_DEF(118) -codecs_toplevel_consts_22_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 59, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_22_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 319, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_18_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(decode), - .co_qualname = & codecs_toplevel_consts_22_consts_6_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7a\x00\x00\x00\x7d\x03\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x03\x7c\x05\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_22_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_IncrementalDecoder._ascii.ob_base, - &_Py_ID(reset), - &_Py_ID(buffer), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[33]; - } -codecs_toplevel_consts_22_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 32, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalDecoder.reset", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -codecs_toplevel_consts_22_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x08\x1a\xd7\x08\x20\xd2\x08\x20\xa0\x14\xd1\x08\x26\xd4\x08\x26\xd0\x08\x26\xd8\x16\x19\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(72) -codecs_toplevel_consts_22_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & codecs_toplevel_consts_22_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_22_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 327, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_22_consts_7_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_22_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -codecs_toplevel_consts_22_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalDecoder.getstate", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -codecs_toplevel_consts_22_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x10\x14\x94\x0b\x98\x51\xd0\x0f\x1f\xd0\x08\x1f", -}; -static - struct _PyCode_DEF(20) -codecs_toplevel_consts_22_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 331, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(getstate), - .co_qualname = & codecs_toplevel_consts_22_consts_8_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_22_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -codecs_toplevel_consts_22_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIncrementalDecoder.setstate", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -codecs_toplevel_consts_22_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x16\x1b\x98\x41\x94\x68\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(32) -codecs_toplevel_consts_22_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_18_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 335, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_16_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(setstate), - .co_qualname = & codecs_toplevel_consts_22_consts_9_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_22_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -codecs_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_BufferedIncrementalDecoder._ascii.ob_base, - & codecs_toplevel_consts_22_consts_1._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_22_consts_3.ob_base.ob_base, - & codecs_toplevel_consts_22_consts_4.ob_base.ob_base, - Py_False, - & codecs_toplevel_consts_22_consts_6.ob_base.ob_base, - & codecs_toplevel_consts_22_consts_7.ob_base.ob_base, - & codecs_toplevel_consts_22_consts_8.ob_base.ob_base, - & codecs_toplevel_consts_22_consts_9.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_16_consts_11._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -codecs_toplevel_consts_22_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - & const_str__buffer_decode._ascii.ob_base, - &_Py_ID(decode), - &_Py_ID(reset), - &_Py_ID(getstate), - &_Py_ID(setstate), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[131]; - } -codecs_toplevel_consts_22_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 130, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0a\x03\x05\x1a\xf0\x00\x03\x05\x1a\xf0\x00\x03\x05\x1a\xf0\x00\x03\x05\x1a\xf0\x0a\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x00\x03\x05\x22\xf0\x0a\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x00\x06\x05\x16\xf0\x10\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x08\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x08\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f", -}; -static - struct _PyCode_DEF(58) -codecs_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & codecs_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_22_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 303, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_BufferedIncrementalDecoder._ascii.ob_base, - .co_qualname = & const_str_BufferedIncrementalDecoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_22_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x0b\x64\x03\x84\x01\x5a\x04\x64\x04\x84\x00\x5a\x05\x64\x0c\x64\x06\x84\x01\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x84\x00\x5a\x09\x64\x0a\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[888]; - } -codecs_toplevel_consts_24_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 887, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x70\x65\x6e\x20\x66\x6f\x72\x20\x77\x72\x69\x74\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x20\x61\x72\x65\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x2d\x20\x72\x61\x69\x73\x65\x20\x61\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x28\x6f\x72\x20\x61\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x69\x67\x6e\x6f\x72\x65\x27\x20\x2d\x20\x69\x67\x6e\x6f\x72\x65\x20\x74\x68\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x72\x65\x70\x6c\x61\x63\x65\x27\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x78\x6d\x6c\x63\x68\x61\x72\x72\x65\x66\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x20\x58\x4d\x4c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x64\x20\x65\x73\x63\x61\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6e\x61\x6d\x65\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x20\x20\x20\x20\x20\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x5c\x4e\x7b\x2e\x2e\x2e\x7d\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x20\x76\x61\x6c\x75\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\x78\x74\x65\x6e\x64\x65\x64\x20\x76\x69\x61\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x67\x69\x73\x74\x65\x72\x5f\x65\x72\x72\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_24_consts_2_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_stream = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "stream", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -codecs_toplevel_consts_24_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -codecs_toplevel_consts_24_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x2c\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_24_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_stream._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct _PyCode_DEF(34) -codecs_toplevel_consts_24_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & codecs_toplevel_consts_24_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 348, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_24_consts_2_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[63]; - } -codecs_toplevel_consts_24_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 62, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x57\x72\x69\x74\x65\x73\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x27\x73\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x74\x6f\x20\x73\x65\x6c\x66\x2e\x73\x74\x72\x65\x61\x6d\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_24_consts_3_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_24_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(encode), - &_Py_ID(errors), - & const_str_stream._ascii.ob_base, - &_Py_ID(write), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -codecs_toplevel_consts_24_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.write", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[58]; - } -codecs_toplevel_consts_24_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 57, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x1a\x1e\x9f\x1b\x9a\x1b\xa0\x56\xa8\x54\xac\x5b\xd1\x19\x39\xd4\x19\x39\x89\x0e\x88\x04\x88\x68\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\x98\x24\xd1\x08\x1f\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_24_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_object._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_consumed._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(118) -codecs_toplevel_consts_24_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 59, - }, - .co_consts = & codecs_toplevel_consts_24_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 373, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(write), - .co_qualname = & codecs_toplevel_consts_24_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[92]; - } -codecs_toplevel_consts_24_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 91, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x57\x72\x69\x74\x65\x73\x20\x74\x68\x65\x20\x63\x6f\x6e\x63\x61\x74\x65\x6e\x61\x74\x65\x64\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x73\x74\x72\x69\x6e\x67\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x73\x74\x72\x65\x61\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x75\x73\x69\x6e\x67\x20\x2e\x77\x72\x69\x74\x65\x28\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_24_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & codecs_toplevel_consts_24_consts_4_consts_0._ascii.ob_base, - &_Py_STR(empty), - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(write), - &_Py_ID(join), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_writelines = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "writelines", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -codecs_toplevel_consts_24_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.writelines", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[39]; - } -codecs_toplevel_consts_24_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 38, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x09\x0d\x8f\x0a\x8a\x0a\x90\x32\x97\x37\x92\x37\x98\x34\x91\x3d\x94\x3d\xd1\x08\x21\xd4\x08\x21\xd0\x08\x21\xd0\x08\x21\xd0\x08\x21", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_list._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(86) -codecs_toplevel_consts_24_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 43, - }, - .co_consts = & codecs_toplevel_consts_24_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 380, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_writelines._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_24_consts_4_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[307]; - } -codecs_toplevel_consts_24_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 306, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x62\x75\x66\x66\x65\x72\x73\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x73\x68\x6f\x75\x6c\x64\x20\x65\x6e\x73\x75\x72\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x64\x61\x74\x61\x20\x6f\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x75\x74\x70\x75\x74\x20\x69\x73\x20\x70\x75\x74\x20\x69\x6e\x74\x6f\x20\x61\x20\x63\x6c\x65\x61\x6e\x20\x73\x74\x61\x74\x65\x2c\x20\x74\x68\x61\x74\x20\x61\x6c\x6c\x6f\x77\x73\x20\x61\x70\x70\x65\x6e\x64\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x20\x6e\x65\x77\x20\x66\x72\x65\x73\x68\x20\x64\x61\x74\x61\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x68\x61\x76\x69\x6e\x67\x20\x74\x6f\x20\x72\x65\x73\x63\x61\x6e\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x74\x6f\x20\x72\x65\x63\x6f\x76\x65\x72\x20\x73\x74\x61\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_24_consts_5_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -codecs_toplevel_consts_24_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.reset", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[10]; - } -codecs_toplevel_consts_24_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 9, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x14\x00\x09\x0d\x88\x04", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_24_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & codecs_toplevel_consts_24_consts_5_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 387, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_24_consts_5_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_24_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - &_Py_ID(seek), - &_Py_ID(reset), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -codecs_toplevel_consts_24_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.seek", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[72]; - } -codecs_toplevel_consts_24_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 71, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x0b\x11\x90\x51\x8a\x3b\x88\x3b\x98\x36\xa0\x51\x9a\x3b\x98\x3b\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\x88\x4c\xf0\x03\x00\x0c\x17\x88\x3b\x98\x3b\x98\x3b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_whence = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "whence", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_24_consts_7_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(offset), - & const_str_whence._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(132) -codecs_toplevel_consts_24_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 66, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 399, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(seek), - .co_qualname = & codecs_toplevel_consts_24_consts_7_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x1c\x7c\x01\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x18\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[64]; - } -codecs_toplevel_consts_24_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 63, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x49\x6e\x68\x65\x72\x69\x74\x20\x61\x6c\x6c\x20\x6f\x74\x68\x65\x72\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_24_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_24_consts_8_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_24_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -codecs_toplevel_consts_24_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.__getattr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -codecs_toplevel_consts_24_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x10\x17\x88\x77\x90\x74\x94\x7b\xa0\x44\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_24_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(getattr), - }, - }, -}; -static - struct _PyCode_DEF(36) -codecs_toplevel_consts_24_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 404, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getattr__), - .co_qualname = & codecs_toplevel_consts_24_consts_8_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_24_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.__enter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -codecs_toplevel_consts_24_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x13\x88\x0b", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_24_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 411, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & codecs_toplevel_consts_24_consts_9_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - &_Py_ID(close), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -codecs_toplevel_consts_24_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.__exit__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[29]; - } -codecs_toplevel_consts_24_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 28, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_tb = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "tb", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_24_consts_10_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_type._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_tb._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(56) -codecs_toplevel_consts_24_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 414, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & codecs_toplevel_consts_24_consts_10_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -codecs_toplevel_consts_24_consts_11_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "can't serialize %s", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & codecs_toplevel_consts_24_consts_11_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_24_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_TypeError._ascii.ob_base, - &_Py_ID(__class__), - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -codecs_toplevel_consts_24_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamWriter.__reduce_ex__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[28]; - } -codecs_toplevel_consts_24_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 27, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0e\x17\xd0\x18\x2c\xa8\x74\xac\x7e\xd4\x2f\x46\xd1\x18\x46\xd1\x0e\x47\xd4\x0e\x47\xd0\x08\x47", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_proto = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "proto", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_24_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_proto._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(58) -codecs_toplevel_consts_24_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 417, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__reduce_ex__), - .co_qualname = & codecs_toplevel_consts_24_consts_11_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_24_consts_14 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -codecs_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & const_str_StreamWriter._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_24_consts_2.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_3.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_4.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_5.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & codecs_toplevel_consts_24_consts_7.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_8.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_9.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_10.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_11.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -codecs_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__init__), - &_Py_ID(write), - & const_str_writelines._ascii.ob_base, - &_Py_ID(reset), - &_Py_ID(seek), - &_Py_ID(getattr), - &_Py_ID(__getattr__), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - &_Py_ID(__reduce_ex__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[181]; - } -codecs_toplevel_consts_24_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 180, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x17\x05\x1d\xf0\x00\x17\x05\x1d\xf0\x00\x17\x05\x1d\xf0\x00\x17\x05\x1d\xf0\x32\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x0e\x05\x05\x22\xf0\x00\x05\x05\x22\xf0\x00\x05\x05\x22\xf0\x0e\x0a\x05\x0d\xf0\x00\x0a\x05\x0d\xf0\x00\x0a\x05\x0d\xf0\x18\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x0c\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", -}; -static - struct _PyCode_DEF(76) -codecs_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 38, - }, - .co_consts = & codecs_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 346, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_StreamWriter._ascii.ob_base, - .co_qualname = & const_str_StreamWriter._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x0d\x64\x02\x84\x01\x5a\x03\x64\x03\x84\x00\x5a\x04\x64\x04\x84\x00\x5a\x05\x64\x05\x84\x00\x5a\x06\x64\x0e\x64\x07\x84\x01\x5a\x07\x65\x08\x66\x01\x64\x08\x84\x01\x5a\x09\x64\x09\x84\x00\x5a\x0a\x64\x0a\x84\x00\x5a\x0b\x64\x0b\x84\x00\x5a\x0c\x64\x0c\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[654]; - } -codecs_toplevel_consts_26_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 653, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x70\x65\x6e\x20\x66\x6f\x72\x20\x72\x65\x61\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x6d\x61\x79\x20\x75\x73\x65\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x63\x68\x65\x6d\x65\x73\x20\x62\x79\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x20\x61\x72\x65\x20\x70\x72\x65\x64\x65\x66\x69\x6e\x65\x64\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x2d\x20\x72\x61\x69\x73\x65\x20\x61\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x28\x6f\x72\x20\x61\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x69\x67\x6e\x6f\x72\x65\x27\x20\x2d\x20\x69\x67\x6e\x6f\x72\x65\x20\x74\x68\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x61\x6e\x64\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x72\x65\x70\x6c\x61\x63\x65\x27\x2d\x20\x72\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x72\x65\x70\x6c\x61\x63\x65\x6d\x65\x6e\x74\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x27\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x72\x65\x70\x6c\x61\x63\x65\x27\x20\x2d\x20\x52\x65\x70\x6c\x61\x63\x65\x20\x77\x69\x74\x68\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x64\x20\x65\x73\x63\x61\x70\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x73\x3b\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x20\x76\x61\x6c\x75\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x65\x78\x74\x65\x6e\x64\x65\x64\x20\x76\x69\x61\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x67\x69\x73\x74\x65\x72\x5f\x65\x72\x72\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_26_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & codecs_toplevel_consts_26_consts_2_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_empty), - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_bytebuffer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bytebuffer", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_charbuffertype = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "charbuffertype", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__empty_charbuffer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_empty_charbuffer", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_charbuffer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "charbuffer", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_linebuffer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "linebuffer", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -codecs_toplevel_consts_26_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - &_Py_ID(errors), - & const_str_bytebuffer._ascii.ob_base, - & const_str_charbuffertype._ascii.ob_base, - & const_str__empty_charbuffer._ascii.ob_base, - & const_str_charbuffer._ascii.ob_base, - & const_str_linebuffer._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -codecs_toplevel_consts_26_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[67]; - } -codecs_toplevel_consts_26_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 66, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x24\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x1a\x1d\x88\x04\x8c\x0f\xd8\x21\x25\xd7\x21\x34\xd2\x21\x34\xd1\x21\x36\xd4\x21\x36\x88\x04\xd4\x08\x1e\xd8\x1a\x1e\xd4\x1a\x30\x88\x04\x8c\x0f\xd8\x1a\x1e\x88\x04\x8c\x0f\x88\x0f\x88\x0f", -}; -static - struct _PyCode_DEF(136) -codecs_toplevel_consts_26_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 68, - }, - .co_consts = & codecs_toplevel_consts_26_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 426, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_26_consts_2_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x7c\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -codecs_toplevel_consts_26_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.decode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -codecs_toplevel_consts_26_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0e\x21\xd0\x08\x21", -}; -static - struct _PyCode_DEF(16) -codecs_toplevel_consts_26_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 451, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_14_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(decode), - .co_qualname = & codecs_toplevel_consts_26_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[1261]; - } -codecs_toplevel_consts_26_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1260, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x44\x65\x63\x6f\x64\x65\x73\x20\x64\x61\x74\x61\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x74\x72\x65\x61\x6d\x20\x73\x65\x6c\x66\x2e\x73\x74\x72\x65\x61\x6d\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x68\x61\x72\x73\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x68\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x63\x6f\x64\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x6f\x72\x20\x62\x79\x74\x65\x73\x20\x74\x6f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x2e\x20\x72\x65\x61\x64\x28\x29\x20\x77\x69\x6c\x6c\x20\x6e\x65\x76\x65\x72\x20\x72\x65\x74\x75\x72\x6e\x20\x6d\x6f\x72\x65\x20\x64\x61\x74\x61\x20\x74\x68\x61\x6e\x20\x72\x65\x71\x75\x65\x73\x74\x65\x64\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x74\x20\x69\x74\x20\x6d\x69\x67\x68\x74\x20\x72\x65\x74\x75\x72\x6e\x20\x6c\x65\x73\x73\x2c\x20\x69\x66\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x6e\x6f\x75\x67\x68\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x7a\x65\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x78\x69\x6d\x61\x74\x65\x20\x6d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x6f\x64\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x62\x79\x74\x65\x73\x20\x6f\x72\x20\x63\x6f\x64\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x72\x65\x61\x64\x20\x66\x6f\x72\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x2e\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x61\x6e\x20\x6d\x6f\x64\x69\x66\x79\x20\x74\x68\x69\x73\x20\x73\x65\x74\x74\x69\x6e\x67\x20\x61\x73\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x2e\x20\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x76\x61\x6c\x75\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2d\x31\x20\x69\x6e\x64\x69\x63\x61\x74\x65\x73\x20\x74\x6f\x20\x72\x65\x61\x64\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x65\x20\x61\x73\x20\x6d\x75\x63\x68\x20\x61\x73\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x2e\x20\x20\x73\x69\x7a\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x73\x20\x69\x6e\x74\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x70\x72\x65\x76\x65\x6e\x74\x20\x68\x61\x76\x69\x6e\x67\x20\x74\x6f\x20\x64\x65\x63\x6f\x64\x65\x20\x68\x75\x67\x65\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x20\x6f\x6e\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x65\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x66\x69\x72\x73\x74\x6c\x69\x6e\x65\x20\x69\x73\x20\x74\x72\x75\x65\x2c\x20\x61\x6e\x64\x20\x61\x20\x55\x6e\x69\x63\x6f\x64\x65\x44\x65\x63\x6f\x64\x65\x45\x72\x72\x6f\x72\x20\x68\x61\x70\x70\x65\x6e\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6c\x69\x6e\x65\x20\x74\x65\x72\x6d\x69\x6e\x61\x74\x6f\x72\x20\x69\x6e\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6c\x69\x6e\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2c\x20\x74\x68\x65\x20\x72\x65\x73\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x75\x6e\x74\x69\x6c\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6e\x65\x78\x74\x20\x63\x61\x6c\x6c\x20\x74\x6f\x20\x72\x65\x61\x64\x28\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x73\x68\x6f\x75\x6c\x64\x20\x75\x73\x65\x20\x61\x20\x67\x72\x65\x65\x64\x79\x20\x72\x65\x61\x64\x20\x73\x74\x72\x61\x74\x65\x67\x79\x2c\x20\x6d\x65\x61\x6e\x69\x6e\x67\x20\x74\x68\x61\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x72\x65\x61\x64\x20\x61\x73\x20\x6d\x75\x63\x68\x20\x64\x61\x74\x61\x20\x61\x73\x20\x69\x73\x20\x61\x6c\x6c\x6f\x77\x65\x64\x20\x77\x69\x74\x68\x69\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x69\x6e\x69\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x73\x69\x7a\x65\x2c\x20\x65\x2e\x67\x2e\x20\x20\x69\x66\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x6e\x64\x69\x6e\x67\x73\x20\x6f\x72\x20\x73\x74\x61\x74\x65\x20\x6d\x61\x72\x6b\x65\x72\x73\x20\x61\x72\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x74\x72\x65\x61\x6d\x2c\x20\x74\x68\x65\x73\x65\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x72\x65\x61\x64\x20\x74\x6f\x6f\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_keepends = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "keepends", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_26_consts_6_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_keepends._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -codecs_toplevel_consts_26_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & codecs_toplevel_consts_26_consts_6_consts_0._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_True, - & codecs_toplevel_consts_26_consts_6_consts_4._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_start = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "start", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_splitlines = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "splitlines", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -codecs_toplevel_consts_26_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_linebuffer._ascii.ob_base, - & const_str__empty_charbuffer._ascii.ob_base, - &_Py_ID(join), - & const_str_charbuffer._ascii.ob_base, - &_Py_ID(len), - & const_str_stream._ascii.ob_base, - &_Py_ID(read), - & const_str_bytebuffer._ascii.ob_base, - &_Py_ID(decode), - &_Py_ID(errors), - & const_str_UnicodeDecodeError._ascii.ob_base, - & const_str_start._ascii.ob_base, - & const_str_splitlines._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -codecs_toplevel_consts_26_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.read", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[472]; - } -codecs_toplevel_consts_26_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 471, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x38\x00\x0c\x10\x8c\x3f\xf0\x00\x02\x09\x23\xd8\x1e\x22\xd4\x1e\x34\xd7\x1e\x39\xd2\x1e\x39\xb8\x24\xbc\x2f\xd1\x1e\x4a\xd4\x1e\x4a\x88\x44\x8c\x4f\xd8\x1e\x22\x88\x44\x8c\x4f\xe0\x0b\x10\x90\x31\x8a\x39\x88\x39\xf0\x06\x00\x15\x19\x88\x45\xf0\x06\x1f\x09\x16\xe0\x0f\x14\x98\x01\x8a\x7a\x88\x7a\xdd\x13\x16\x90\x74\x94\x7f\xd1\x13\x27\xd4\x13\x27\xa8\x35\xd2\x13\x30\xd0\x13\x30\xd8\x14\x19\xe0\x0f\x13\x90\x61\x8a\x78\x88\x78\xd8\x1a\x1e\x9c\x2b\xd7\x1a\x2a\xd2\x1a\x2a\xd1\x1a\x2c\xd4\x1a\x2c\x90\x07\x90\x07\xe0\x1a\x1e\x9c\x2b\xd7\x1a\x2a\xd2\x1a\x2a\xa8\x34\xd1\x1a\x30\xd4\x1a\x30\x90\x07\xe0\x13\x17\x94\x3f\xa0\x57\xd1\x13\x2c\x88\x44\xd8\x13\x17\xf0\x00\x01\x0d\x16\xd8\x10\x15\xf0\x02\x0a\x0d\x1a\xd8\x29\x2d\xaf\x1b\xaa\x1b\xb0\x54\xb8\x34\xbc\x3b\xd1\x29\x47\xd4\x29\x47\xd1\x10\x26\x90\x08\x98\x2c\x98\x2c\xf8\xdd\x13\x25\xf0\x00\x08\x0d\x1a\xf0\x00\x08\x0d\x1a\xf0\x00\x08\x0d\x1a\xd8\x13\x1c\xf0\x00\x07\x11\x1a\xe0\x18\x1c\x9f\x0b\x9a\x0b\xa0\x44\xa8\x1a\xa8\x23\xac\x29\xa8\x1a\xd4\x24\x34\xb0\x64\xb4\x6b\xd1\x18\x42\xd4\x18\x42\xf1\x03\x00\x15\x2b\x90\x48\x98\x6c\xe0\x1c\x24\xd7\x1c\x2f\xd2\x1c\x2f\xb8\x14\xd0\x1c\x2f\xd1\x1c\x3e\xd4\x1c\x3e\x90\x45\xdd\x17\x1a\x98\x35\x91\x7a\x94\x7a\xa0\x31\x92\x7d\x90\x7d\xd8\x18\x1d\xf0\x03\x00\x18\x25\xf0\x06\x00\x15\x1a\xf0\x07\x00\x18\x25\x90\x7d\x90\x7d\x90\x7d\x90\x7d\xf8\xf8\xf8\xf8\xf0\x0b\x08\x0d\x1a\xf8\xf8\xf8\xf0\x14\x00\x1f\x23\xa0\x3c\xa0\x3d\xa0\x3d\xd4\x1e\x31\x88\x44\x8c\x4f\xe0\x0c\x10\x88\x4f\x8c\x4f\x98\x78\xd1\x0c\x27\x88\x4f\x8c\x4f\xe0\x13\x1a\xf0\x00\x01\x0d\x16\xd8\x10\x15\xf1\x3f\x1f\x09\x16\xf0\x40\x01\x00\x0c\x11\x90\x31\x8a\x39\x88\x39\xe0\x15\x19\x94\x5f\x88\x46\xd8\x1e\x22\xd4\x1e\x34\x88\x44\x8c\x4f\x88\x4f\xf0\x06\x00\x16\x1a\x94\x5f\xa0\x56\xa0\x65\xa0\x56\xd4\x15\x2c\x88\x46\xd8\x1e\x22\x9c\x6f\xa8\x65\xa8\x66\xa8\x66\xd4\x1e\x35\x88\x44\x8c\x4f\xd8\x0f\x15\x88\x0d", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -codecs_toplevel_consts_26_consts_6_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\xc2\x23\x1e\x43\x02\x00\xc3\x02\x0a\x44\x2f\x03\xc3\x0c\x41\x19\x44\x2a\x03\xc4\x2a\x05\x44\x2f\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_chars = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "chars", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_firstline = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "firstline", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_newdata = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "newdata", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_newchars = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "newchars", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_decodedbytes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "decodedbytes", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_lines = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lines", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -codecs_toplevel_consts_26_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_size._ascii.ob_base, - & const_str_chars._ascii.ob_base, - & const_str_firstline._ascii.ob_base, - & const_str_newdata._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_newchars._ascii.ob_base, - & const_str_decodedbytes._ascii.ob_base, - & const_str_exc._ascii.ob_base, - & const_str_lines._ascii.ob_base, - & const_str_result._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(810) -codecs_toplevel_consts_26_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 405, - }, - .co_consts = & codecs_toplevel_consts_26_consts_6_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_26_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = & codecs_toplevel_consts_26_consts_6_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 454, - .co_nlocalsplus = 11, - .co_nlocals = 11, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_26_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_8_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(read), - .co_qualname = & codecs_toplevel_consts_26_consts_6_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2b\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x02\x7c\x01\x7d\x02\x09\x00\x7c\x02\x64\x02\x6b\x05\x00\x00\x00\x00\x72\x19\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x6b\x05\x00\x00\x00\x00\x72\x01\x6e\xfb\x7c\x01\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x1a\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x1a\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7a\x00\x00\x00\x7d\x05\x7c\x05\x73\x01\x6e\xb4\x09\x00\x7c\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x07\x6e\x70\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x63\x7d\x08\x7c\x03\x72\x56\x7c\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x01\x7c\x08\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x07\x7c\x06\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xac\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x6b\x01\x00\x00\x00\x00\x72\x01\x82\x00\x6e\x01\x82\x00\x59\x00\x64\x01\x7d\x08\x7e\x08\x6e\x08\x64\x01\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x05\x7c\x07\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x78\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7a\x0d\x00\x00\x63\x02\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x73\x01\x6e\x02\x90\x01\x8c\x1a\x7c\x02\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x14\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x23\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[178]; - } -codecs_toplevel_consts_26_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 177, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x52\x65\x61\x64\x20\x6f\x6e\x65\x20\x6c\x69\x6e\x65\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x65\x61\x6d\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x64\x61\x74\x61\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x7a\x65\x2c\x20\x69\x66\x20\x67\x69\x76\x65\x6e\x2c\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x61\x73\x20\x73\x69\x7a\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x74\x6f\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x61\x64\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_26_consts_9_consts_8 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_firstline._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -codecs_toplevel_consts_26_consts_9_consts_9 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_26_consts_9_consts_11 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_size._ascii.ob_base, - & const_str_chars._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_8000 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 8000 }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -codecs_toplevel_consts_26_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & codecs_toplevel_consts_26_consts_9_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - Py_False, - & codecs_toplevel_consts_26_consts_6_consts_4._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 72], - Py_True, - & codecs_toplevel_consts_26_consts_9_consts_8._object.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_9_consts_9._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[13]), - & codecs_toplevel_consts_26_consts_9_consts_11._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & const_int_8000.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_bytes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bytes", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -codecs_toplevel_consts_26_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_linebuffer._ascii.ob_base, - &_Py_ID(len), - & const_str_charbuffer._ascii.ob_base, - & const_str_splitlines._ascii.ob_base, - & const_str__empty_charbuffer._ascii.ob_base, - &_Py_ID(read), - &_Py_ID(isinstance), - & const_str_str._ascii.ob_base, - & const_str_endswith._ascii.ob_base, - & const_str_bytes._ascii.ob_base, - &_Py_ID(join), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -codecs_toplevel_consts_26_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.readline", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[655]; - } -codecs_toplevel_consts_26_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 654, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x16\x00\x0c\x10\x8c\x3f\xf0\x00\x0a\x09\x18\xd8\x13\x17\x94\x3f\xa0\x31\xd4\x13\x25\x88\x44\xd8\x10\x14\x94\x0f\xa0\x01\xd0\x10\x22\xdd\x0f\x12\x90\x34\x94\x3f\xd1\x0f\x23\xd4\x0f\x23\xa0\x71\xd2\x0f\x28\xd0\x0f\x28\xf0\x06\x00\x23\x27\xa4\x2f\xb0\x21\xd4\x22\x34\x90\x04\x94\x0f\xd8\x22\x26\x90\x04\x94\x0f\xd8\x13\x1b\xf0\x00\x01\x0d\x3a\xd8\x17\x1b\x97\x7f\x92\x7f\xb0\x05\x90\x7f\xd1\x17\x36\xd4\x17\x36\xb0\x71\xd4\x17\x39\x90\x04\xd8\x13\x17\x88\x4b\xe0\x13\x17\x90\x3a\x98\x32\x88\x08\xd8\x0f\x13\xd4\x0f\x25\x88\x04\xf0\x04\x2e\x09\x1e\xd8\x13\x17\x97\x39\x92\x39\x98\x58\xb0\x14\x90\x39\xd1\x13\x36\xd4\x13\x36\x88\x44\xd8\x0f\x13\xf0\x00\x06\x0d\x37\xf5\x08\x00\x15\x1f\x98\x74\xa5\x53\xd1\x14\x29\xd4\x14\x29\xf0\x00\x02\x11\x37\xa8\x64\xaf\x6d\xaa\x6d\xb8\x44\xd1\x2e\x41\xd4\x2e\x41\xf0\x00\x02\x11\x37\xdd\x14\x1e\x98\x74\xa5\x55\xd1\x14\x2b\xd4\x14\x2b\xf0\x03\x02\x11\x37\xd8\x30\x34\xb7\x0d\xb2\x0d\xb8\x65\xd1\x30\x44\xd4\x30\x44\xf0\x03\x02\x11\x37\xe0\x14\x18\x98\x44\x9f\x49\x9a\x49\xa8\x31\xb0\x41\x98\x49\xd1\x1c\x36\xd4\x1c\x36\xd1\x14\x36\x90\x44\xe0\x0c\x10\x90\x44\x89\x4c\x88\x44\xd8\x14\x18\x97\x4f\x92\x4f\xa8\x54\x90\x4f\xd1\x14\x32\xd4\x14\x32\x88\x45\xd8\x0f\x14\xf0\x00\x1b\x0d\x1a\xdd\x13\x16\x90\x75\x91\x3a\x94\x3a\xa0\x01\x92\x3e\x90\x3e\xf0\x06\x00\x1c\x21\xa0\x11\x9c\x38\x90\x44\xd8\x18\x1d\x98\x61\x98\x08\xdd\x17\x1a\x98\x35\x91\x7a\x94\x7a\xa0\x41\x92\x7e\x90\x7e\xe0\x18\x1d\x98\x62\x98\x09\x98\x09\x9c\x09\xa0\x54\xa4\x5f\xd1\x18\x34\x98\x09\x98\x09\x99\x09\xd8\x2a\x2f\x98\x04\x9c\x0f\xd8\x2a\x2e\x98\x04\x9c\x0f\x98\x0f\xf0\x06\x00\x2b\x30\xb0\x01\xac\x28\xb0\x54\xb4\x5f\xd1\x2a\x44\x98\x04\x9c\x0f\xd8\x1b\x23\xf0\x00\x01\x15\x42\x01\xd8\x1f\x23\x9f\x7f\x9a\x7f\xb8\x05\x98\x7f\xd1\x1f\x3e\xd4\x1f\x3e\xb8\x71\xd4\x1f\x41\x98\x04\xd8\x14\x19\xd8\x1f\x24\xa0\x51\x9c\x78\x90\x0c\xd8\x22\x27\xa8\x01\xa4\x28\xd7\x22\x35\xd2\x22\x35\xb8\x75\xd0\x22\x35\xd1\x22\x45\xd4\x22\x45\xc0\x61\xd4\x22\x48\x90\x0f\xd8\x13\x1f\xa0\x3f\xd2\x13\x32\xd0\x13\x32\xe0\x26\x2a\xd4\x26\x3c\xd7\x26\x41\xd2\x26\x41\xc0\x25\xc8\x01\xc8\x02\xc8\x02\xc4\x29\xd1\x26\x4c\xd4\x26\x4c\xd8\x26\x2a\xa4\x6f\xf1\x03\x01\x27\x36\x90\x44\x94\x4f\xe0\x17\x1f\xf0\x00\x03\x15\x2f\xd8\x1f\x2b\x98\x04\x98\x04\xe0\x1f\x2e\x98\x04\xd8\x14\x19\xe0\x13\x17\xf0\x00\x03\x0d\x16\x98\x34\xd0\x1b\x2b\xd8\x13\x17\xf0\x00\x01\x11\x3e\xa0\x08\xf0\x00\x01\x11\x3e\xd8\x1b\x1f\x9f\x3f\x9a\x3f\xb0\x45\x98\x3f\xd1\x1b\x3a\xd4\x1b\x3a\xb8\x31\xd4\x1b\x3d\x90\x44\xd8\x10\x15\xd8\x0f\x17\x98\x24\x8a\x7f\x88\x7f\xd8\x10\x18\x98\x41\x91\x0d\x90\x08\xf1\x5d\x01\x2e\x09\x1e\xf0\x5e\x01\x00\x10\x14\x88\x0b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_readsize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "readsize", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_line0withend = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "line0withend", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_line0withoutend = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "line0withoutend", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -codecs_toplevel_consts_26_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_size._ascii.ob_base, - & const_str_keepends._ascii.ob_base, - &_Py_ID(line), - & const_str_readsize._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_lines._ascii.ob_base, - & const_str_line0withend._ascii.ob_base, - & const_str_line0withoutend._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(1156) -codecs_toplevel_consts_26_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 578, - }, - .co_consts = & codecs_toplevel_consts_26_consts_9_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_26_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 534, - .co_nlocalsplus = 9, - .co_nlocals = 9, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_26_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(readline), - .co_qualname = & codecs_toplevel_consts_26_consts_9_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x66\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x3d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x19\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x73\x1c\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x53\x00\x7c\x01\x70\x01\x64\x06\x7d\x04\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x09\x00\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x64\x07\xac\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x72\x6e\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x05\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x2a\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2f\x7c\x05\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x05\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x02\xac\x0b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x7d\x05\x7c\x03\x7c\x05\x7a\x0d\x00\x00\x7d\x03\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\xf0\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x04\x00\x00\x00\x00\x72\x76\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x06\x64\x01\x3d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x04\x00\x00\x00\x00\x72\x24\x7c\x06\x64\x0c\x78\x02\x78\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x63\x03\x63\x02\x3c\x00\x00\x00\x7c\x06\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x15\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x73\x1c\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x99\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x06\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x07\x7c\x08\x6b\x03\x00\x00\x00\x00\x72\x37\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x64\x02\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x72\x03\x7c\x07\x7d\x03\x6e\x02\x7c\x08\x7d\x03\x6e\x32\x7c\x05\x72\x02\x7c\x01\x81\x21\x7c\x03\x72\x1e\x7c\x02\x73\x1c\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x0d\x7c\x04\x64\x0d\x6b\x00\x00\x00\x00\x00\x72\x05\x7c\x04\x64\x0e\x7a\x12\x00\x00\x7d\x04\x90\x01\x8c\xc6\x7c\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[340]; - } -codecs_toplevel_consts_26_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 339, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x52\x65\x61\x64\x20\x61\x6c\x6c\x20\x6c\x69\x6e\x65\x73\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x6f\x6e\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x65\x61\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x6d\x20\x61\x73\x20\x61\x20\x6c\x69\x73\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x4c\x69\x6e\x65\x20\x62\x72\x65\x61\x6b\x73\x20\x61\x72\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x27\x73\x20\x64\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x20\x61\x6e\x64\x20\x61\x72\x65\x20\x69\x6e\x63\x6c\x75\x64\x65\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x6c\x69\x73\x74\x20\x65\x6e\x74\x72\x69\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x69\x7a\x65\x68\x69\x6e\x74\x2c\x20\x69\x66\x20\x67\x69\x76\x65\x6e\x2c\x20\x69\x73\x20\x69\x67\x6e\x6f\x72\x65\x64\x20\x73\x69\x6e\x63\x65\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x6e\x6f\x20\x65\x66\x66\x69\x63\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x61\x79\x20\x74\x6f\x20\x66\x69\x6e\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x74\x72\x75\x65\x20\x65\x6e\x64\x2d\x6f\x66\x2d\x6c\x69\x6e\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_26_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_26_consts_10_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_26_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(read), - & const_str_splitlines._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_readlines = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "readlines", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_26_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.readlines", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -codecs_toplevel_consts_26_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x18\x00\x10\x14\x8f\x79\x8a\x79\x89\x7b\x8c\x7b\x88\x04\xd8\x0f\x13\x8f\x7f\x8a\x7f\x98\x78\xd1\x0f\x28\xd4\x0f\x28\xd0\x08\x28", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_sizehint = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sizehint", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_26_consts_10_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_sizehint._ascii.ob_base, - & const_str_keepends._ascii.ob_base, - & const_str_data._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(84) -codecs_toplevel_consts_26_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & codecs_toplevel_consts_26_consts_10_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_26_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 609, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_26_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_readlines._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_26_consts_10_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[237]; - } -codecs_toplevel_consts_26_consts_11_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 236, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x62\x75\x66\x66\x65\x72\x73\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x73\x74\x61\x74\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x6e\x6f\x20\x73\x74\x72\x65\x61\x6d\x20\x72\x65\x70\x6f\x73\x69\x74\x69\x6f\x6e\x69\x6e\x67\x20\x73\x68\x6f\x75\x6c\x64\x20\x74\x61\x6b\x65\x20\x70\x6c\x61\x63\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x73\x20\x70\x72\x69\x6d\x61\x72\x69\x6c\x79\x20\x69\x6e\x74\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x61\x62\x6c\x65\x20\x74\x6f\x20\x72\x65\x63\x6f\x76\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x66\x72\x6f\x6d\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x65\x72\x72\x6f\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_26_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & codecs_toplevel_consts_26_consts_11_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_empty), - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_26_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_bytebuffer._ascii.ob_base, - & const_str__empty_charbuffer._ascii.ob_base, - & const_str_charbuffer._ascii.ob_base, - & const_str_linebuffer._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -codecs_toplevel_consts_26_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.reset", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[33]; - } -codecs_toplevel_consts_26_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 32, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x12\x00\x1b\x1e\x88\x04\x8c\x0f\xd8\x1a\x1e\xd4\x1a\x30\x88\x04\x8c\x0f\xd8\x1a\x1e\x88\x04\x8c\x0f\x88\x0f\x88\x0f", -}; -static - struct _PyCode_DEF(58) -codecs_toplevel_consts_26_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & codecs_toplevel_consts_26_consts_11_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_26_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 624, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_26_consts_11_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[113]; - } -codecs_toplevel_consts_26_consts_13_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 112, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x53\x65\x74\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x65\x61\x6d\x27\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x73\x65\x74\x73\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x62\x75\x66\x66\x65\x72\x73\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x6b\x65\x65\x70\x69\x6e\x67\x20\x73\x74\x61\x74\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_26_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_26_consts_13_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -codecs_toplevel_consts_26_consts_13_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.seek", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[46]; - } -codecs_toplevel_consts_26_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 45, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x09\x0d\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x08\x0c\x8f\x0a\x8a\x0a\x89\x0c\x8c\x0c\x88\x0c\x88\x0c\x88\x0c", -}; -static - struct _PyCode_DEF(100) -codecs_toplevel_consts_26_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 50, - }, - .co_consts = & codecs_toplevel_consts_26_consts_13_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 637, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(seek), - .co_qualname = & codecs_toplevel_consts_26_consts_13_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[53]; - } -codecs_toplevel_consts_26_consts_14_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 52, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " Return the next decoded line from the input stream.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_26_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_26_consts_14_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_StopIteration = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StopIteration", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_26_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(readline), - & const_str_StopIteration._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -codecs_toplevel_consts_26_consts_14_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.__next__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[37]; - } -codecs_toplevel_consts_26_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 36, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x00\x10\x14\x8f\x7d\x8a\x7d\x89\x7f\x8c\x7f\x88\x04\xd8\x0b\x0f\xf0\x00\x01\x09\x18\xd8\x13\x17\x88\x4b\xdd\x0e\x1b\xd0\x08\x1b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_26_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(line), - }, - }, -}; -static - struct _PyCode_DEF(64) -codecs_toplevel_consts_26_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 32, - }, - .co_consts = & codecs_toplevel_consts_26_consts_14_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_26_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 645, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_26_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__next__), - .co_qualname = & codecs_toplevel_consts_26_consts_14_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x72\x02\x7c\x01\x53\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -codecs_toplevel_consts_26_consts_15_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.__iter__", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_26_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 653, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & codecs_toplevel_consts_26_consts_15_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -codecs_toplevel_consts_26_consts_16_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.__getattr__", -}; -static - struct _PyCode_DEF(36) -codecs_toplevel_consts_26_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 656, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getattr__), - .co_qualname = & codecs_toplevel_consts_26_consts_16_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_26_consts_17_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.__enter__", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_26_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 663, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & codecs_toplevel_consts_26_consts_17_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -codecs_toplevel_consts_26_consts_18_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.__exit__", -}; -static - struct _PyCode_DEF(56) -codecs_toplevel_consts_26_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 666, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & codecs_toplevel_consts_26_consts_18_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -codecs_toplevel_consts_26_consts_19_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReader.__reduce_ex__", -}; -static - struct _PyCode_DEF(58) -codecs_toplevel_consts_26_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 669, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__reduce_ex__), - .co_qualname = & codecs_toplevel_consts_26_consts_19_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_26_consts_21 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[24]; - }_object; - } -codecs_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 24, - }, - .ob_item = { - & const_str_StreamReader._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_26_consts_2.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_3.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - Py_False, - & codecs_toplevel_consts_26_consts_6.ob_base.ob_base, - Py_None, - Py_True, - & codecs_toplevel_consts_26_consts_9.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_10.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_11.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & codecs_toplevel_consts_26_consts_13.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_14.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_15.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_16.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_17.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_18.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_19.ob_base.ob_base, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_26_consts_21._object.ob_base.ob_base, - & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[19]; - }_object; - } -codecs_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 19, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - & const_str_str._ascii.ob_base, - & const_str_charbuffertype._ascii.ob_base, - &_Py_ID(__init__), - &_Py_ID(decode), - &_Py_ID(read), - &_Py_ID(readline), - & const_str_readlines._ascii.ob_base, - &_Py_ID(reset), - &_Py_ID(seek), - &_Py_ID(__next__), - &_Py_ID(__iter__), - &_Py_ID(getattr), - &_Py_ID(__getattr__), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - &_Py_ID(__reduce_ex__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[276]; - } -codecs_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 275, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x15\x18\x80\x4e\xf0\x04\x17\x05\x1f\xf0\x00\x17\x05\x1f\xf0\x00\x17\x05\x1f\xf0\x00\x17\x05\x1f\xf0\x32\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x06\x4e\x01\x05\x16\xf0\x00\x4e\x01\x05\x16\xf0\x00\x4e\x01\x05\x16\xf0\x00\x4e\x01\x05\x16\xf0\x60\x02\x49\x01\x05\x14\xf0\x00\x49\x01\x05\x14\xf0\x00\x49\x01\x05\x14\xf0\x00\x49\x01\x05\x14\xf0\x56\x02\x0d\x05\x29\xf0\x00\x0d\x05\x29\xf0\x00\x0d\x05\x29\xf0\x00\x0d\x05\x29\xf0\x1e\x0b\x05\x1f\xf0\x00\x0b\x05\x1f\xf0\x00\x0b\x05\x1f\xf0\x1a\x06\x05\x15\xf0\x00\x06\x05\x15\xf0\x00\x06\x05\x15\xf0\x00\x06\x05\x15\xf0\x10\x06\x05\x1c\xf0\x00\x06\x05\x1c\xf0\x00\x06\x05\x1c\xf0\x10\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x08\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", -}; -static - struct _PyCode_DEF(112) -codecs_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 56, - }, - .co_consts = & codecs_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 422, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_StreamReader._ascii.ob_base, - .co_qualname = & const_str_StreamReader._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x5a\x04\x64\x14\x64\x02\x84\x01\x5a\x05\x64\x14\x64\x03\x84\x01\x5a\x06\x64\x15\x64\x06\x84\x01\x5a\x07\x64\x16\x64\x09\x84\x01\x5a\x08\x64\x16\x64\x0a\x84\x01\x5a\x09\x64\x0b\x84\x00\x5a\x0a\x64\x17\x64\x0d\x84\x01\x5a\x0b\x64\x0e\x84\x00\x5a\x0c\x64\x0f\x84\x00\x5a\x0d\x65\x0e\x66\x01\x64\x10\x84\x01\x5a\x0f\x64\x11\x84\x00\x5a\x10\x64\x12\x84\x00\x5a\x11\x64\x13\x84\x00\x5a\x12\x64\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[258]; - } -codecs_toplevel_consts_28_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 257, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x73\x20\x61\x6c\x6c\x6f\x77\x20\x77\x72\x61\x70\x70\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x73\x20\x77\x68\x69\x63\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x6f\x72\x6b\x20\x69\x6e\x20\x62\x6f\x74\x68\x20\x72\x65\x61\x64\x20\x61\x6e\x64\x20\x77\x72\x69\x74\x65\x20\x6d\x6f\x64\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x73\x69\x67\x6e\x20\x69\x73\x20\x73\x75\x63\x68\x20\x74\x68\x61\x74\x20\x6f\x6e\x65\x20\x63\x61\x6e\x20\x75\x73\x65\x20\x74\x68\x65\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x2e\x6c\x6f\x6f\x6b\x75\x70\x28\x29\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_unknown = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "unknown", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[339]; - } -codecs_toplevel_consts_28_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 338, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x61\x64\x65\x72\x2c\x20\x57\x72\x69\x74\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x6f\x72\x20\x63\x6c\x61\x73\x73\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x2c\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x72\x65\x73\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x45\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x69\x73\x20\x64\x6f\x6e\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x77\x61\x79\x20\x61\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x2f\x52\x65\x61\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_28_consts_4_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_reader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "reader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_writer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "writer", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_28_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - & const_str_reader._ascii.ob_base, - & const_str_writer._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_28_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[61]; - } -codecs_toplevel_consts_28_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 60, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x1a\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_Reader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Reader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_Writer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Writer", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -codecs_toplevel_consts_28_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_stream._ascii.ob_base, - & const_str_Reader._ascii.ob_base, - & const_str_Writer._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct _PyCode_DEF(102) -codecs_toplevel_consts_28_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 51, - }, - .co_consts = & codecs_toplevel_consts_28_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 5, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 687, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_28_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_28_consts_4_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x02\x7c\x01\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x03\x7c\x01\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - &_Py_ID(read), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -codecs_toplevel_consts_28_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.read", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -codecs_toplevel_consts_28_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x1f\xd2\x0f\x1f\xa0\x04\xd1\x0f\x25\xd4\x0f\x25\xd0\x08\x25", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_size._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(54) -codecs_toplevel_consts_28_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 27, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 705, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_28_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(read), - .co_qualname = & codecs_toplevel_consts_28_consts_6_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - &_Py_ID(readline), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_28_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.readline", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -codecs_toplevel_consts_28_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x23\xd2\x0f\x23\xa0\x44\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", -}; -static - struct _PyCode_DEF(54) -codecs_toplevel_consts_28_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 27, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 709, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_28_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(readline), - .co_qualname = & codecs_toplevel_consts_28_consts_8_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - & const_str_readlines._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -codecs_toplevel_consts_28_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.readlines", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -codecs_toplevel_consts_28_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x24\xd2\x0f\x24\xa0\x58\xd1\x0f\x2e\xd4\x0f\x2e\xd0\x08\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_sizehint._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(54) -codecs_toplevel_consts_28_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 27, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 713, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_28_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_readlines._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_28_consts_9_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(next), - & const_str_reader._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_28_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.__next__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -codecs_toplevel_consts_28_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x10\x14\x90\x44\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\xd0\x08\x20", -}; -static - struct _PyCode_DEF(42) -codecs_toplevel_consts_28_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & codecs_toplevel_consts_26_consts_14_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 717, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__next__), - .co_qualname = & codecs_toplevel_consts_28_consts_10_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_28_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.__iter__", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_28_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 722, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & codecs_toplevel_consts_28_consts_11_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_writer._ascii.ob_base, - &_Py_ID(write), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -codecs_toplevel_consts_28_consts_12_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.write", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -codecs_toplevel_consts_28_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x20\xd2\x0f\x20\xa0\x14\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_12_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_data._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(54) -codecs_toplevel_consts_28_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 27, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 725, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_28_consts_12_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(write), - .co_qualname = & codecs_toplevel_consts_28_consts_12_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_28_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_writer._ascii.ob_base, - & const_str_writelines._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -codecs_toplevel_consts_28_consts_13_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.writelines", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -codecs_toplevel_consts_28_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x25\xd2\x0f\x25\xa0\x64\xd1\x0f\x2b\xd4\x0f\x2b\xd0\x08\x2b", -}; -static - struct _PyCode_DEF(54) -codecs_toplevel_consts_28_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 27, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 729, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_writelines._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_28_consts_13_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_28_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - &_Py_ID(reset), - & const_str_writer._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -codecs_toplevel_consts_28_consts_14_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.reset", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[49]; - } -codecs_toplevel_consts_28_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 48, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", -}; -static - struct _PyCode_DEF(106) -codecs_toplevel_consts_28_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 53, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 733, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_28_consts_14_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -codecs_toplevel_consts_28_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - &_Py_ID(seek), - & const_str_reader._ascii.ob_base, - &_Py_ID(reset), - & const_str_writer._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -codecs_toplevel_consts_28_consts_16_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.seek", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[101]; - } -codecs_toplevel_consts_28_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 100, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x08\x0c\x8c\x0b\xd7\x08\x19\xd2\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x0b\x11\x90\x51\x8a\x3b\x88\x3b\x98\x36\xa0\x51\x9a\x3b\x98\x3b\xd8\x0c\x10\x8c\x4b\xd7\x0c\x1d\xd2\x0c\x1d\xd1\x0c\x1f\xd4\x0c\x1f\xd0\x0c\x1f\xd0\x0c\x1f\xd0\x0c\x1f\xf0\x03\x00\x0c\x17\x88\x3b\x98\x3b\x98\x3b", -}; -static - struct _PyCode_DEF(192) -codecs_toplevel_consts_28_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 96, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 738, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(seek), - .co_qualname = & codecs_toplevel_consts_28_consts_16_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x21\x7c\x01\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x1d\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -codecs_toplevel_consts_28_consts_17_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.__getattr__", -}; -static - struct _PyCode_DEF(36) -codecs_toplevel_consts_28_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 744, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getattr__), - .co_qualname = & codecs_toplevel_consts_28_consts_17_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -codecs_toplevel_consts_28_consts_18_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.__enter__", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_28_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 753, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & codecs_toplevel_consts_28_consts_18_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_28_consts_19_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.__exit__", -}; -static - struct _PyCode_DEF(56) -codecs_toplevel_consts_28_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 756, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & codecs_toplevel_consts_28_consts_19_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[33]; - } -codecs_toplevel_consts_28_consts_20_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 32, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamReaderWriter.__reduce_ex__", -}; -static - struct _PyCode_DEF(58) -codecs_toplevel_consts_28_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 759, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__reduce_ex__), - .co_qualname = & codecs_toplevel_consts_28_consts_20_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_28_consts_22 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[25]; - }_object; - } -codecs_toplevel_consts_28_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 25, - }, - .ob_item = { - & const_str_StreamReaderWriter._ascii.ob_base, - & codecs_toplevel_consts_28_consts_1._ascii.ob_base, - & const_str_unknown._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_28_consts_4.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & codecs_toplevel_consts_28_consts_6.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_28_consts_8.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_9.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_10.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_11.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_12.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_13.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_14.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & codecs_toplevel_consts_28_consts_16.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_17.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_18.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_19.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_20.ob_base.ob_base, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_22._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[20]; - }_object; - } -codecs_toplevel_consts_28_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 20, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(encoding), - &_Py_ID(__init__), - &_Py_ID(read), - &_Py_ID(readline), - & const_str_readlines._ascii.ob_base, - &_Py_ID(__next__), - &_Py_ID(__iter__), - &_Py_ID(write), - & const_str_writelines._ascii.ob_base, - &_Py_ID(reset), - &_Py_ID(seek), - &_Py_ID(getattr), - &_Py_ID(__getattr__), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - &_Py_ID(__reduce_ex__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[288]; - } -codecs_toplevel_consts_28_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 287, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x07\x05\x08\xf0\x00\x07\x05\x08\xf0\x12\x00\x10\x19\x80\x48\xf0\x04\x10\x05\x1d\xf0\x00\x10\x05\x1d\xf0\x00\x10\x05\x1d\xf0\x00\x10\x05\x1d\xf0\x24\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x08\x02\x05\x2a\xf0\x00\x02\x05\x2a\xf0\x00\x02\x05\x2a\xf0\x00\x02\x05\x2a\xf0\x08\x02\x05\x2f\xf0\x00\x02\x05\x2f\xf0\x00\x02\x05\x2f\xf0\x00\x02\x05\x2f\xf0\x08\x03\x05\x21\xf0\x00\x03\x05\x21\xf0\x00\x03\x05\x21\xf0\x0a\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x02\x05\x27\xf0\x00\x02\x05\x27\xf0\x00\x02\x05\x27\xf0\x08\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x08\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x0a\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x0e\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x12\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", -}; -static - struct _PyCode_DEF(120) -codecs_toplevel_consts_28 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 60, - }, - .co_consts = & codecs_toplevel_consts_28_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 674, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_StreamReaderWriter._ascii.ob_base, - .co_qualname = & const_str_StreamReaderWriter._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x15\x64\x04\x84\x01\x5a\x05\x64\x16\x64\x06\x84\x01\x5a\x06\x64\x17\x64\x08\x84\x01\x5a\x07\x64\x17\x64\x09\x84\x01\x5a\x08\x64\x0a\x84\x00\x5a\x09\x64\x0b\x84\x00\x5a\x0a\x64\x0c\x84\x00\x5a\x0b\x64\x0d\x84\x00\x5a\x0c\x64\x0e\x84\x00\x5a\x0d\x64\x18\x64\x10\x84\x01\x5a\x0e\x65\x0f\x66\x01\x64\x11\x84\x01\x5a\x10\x64\x12\x84\x00\x5a\x11\x64\x13\x84\x00\x5a\x12\x64\x14\x84\x00\x5a\x13\x64\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[579]; - } -codecs_toplevel_consts_30_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 578, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x73\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x20\x64\x61\x74\x61\x20\x66\x72\x6f\x6d\x20\x6f\x6e\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x74\x6f\x20\x61\x6e\x6f\x74\x68\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x79\x20\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x6c\x65\x74\x65\x20\x73\x65\x74\x20\x6f\x66\x20\x41\x50\x49\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6f\x64\x65\x63\x73\x2e\x6c\x6f\x6f\x6b\x75\x70\x28\x29\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x6f\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x20\x74\x68\x65\x69\x72\x20\x74\x61\x73\x6b\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x44\x61\x74\x61\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x63\x6f\x64\x65\x72\x20\x69\x73\x20\x66\x69\x72\x73\x74\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x69\x6e\x74\x6f\x20\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x66\x6f\x72\x6d\x61\x74\x20\x28\x64\x65\x70\x65\x6e\x64\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68\x65\x20\x22\x64\x65\x63\x6f\x64\x65\x22\x20\x63\x6f\x64\x65\x63\x29\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x72\x69\x74\x65\x72\x20\x63\x6c\x61\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x6e\x20\x74\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x2c\x20\x64\x61\x74\x61\x20\x69\x73\x20\x72\x65\x61\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x73\x74\x72\x65\x61\x6d\x20\x75\x73\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x20\x52\x65\x61\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x61\x6c\x6c\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[746]; - } -codecs_toplevel_consts_30_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 745, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x63\x6f\x64\x65\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x77\x68\x69\x63\x68\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x73\x20\x61\x20\x74\x77\x6f\x2d\x77\x61\x79\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6f\x6e\x76\x65\x72\x73\x69\x6f\x6e\x3a\x20\x65\x6e\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x65\x20\x77\x6f\x72\x6b\x20\x6f\x6e\x20\x74\x68\x65\x20\x66\x72\x6f\x6e\x74\x65\x6e\x64\x20\x28\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x61\x74\x61\x20\x76\x69\x73\x69\x62\x6c\x65\x20\x74\x6f\x20\x2e\x72\x65\x61\x64\x28\x29\x20\x61\x6e\x64\x20\x2e\x77\x72\x69\x74\x65\x28\x29\x29\x20\x77\x68\x69\x6c\x65\x20\x52\x65\x61\x64\x65\x72\x20\x61\x6e\x64\x20\x57\x72\x69\x74\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x6f\x72\x6b\x20\x6f\x6e\x20\x74\x68\x65\x20\x62\x61\x63\x6b\x65\x6e\x64\x20\x28\x74\x68\x65\x20\x64\x61\x74\x61\x20\x69\x6e\x20\x73\x74\x72\x65\x61\x6d\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x75\x73\x65\x20\x74\x68\x65\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x74\x6f\x20\x64\x6f\x20\x74\x72\x61\x6e\x73\x70\x61\x72\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x63\x6f\x64\x69\x6e\x67\x73\x20\x66\x72\x6f\x6d\x20\x65\x2e\x67\x2e\x20\x6c\x61\x74\x69\x6e\x2d\x31\x20\x74\x6f\x20\x75\x74\x66\x2d\x38\x20\x61\x6e\x64\x20\x62\x61\x63\x6b\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x72\x65\x61\x6d\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x65\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x65\x20\x6d\x75\x73\x74\x20\x61\x64\x68\x65\x72\x65\x20\x74\x6f\x20\x74\x68\x65\x20\x43\x6f\x64\x65\x63\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x3b\x20\x52\x65\x61\x64\x65\x72\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x57\x72\x69\x74\x65\x72\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x6f\x72\x20\x63\x6c\x61\x73\x73\x65\x73\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x61\x6e\x64\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x73\x20\x72\x65\x73\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x45\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x20\x69\x73\x20\x64\x6f\x6e\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x77\x61\x79\x20\x61\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x2f\x52\x65\x61\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_30_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_30_consts_4_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -codecs_toplevel_consts_30_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_stream._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(decode), - & const_str_reader._ascii.ob_base, - & const_str_writer._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_30_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[75]; - } -codecs_toplevel_consts_30_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 74, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x2a\x00\x17\x1d\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x90\x66\x98\x56\xa0\x56\xd1\x16\x2c\xd4\x16\x2c\x88\x04\x8c\x0b\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -codecs_toplevel_consts_30_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_stream._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(decode), - & const_str_Reader._ascii.ob_base, - & const_str_Writer._ascii.ob_base, - &_Py_ID(errors), - }, - }, -}; -static - struct _PyCode_DEF(130) -codecs_toplevel_consts_30_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 65, - }, - .co_consts = & codecs_toplevel_consts_30_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 7, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 784, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_30_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & codecs_toplevel_consts_30_consts_4_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x04\x7c\x01\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x7c\x05\x7c\x01\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_30_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - &_Py_ID(read), - &_Py_ID(encode), - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -codecs_toplevel_consts_30_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.read", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[55]; - } -codecs_toplevel_consts_30_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 54, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x1f\xd2\x0f\x1f\xa0\x04\xd1\x0f\x25\xd4\x0f\x25\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x88\x0b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_bytesencoded = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bytesencoded", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_30_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_size._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_bytesencoded._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(118) -codecs_toplevel_consts_30_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 59, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 812, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_30_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(read), - .co_qualname = & codecs_toplevel_consts_30_consts_6_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_30_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - &_Py_ID(readline), - &_Py_ID(encode), - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_30_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.readline", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[81]; - } -codecs_toplevel_consts_30_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 80, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0f\x88\x3c\xd8\x13\x17\x94\x3b\xd7\x13\x27\xd2\x13\x27\xd1\x13\x29\xd4\x13\x29\x88\x44\x88\x44\xe0\x13\x17\x94\x3b\xd7\x13\x27\xd2\x13\x27\xa8\x04\xd1\x13\x2d\xd4\x13\x2d\x88\x44\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x88\x0b", -}; -static - struct _PyCode_DEF(174) -codecs_toplevel_consts_30_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 87, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 818, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_30_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(readline), - .co_qualname = & codecs_toplevel_consts_30_consts_8_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x80\x1a\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x1a\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_30_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - Py_True, - & codecs_toplevel_consts_26_consts_6_consts_4._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -codecs_toplevel_consts_30_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - &_Py_ID(read), - &_Py_ID(encode), - &_Py_ID(errors), - & const_str_splitlines._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -codecs_toplevel_consts_30_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.readlines", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[68]; - } -codecs_toplevel_consts_30_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 67, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x13\x8c\x7b\xd7\x0f\x1f\xd2\x0f\x1f\xd1\x0f\x21\xd4\x0f\x21\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x8f\x7f\x8a\x7f\xa8\x04\x88\x7f\xd1\x0f\x2d\xd4\x0f\x2d\xd0\x08\x2d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_30_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_sizehint._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_bytesencoded._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(156) -codecs_toplevel_consts_30_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 78, - }, - .co_consts = & codecs_toplevel_consts_30_consts_9_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 827, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_30_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_readlines._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_30_consts_9_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xac\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_30_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(next), - & const_str_reader._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_30_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.__next__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[51]; - } -codecs_toplevel_consts_30_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 50, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x10\x14\x90\x44\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x88\x0b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_30_consts_10_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_bytesencoded._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(106) -codecs_toplevel_consts_30_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 53, - }, - .co_consts = & codecs_toplevel_consts_26_consts_14_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 833, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_30_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__next__), - .co_qualname = & codecs_toplevel_consts_30_consts_10_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_30_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.__iter__", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_30_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 840, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & codecs_toplevel_consts_30_consts_11_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_30_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(decode), - &_Py_ID(errors), - & const_str_writer._ascii.ob_base, - &_Py_ID(write), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -codecs_toplevel_consts_30_consts_12_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.write", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[51]; - } -codecs_toplevel_consts_30_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 50, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x8c\x7b\xd7\x0f\x20\xd2\x0f\x20\xa0\x14\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_bytesdecoded = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bytesdecoded", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_30_consts_12_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_bytesdecoded._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(114) -codecs_toplevel_consts_30_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 57, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 843, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_30_consts_12_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(write), - .co_qualname = & codecs_toplevel_consts_30_consts_12_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -codecs_toplevel_consts_30_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(join), - &_Py_ID(decode), - &_Py_ID(errors), - & const_str_writer._ascii.ob_base, - &_Py_ID(write), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -codecs_toplevel_consts_30_consts_13_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.writelines", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[66]; - } -codecs_toplevel_consts_30_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 65, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x12\x8f\x78\x8a\x78\x98\x04\x89\x7e\x8c\x7e\x88\x04\xd8\x1d\x21\x9f\x5b\x9a\x5b\xa8\x14\xa8\x74\xac\x7b\xd1\x1d\x3b\xd4\x1d\x3b\xd1\x08\x1a\x88\x04\x88\x6c\xd8\x0f\x13\x8c\x7b\xd7\x0f\x20\xd2\x0f\x20\xa0\x14\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_30_consts_13_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_list._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_bytesdecoded._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(156) -codecs_toplevel_consts_30_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 78, - }, - .co_consts = & codecs_toplevel_consts_22_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 848, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_30_consts_13_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_writelines._ascii.ob_base, - .co_qualname = & codecs_toplevel_consts_30_consts_13_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -codecs_toplevel_consts_30_consts_14_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.reset", -}; -static - struct _PyCode_DEF(106) -codecs_toplevel_consts_30_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 53, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_28_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 854, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(reset), - .co_qualname = & codecs_toplevel_consts_30_consts_14_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_28_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_30_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_reader._ascii.ob_base, - &_Py_ID(seek), - & const_str_writer._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -codecs_toplevel_consts_30_consts_16_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.seek", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[59]; - } -codecs_toplevel_consts_30_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 58, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x00\x09\x0d\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x08\x0c\x8c\x0b\xd7\x08\x18\xd2\x08\x18\x98\x16\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd0\x08\x28\xd0\x08\x28", -}; -static - struct _PyCode_DEF(114) -codecs_toplevel_consts_30_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 57, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 859, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(seek), - .co_qualname = & codecs_toplevel_consts_30_consts_16_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -codecs_toplevel_consts_30_consts_17_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.__getattr__", -}; -static - struct _PyCode_DEF(36) -codecs_toplevel_consts_30_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & codecs_toplevel_consts_24_consts_8_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 865, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getattr__), - .co_qualname = & codecs_toplevel_consts_30_consts_17_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x02\x00\x7c\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -codecs_toplevel_consts_30_consts_18_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.__enter__", -}; -static - struct _PyCode_DEF(6) -codecs_toplevel_consts_30_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 872, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & codecs_toplevel_consts_30_consts_18_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -codecs_toplevel_consts_30_consts_19_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.__exit__", -}; -static - struct _PyCode_DEF(56) -codecs_toplevel_consts_30_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 875, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & codecs_toplevel_consts_30_consts_19_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -codecs_toplevel_consts_30_consts_20_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StreamRecoder.__reduce_ex__", -}; -static - struct _PyCode_DEF(58) -codecs_toplevel_consts_30_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & codecs_toplevel_consts_24_consts_11_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_24_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 878, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_24_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__reduce_ex__), - .co_qualname = & codecs_toplevel_consts_30_consts_20_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[25]; - }_object; - } -codecs_toplevel_consts_30_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 25, - }, - .ob_item = { - & const_str_StreamRecoder._ascii.ob_base, - & codecs_toplevel_consts_30_consts_1._ascii.ob_base, - & const_str_unknown._ascii.ob_base, - &_Py_ID(strict), - & codecs_toplevel_consts_30_consts_4.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & codecs_toplevel_consts_30_consts_6.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_30_consts_8.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_9.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_10.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_11.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_12.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_13.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_14.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & codecs_toplevel_consts_30_consts_16.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_17.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_18.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_19.ob_base.ob_base, - & codecs_toplevel_consts_30_consts_20.ob_base.ob_base, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & codecs_toplevel_consts_28_consts_22._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - & codecs_toplevel_consts_24_consts_14._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_data_encoding = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "data_encoding", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_file_encoding = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "file_encoding", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[21]; - }_object; - } -codecs_toplevel_consts_30_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 21, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - & const_str_data_encoding._ascii.ob_base, - & const_str_file_encoding._ascii.ob_base, - &_Py_ID(__init__), - &_Py_ID(read), - &_Py_ID(readline), - & const_str_readlines._ascii.ob_base, - &_Py_ID(__next__), - &_Py_ID(__iter__), - &_Py_ID(write), - & const_str_writelines._ascii.ob_base, - &_Py_ID(reset), - &_Py_ID(seek), - &_Py_ID(getattr), - &_Py_ID(__getattr__), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - &_Py_ID(__reduce_ex__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[298]; - } -codecs_toplevel_consts_30_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 297, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x04\x0d\x05\x08\xf0\x00\x0d\x05\x08\xf0\x1e\x00\x15\x1e\x80\x4d\xd8\x14\x1d\x80\x4d\xf0\x06\x00\x19\x21\xf0\x03\x1a\x05\x1d\xf0\x00\x1a\x05\x1d\xf0\x00\x1a\x05\x1d\xf0\x00\x1a\x05\x1d\xf0\x38\x04\x05\x14\xf0\x00\x04\x05\x14\xf0\x00\x04\x05\x14\xf0\x00\x04\x05\x14\xf0\x0c\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x12\x04\x05\x2e\xf0\x00\x04\x05\x2e\xf0\x00\x04\x05\x2e\xf0\x00\x04\x05\x2e\xf0\x0c\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x03\x05\x27\xf0\x00\x03\x05\x27\xf0\x00\x03\x05\x27\xf0\x0a\x04\x05\x27\xf0\x00\x04\x05\x27\xf0\x00\x04\x05\x27\xf0\x0c\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x00\x03\x05\x1c\xf0\x0a\x04\x05\x29\xf0\x00\x04\x05\x29\xf0\x00\x04\x05\x29\xf0\x00\x04\x05\x29\xf0\x0e\x00\x1d\x24\xf0\x03\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x00\x05\x05\x2a\xf0\x0e\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x06\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01\xf0\x00\x01\x05\x48\x01", -}; -static - struct _PyCode_DEF(126) -codecs_toplevel_consts_30 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 63, - }, - .co_consts = & codecs_toplevel_consts_30_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_30_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 764, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_StreamRecoder._ascii.ob_base, - .co_qualname = & const_str_StreamRecoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_30_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x02\x5a\x05\x09\x00\x64\x15\x64\x04\x84\x01\x5a\x06\x64\x16\x64\x06\x84\x01\x5a\x07\x64\x17\x64\x08\x84\x01\x5a\x08\x64\x17\x64\x09\x84\x01\x5a\x09\x64\x0a\x84\x00\x5a\x0a\x64\x0b\x84\x00\x5a\x0b\x64\x0c\x84\x00\x5a\x0c\x64\x0d\x84\x00\x5a\x0d\x64\x0e\x84\x00\x5a\x0e\x64\x18\x64\x10\x84\x01\x5a\x0f\x65\x10\x66\x01\x64\x11\x84\x01\x5a\x11\x64\x12\x84\x00\x5a\x12\x64\x13\x84\x00\x5a\x13\x64\x14\x84\x00\x5a\x14\x64\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[1180]; - } -codecs_toplevel_consts_35_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1179, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x4f\x70\x65\x6e\x20\x61\x6e\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x66\x69\x6c\x65\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x6d\x6f\x64\x65\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x20\x77\x72\x61\x70\x70\x65\x64\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x70\x72\x6f\x76\x69\x64\x69\x6e\x67\x20\x74\x72\x61\x6e\x73\x70\x61\x72\x65\x6e\x74\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2f\x64\x65\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x3a\x20\x54\x68\x65\x20\x77\x72\x61\x70\x70\x65\x64\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x6f\x6e\x6c\x79\x20\x61\x63\x63\x65\x70\x74\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x66\x6f\x72\x6d\x61\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x73\x2c\x20\x69\x2e\x65\x2e\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x6d\x6f\x73\x74\x20\x62\x75\x69\x6c\x74\x69\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x6f\x64\x65\x63\x73\x2e\x20\x4f\x75\x74\x70\x75\x74\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x63\x6f\x64\x65\x63\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x20\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x75\x73\x75\x61\x6c\x6c\x79\x20\x62\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x61\x73\x20\x77\x65\x6c\x6c\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x20\x6e\x6f\x74\x20\x4e\x6f\x6e\x65\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x66\x69\x6c\x65\x73\x20\x61\x72\x65\x20\x61\x6c\x77\x61\x79\x73\x20\x6f\x70\x65\x6e\x65\x64\x20\x69\x6e\x20\x62\x69\x6e\x61\x72\x79\x20\x6d\x6f\x64\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x66\x69\x6c\x65\x20\x6d\x6f\x64\x65\x20\x69\x73\x20\x27\x72\x27\x2c\x20\x6d\x65\x61\x6e\x69\x6e\x67\x20\x74\x6f\x20\x6f\x70\x65\x6e\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x69\x6e\x20\x72\x65\x61\x64\x20\x6d\x6f\x64\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x73\x70\x65\x63\x69\x66\x69\x65\x73\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x6f\x20\x62\x65\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x69\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x6f\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x77\x68\x69\x63\x68\x20\x63\x61\x75\x73\x65\x73\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x73\x20\x74\x6f\x20\x62\x65\x20\x72\x61\x69\x73\x65\x64\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x72\x72\x6f\x72\x20\x6f\x63\x63\x75\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x75\x66\x66\x65\x72\x69\x6e\x67\x20\x68\x61\x73\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6d\x65\x61\x6e\x69\x6e\x67\x20\x61\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x69\x6e\x20\x6f\x70\x65\x6e\x28\x29\x20\x41\x50\x49\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x20\x2d\x31\x20\x77\x68\x69\x63\x68\x20\x6d\x65\x61\x6e\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x62\x75\x66\x66\x65\x72\x20\x73\x69\x7a\x65\x20\x77\x69\x6c\x6c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x65\x20\x75\x73\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x77\x72\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x6e\x20\x65\x78\x74\x72\x61\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x68\x69\x63\x68\x20\x61\x6c\x6c\x6f\x77\x73\x20\x71\x75\x65\x72\x79\x69\x6e\x67\x20\x74\x68\x65\x20\x75\x73\x65\x64\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x20\x54\x68\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x20\x69\x73\x20\x6f\x6e\x6c\x79\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x69\x66\x20\x61\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x61\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x61\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_b = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_35_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & codecs_toplevel_consts_35_consts_0._ascii.ob_base, - Py_None, - & const_str_b._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -codecs_toplevel_consts_35_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(builtins), - &_Py_ID(open), - & const_str_lookup._ascii.ob_base, - & const_str_StreamReaderWriter._ascii.ob_base, - & const_str_streamreader._ascii.ob_base, - & const_str_streamwriter._ascii.ob_base, - &_Py_ID(encoding), - &_Py_ID(close), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[139]; - } -codecs_toplevel_consts_35_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 138, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x3e\x00\x08\x10\xd0\x07\x1b\xd8\x07\x0a\x90\x24\x80\x7f\x80\x7f\xe0\x0f\x13\x90\x63\x89\x7a\x88\x04\xdd\x0b\x13\x8c\x3d\x98\x18\xa0\x34\xa8\x19\xd1\x0b\x33\xd4\x0b\x33\x80\x44\xd8\x07\x0f\xd0\x07\x17\xd8\x0f\x13\x88\x0b\xf0\x04\x08\x05\x0e\xdd\x0f\x15\x90\x68\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xdd\x0e\x20\xa0\x14\xa0\x74\xd4\x27\x38\xb8\x24\xd4\x3a\x4b\xc8\x56\xd1\x0e\x54\xd4\x0e\x54\x88\x03\xe0\x17\x1f\x88\x03\x8c\x0c\xd8\x0f\x12\x88\x0a\xf8\xf0\x02\x02\x05\x0e\xd8\x08\x0c\x8f\x0a\x8a\x0a\x89\x0c\x8c\x0c\x88\x0c\xd8\x08\x0d\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[12]; - } -codecs_toplevel_consts_35_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 11, - }, - .ob_shash = -1, - .ob_sval = "\xa7\x33\x41\x1b\x00\xc1\x1b\x17\x41\x32\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_buffering = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "buffering", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_srw = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "srw", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -codecs_toplevel_consts_35_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(filename), - &_Py_ID(mode), - &_Py_ID(encoding), - &_Py_ID(errors), - & const_str_buffering._ascii.ob_base, - & const_str_file._ascii.ob_base, - & const_str_info._ascii.ob_base, - & const_str_srw._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(234) -codecs_toplevel_consts_35 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 117, - }, - .co_consts = & codecs_toplevel_consts_35_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_35_names._object.ob_base.ob_base, - .co_exceptiontable = & codecs_toplevel_consts_35_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 5, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 883, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_35_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(open), - .co_qualname = &_Py_ID(open), - .co_linetable = & codecs_toplevel_consts_35_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x81\x09\x64\x02\x7c\x01\x76\x01\x72\x05\x7c\x01\x64\x02\x7a\x00\x00\x00\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x02\x80\x02\x7c\x05\x53\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x06\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x02\x7c\x07\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x53\x00\x23\x00\x01\x00\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x82\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[987]; - } -codecs_toplevel_consts_36_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 986, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x52\x65\x74\x75\x72\x6e\x20\x61\x20\x77\x72\x61\x70\x70\x65\x64\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x66\x69\x6c\x65\x20\x77\x68\x69\x63\x68\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x72\x61\x6e\x73\x70\x61\x72\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x44\x61\x74\x61\x20\x77\x72\x69\x74\x74\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x77\x72\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x20\x69\x73\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x61\x63\x63\x6f\x72\x64\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x6f\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x75\x6e\x64\x65\x72\x6c\x79\x69\x6e\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x69\x6c\x65\x20\x75\x73\x69\x6e\x67\x20\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x20\x54\x68\x65\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x64\x61\x74\x61\x20\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x75\x73\x75\x61\x6c\x6c\x79\x20\x62\x65\x20\x55\x6e\x69\x63\x6f\x64\x65\x20\x62\x75\x74\x20\x64\x65\x70\x65\x6e\x64\x73\x20\x6f\x6e\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x63\x6f\x64\x65\x63\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x42\x79\x74\x65\x73\x20\x72\x65\x61\x64\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x61\x72\x65\x20\x64\x65\x63\x6f\x64\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x74\x68\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x73\x73\x65\x64\x20\x62\x61\x63\x6b\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x61\x6c\x6c\x65\x72\x20\x65\x6e\x63\x6f\x64\x65\x64\x20\x75\x73\x69\x6e\x67\x20\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x20\x6e\x6f\x74\x20\x67\x69\x76\x65\x6e\x2c\x20\x69\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x20\x74\x6f\x20\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x20\x49\x74\x20\x64\x65\x66\x61\x75\x6c\x74\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x6f\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x77\x68\x69\x63\x68\x20\x63\x61\x75\x73\x65\x73\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x73\x20\x74\x6f\x20\x62\x65\x20\x72\x61\x69\x73\x65\x64\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x65\x72\x72\x6f\x72\x20\x6f\x63\x63\x75\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x77\x72\x61\x70\x70\x65\x64\x20\x66\x69\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x77\x6f\x20\x65\x78\x74\x72\x61\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x2e\x64\x61\x74\x61\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x2e\x66\x69\x6c\x65\x5f\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x68\x69\x63\x68\x20\x72\x65\x66\x6c\x65\x63\x74\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6e\x61\x6d\x65\x2e\x20\x54\x68\x65\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x66\x6f\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x74\x72\x6f\x73\x70\x65\x63\x74\x69\x6f\x6e\x20\x62\x79\x20\x50\x79\x74\x68\x6f\x6e\x20\x70\x72\x6f\x67\x72\x61\x6d\x73\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_36_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_36_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -codecs_toplevel_consts_36_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_lookup._ascii.ob_base, - & const_str_StreamRecoder._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(decode), - & const_str_streamreader._ascii.ob_base, - & const_str_streamwriter._ascii.ob_base, - & const_str_data_encoding._ascii.ob_base, - & const_str_file_encoding._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[107]; - } -codecs_toplevel_consts_36_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 106, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x32\x00\x08\x15\xd0\x07\x1c\xd8\x18\x25\x88\x0d\xdd\x10\x16\x90\x7d\xd1\x10\x25\xd4\x10\x25\x80\x49\xdd\x10\x16\x90\x7d\xd1\x10\x25\xd4\x10\x25\x80\x49\xdd\x09\x16\x90\x74\x98\x59\xd4\x1d\x2d\xa8\x79\xd4\x2f\x3f\xd8\x17\x20\xd4\x17\x2d\xa8\x79\xd4\x2f\x45\xc0\x76\xf1\x03\x01\x0a\x4f\x01\xf4\x00\x01\x0a\x4f\x01\x80\x42\xf0\x06\x00\x18\x25\x80\x42\xd4\x04\x14\xd8\x17\x24\x80\x42\xd4\x04\x14\xd8\x0b\x0d\x80\x49", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_data_info = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "data_info", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_file_info = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "file_info", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_sr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sr", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -codecs_toplevel_consts_36_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_file._ascii.ob_base, - & const_str_data_encoding._ascii.ob_base, - & const_str_file_encoding._ascii.ob_base, - &_Py_ID(errors), - & const_str_data_info._ascii.ob_base, - & const_str_file_info._ascii.ob_base, - & const_str_sr._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(182) -codecs_toplevel_consts_36 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 91, - }, - .co_consts = & codecs_toplevel_consts_36_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_36_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 932, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_36_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_EncodedFile._ascii.ob_base, - .co_qualname = & const_str_EncodedFile._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_36_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x80\x02\x7c\x01\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x04\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x01\x7c\x06\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x06\x5f\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[159]; - } -codecs_toplevel_consts_37_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 158, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x65\x6e\x63\x6f\x64\x65\x72\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_37_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_37_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_37_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_lookup._ascii.ob_base, - &_Py_ID(encode), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[22]; - } -codecs_toplevel_consts_37_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 21, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x0c\x12\x90\x28\xd1\x0b\x1b\xd4\x0b\x1b\xd4\x0b\x22\xd0\x04\x22", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_37_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(encoding), - }, - }, -}; -static - struct _PyCode_DEF(42) -codecs_toplevel_consts_37 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & codecs_toplevel_consts_37_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_37_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 970, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getencoder._ascii.ob_base, - .co_qualname = & const_str_getencoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_37_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[159]; - } -codecs_toplevel_consts_38_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 158, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x64\x65\x63\x6f\x64\x65\x72\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_38_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_38_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_38_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_lookup._ascii.ob_base, - &_Py_ID(decode), - }, - }, -}; -static - struct _PyCode_DEF(42) -codecs_toplevel_consts_38 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & codecs_toplevel_consts_38_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_38_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 980, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getdecoder._ascii.ob_base, - .co_qualname = & const_str_getdecoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_37_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[248]; - } -codecs_toplevel_consts_39_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 247, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x73\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x6e\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x65\x6e\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_39_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_39_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_LookupError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LookupError", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_39_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_lookup._ascii.ob_base, - & const_str_incrementalencoder._ascii.ob_base, - & const_str_LookupError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[45]; - } -codecs_toplevel_consts_39_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 44, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x12\x00\x0f\x15\x90\x58\xd1\x0e\x1e\xd4\x0e\x1e\xd4\x0e\x31\x80\x47\xd8\x07\x0e\x80\x7f\xdd\x0e\x19\x98\x28\xd1\x0e\x23\xd4\x0e\x23\xd0\x08\x23\xd8\x0b\x12\x80\x4e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_encoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "encoder", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_39_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(encoding), - & const_str_encoder._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(80) -codecs_toplevel_consts_39 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 40, - }, - .co_consts = & codecs_toplevel_consts_39_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_39_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 990, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getincrementalencoder._ascii.ob_base, - .co_qualname = & const_str_getincrementalencoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_39_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x80\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[248]; - } -codecs_toplevel_consts_40_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 247, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x73\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x61\x6e\x20\x69\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x20\x64\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_40_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_40_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -codecs_toplevel_consts_40_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_lookup._ascii.ob_base, - & const_str_incrementaldecoder._ascii.ob_base, - & const_str_LookupError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_decoder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "decoder", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_40_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(encoding), - & const_str_decoder._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(80) -codecs_toplevel_consts_40 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 40, - }, - .co_consts = & codecs_toplevel_consts_40_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_40_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1004, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_40_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getincrementaldecoder._ascii.ob_base, - .co_qualname = & const_str_getincrementaldecoder._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_39_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x80\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[181]; - } -codecs_toplevel_consts_41_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 180, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x53\x74\x72\x65\x61\x6d\x52\x65\x61\x64\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_41_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_41_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_41_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_lookup._ascii.ob_base, - & const_str_streamreader._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[22]; - } -codecs_toplevel_consts_41_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 21, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x0c\x12\x90\x28\xd1\x0b\x1b\xd4\x0b\x1b\xd4\x0b\x28\xd0\x04\x28", -}; -static - struct _PyCode_DEF(42) -codecs_toplevel_consts_41 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & codecs_toplevel_consts_41_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_41_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1018, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getreader._ascii.ob_base, - .co_qualname = & const_str_getreader._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_41_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[181]; - } -codecs_toplevel_consts_42_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 180, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x4c\x6f\x6f\x6b\x75\x70\x20\x75\x70\x20\x74\x68\x65\x20\x63\x6f\x64\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x67\x69\x76\x65\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x74\x73\x20\x53\x74\x72\x65\x61\x6d\x57\x72\x69\x74\x65\x72\x20\x63\x6c\x61\x73\x73\x20\x6f\x72\x20\x66\x61\x63\x74\x6f\x72\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x61\x20\x4c\x6f\x6f\x6b\x75\x70\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x63\x61\x73\x65\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x63\x61\x6e\x6e\x6f\x74\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_42_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & codecs_toplevel_consts_42_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_42_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_lookup._ascii.ob_base, - & const_str_streamwriter._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(42) -codecs_toplevel_consts_42 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & codecs_toplevel_consts_42_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_42_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1028, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getwriter._ascii.ob_base, - .co_qualname = & const_str_getwriter._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_41_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[192]; - } -codecs_toplevel_consts_43_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 191, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x45\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x45\x6e\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x69\x6e\x67\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x61\x6e\x64\x20\x6b\x77\x61\x72\x67\x73\x20\x61\x72\x65\x20\x70\x61\x73\x73\x65\x64\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x45\x6e\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_43_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & codecs_toplevel_consts_43_consts_0._ascii.ob_base, - &_Py_STR(empty), - Py_True, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_43_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_getincrementalencoder._ascii.ob_base, - &_Py_ID(encode), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[141]; - } -codecs_toplevel_consts_43_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 140, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x12\x00\x0f\x2e\xd5\x0e\x23\xa0\x48\xd1\x0e\x2d\xd4\x0e\x2d\xa8\x66\xd0\x0e\x3f\xd0\x0e\x3f\xb8\x06\xd0\x0e\x3f\xd0\x0e\x3f\x80\x47\xd8\x11\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\x88\x05\xd8\x11\x18\x97\x1e\x92\x1e\xa0\x05\xd1\x11\x26\xd4\x11\x26\x88\x06\xd8\x0b\x11\xf0\x00\x01\x09\x19\xd8\x12\x18\x88\x4c\x88\x4c\x88\x4c\xf8\xd8\x0d\x14\x8f\x5e\x8a\x5e\x98\x42\xa0\x04\xd1\x0d\x25\xd4\x0d\x25\x80\x46\xd8\x07\x0d\xf0\x00\x01\x05\x15\xd8\x0e\x14\x88\x0c\x88\x0c\x88\x0c\x88\x0c\x88\x0c\xf0\x03\x01\x05\x15\xf0\x00\x01\x05\x15", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_output = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "output", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -codecs_toplevel_consts_43_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_iterator._ascii.ob_base, - &_Py_ID(encoding), - &_Py_ID(errors), - & const_str_kwargs._ascii.ob_base, - & const_str_encoder._ascii.ob_base, - & const_str_input._ascii.ob_base, - & const_str_output._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(178) -codecs_toplevel_consts_43 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 89, - }, - .co_consts = & codecs_toplevel_consts_43_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_43_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 43, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1038, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_43_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_iterencode._ascii.ob_base, - .co_qualname = & const_str_iterencode._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_43_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x66\x01\x69\x00\x7c\x03\xa4\x01\x8e\x01\x7d\x04\x7c\x00\x44\x00\x5d\x1d\x7d\x05\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x04\x7c\x06\x56\x00\x97\x01\x01\x00\x8c\x1e\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x06\x7c\x06\x56\x00\x97\x01\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[192]; - } -codecs_toplevel_consts_44_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 191, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x20\x20\x20\x20\x44\x65\x63\x6f\x64\x69\x6e\x67\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x44\x65\x63\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x69\x6e\x70\x75\x74\x20\x73\x74\x72\x69\x6e\x67\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x69\x74\x65\x72\x61\x74\x6f\x72\x20\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x65\x72\x72\x6f\x72\x73\x20\x61\x6e\x64\x20\x6b\x77\x61\x72\x67\x73\x20\x61\x72\x65\x20\x70\x61\x73\x73\x65\x64\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x49\x6e\x63\x72\x65\x6d\x65\x6e\x74\x61\x6c\x44\x65\x63\x6f\x64\x65\x72\x0a\x20\x20\x20\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_44_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & codecs_toplevel_consts_44_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_empty), - Py_True, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_44_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_getincrementaldecoder._ascii.ob_base, - &_Py_ID(decode), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[141]; - } -codecs_toplevel_consts_44_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 140, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x12\x00\x0f\x2e\xd5\x0e\x23\xa0\x48\xd1\x0e\x2d\xd4\x0e\x2d\xa8\x66\xd0\x0e\x3f\xd0\x0e\x3f\xb8\x06\xd0\x0e\x3f\xd0\x0e\x3f\x80\x47\xd8\x11\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\x88\x05\xd8\x11\x18\x97\x1e\x92\x1e\xa0\x05\xd1\x11\x26\xd4\x11\x26\x88\x06\xd8\x0b\x11\xf0\x00\x01\x09\x19\xd8\x12\x18\x88\x4c\x88\x4c\x88\x4c\xf8\xd8\x0d\x14\x8f\x5e\x8a\x5e\x98\x43\xa0\x14\xd1\x0d\x26\xd4\x0d\x26\x80\x46\xd8\x07\x0d\xf0\x00\x01\x05\x15\xd8\x0e\x14\x88\x0c\x88\x0c\x88\x0c\x88\x0c\x88\x0c\xf0\x03\x01\x05\x15\xf0\x00\x01\x05\x15", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -codecs_toplevel_consts_44_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_iterator._ascii.ob_base, - &_Py_ID(encoding), - &_Py_ID(errors), - & const_str_kwargs._ascii.ob_base, - & const_str_decoder._ascii.ob_base, - & const_str_input._ascii.ob_base, - & const_str_output._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(178) -codecs_toplevel_consts_44 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 89, - }, - .co_consts = & codecs_toplevel_consts_44_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_44_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 43, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1056, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_44_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_iterdecode._ascii.ob_base, - .co_qualname = & const_str_iterdecode._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_44_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x02\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x66\x01\x69\x00\x7c\x03\xa4\x01\x8e\x01\x7d\x04\x7c\x00\x44\x00\x5d\x1d\x7d\x05\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x04\x7c\x06\x56\x00\x97\x01\x01\x00\x8c\x1e\x7c\x04\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x72\x06\x7c\x06\x56\x00\x97\x01\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[137]; - } -codecs_toplevel_consts_45_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 136, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x6d\x61\x6b\x65\x5f\x69\x64\x65\x6e\x74\x69\x74\x79\x5f\x64\x69\x63\x74\x28\x72\x6e\x67\x29\x20\x2d\x3e\x20\x64\x69\x63\x74\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x61\x20\x64\x69\x63\x74\x69\x6f\x6e\x61\x72\x79\x20\x77\x68\x65\x72\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x6e\x67\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x20\x61\x72\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -codecs_toplevel_consts_45_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "make_identity_dict..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -codecs_toplevel_consts_45_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd0\x0b\x1d\xd0\x0b\x1d\xd0\x0b\x1d\x90\x41\x88\x41\x88\x61\xd0\x0b\x1d\xd0\x0b\x1d\xd0\x0b\x1d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_45_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_i._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(20) -codecs_toplevel_consts_45_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1084, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_45_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_dictcomp), - .co_qualname = & codecs_toplevel_consts_45_consts_1_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_45_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x69\x00\x7c\x00\x5d\x05\x7d\x01\x7c\x01\x7c\x01\x93\x02\x8c\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_45_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_45_consts_0._ascii.ob_base, - & codecs_toplevel_consts_45_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_make_identity_dict = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "make_identity_dict", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -codecs_toplevel_consts_45_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x10\x00\x0c\x1e\xd0\x0b\x1d\x98\x13\xd0\x0b\x1d\xd1\x0b\x1d\xd4\x0b\x1d\xd0\x04\x1d", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_rng = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "rng", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_45_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_rng._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(26) -codecs_toplevel_consts_45 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 13, - }, - .co_consts = & codecs_toplevel_consts_45_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1076, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_45_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_make_identity_dict._ascii.ob_base, - .co_qualname = & const_str_make_identity_dict._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_45_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x84\x00\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[387]; - } -codecs_toplevel_consts_46_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 386, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x6d\x61\x70\x20\x66\x72\x6f\x6d\x20\x61\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x6d\x61\x70\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x61\x20\x74\x61\x72\x67\x65\x74\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x6e\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x20\x6d\x61\x70\x20\x6f\x63\x63\x75\x72\x73\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x74\x69\x6d\x65\x73\x2c\x20\x74\x68\x65\x6e\x20\x74\x68\x61\x74\x20\x74\x61\x72\x67\x65\x74\x20\x69\x73\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x4e\x6f\x6e\x65\x20\x28\x75\x6e\x64\x65\x66\x69\x6e\x65\x64\x20\x6d\x61\x70\x70\x69\x6e\x67\x29\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x61\x75\x73\x69\x6e\x67\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x77\x68\x65\x6e\x20\x65\x6e\x63\x6f\x75\x6e\x74\x65\x72\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x63\x68\x61\x72\x6d\x61\x70\x20\x63\x6f\x64\x65\x63\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x75\x72\x69\x6e\x67\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4f\x6e\x65\x20\x65\x78\x61\x6d\x70\x6c\x65\x20\x77\x68\x65\x72\x65\x20\x74\x68\x69\x73\x20\x68\x61\x70\x70\x65\x6e\x73\x20\x69\x73\x20\x63\x70\x38\x37\x35\x2e\x70\x79\x20\x77\x68\x69\x63\x68\x20\x64\x65\x63\x6f\x64\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x20\x74\x6f\x20\x5c\x75\x30\x30\x31\x61\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_46_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & codecs_toplevel_consts_46_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -codecs_toplevel_consts_46_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(items), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_make_encoding_map = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "make_encoding_map", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[77]; - } -codecs_toplevel_consts_46_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 76, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x1a\x00\x09\x0b\x80\x41\xd8\x0f\x1b\xd7\x0f\x21\xd2\x0f\x21\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x04\x05\x18\xf0\x00\x04\x05\x18\x89\x03\x88\x01\x88\x21\xd8\x0f\x10\x90\x41\x88\x76\x88\x76\xd8\x13\x14\x88\x41\x88\x61\x89\x44\x88\x44\xe0\x13\x17\x88\x41\x88\x61\x89\x44\x88\x44\xd8\x0b\x0c\x80\x48", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_decoding_map = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "decoding_map", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_k = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "k", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_v = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "v", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_46_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_decoding_map._ascii.ob_base, - & const_str_m._ascii.ob_base, - & const_str_k._ascii.ob_base, - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(92) -codecs_toplevel_consts_46 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 46, - }, - .co_consts = & codecs_toplevel_consts_46_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_46_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1086, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & codecs_toplevel_consts_46_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = & const_str_make_encoding_map._ascii.ob_base, - .co_qualname = & const_str_make_encoding_map._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_46_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x69\x00\x7d\x01\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x14\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x03\x7c\x01\x76\x01\x72\x06\x7c\x02\x7c\x01\x7c\x03\x3c\x00\x00\x00\x8c\x0f\x64\x01\x7c\x01\x7c\x03\x3c\x00\x00\x00\x8c\x15\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_xmlcharrefreplace = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "xmlcharrefreplace", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_backslashreplace = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "backslashreplace", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_namereplace = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "namereplace", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -codecs_toplevel_consts_53 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "latin-1", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -codecs_toplevel_consts_55 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_r._ascii.ob_base, - Py_None, - &_Py_ID(strict), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -codecs_toplevel_consts_56 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(strict), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[58]; - }_object; - } -codecs_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 58, - }, - .ob_item = { - & codecs_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & codecs_toplevel_consts_3._object.ob_base.ob_base, - & codecs_toplevel_consts_4._ascii.ob_base, - & codecs_toplevel_consts_5._object.ob_base.ob_base, - & codecs_toplevel_consts_6.ob_base.ob_base, - & codecs_toplevel_consts_7.ob_base.ob_base, - & codecs_toplevel_consts_8.ob_base.ob_base, - & codecs_toplevel_consts_9.ob_base.ob_base, - & codecs_toplevel_consts_10.ob_base.ob_base, - &_Py_ID(little), - & codecs_toplevel_consts_12.ob_base.ob_base, - & const_str_CodecInfo._ascii.ob_base, - & codecs_toplevel_consts_14.ob_base.ob_base, - & const_str_Codec._ascii.ob_base, - & codecs_toplevel_consts_16.ob_base.ob_base, - & const_str_IncrementalEncoder._ascii.ob_base, - & codecs_toplevel_consts_18.ob_base.ob_base, - & const_str_BufferedIncrementalEncoder._ascii.ob_base, - & codecs_toplevel_consts_20.ob_base.ob_base, - & const_str_IncrementalDecoder._ascii.ob_base, - & codecs_toplevel_consts_22.ob_base.ob_base, - & const_str_BufferedIncrementalDecoder._ascii.ob_base, - & codecs_toplevel_consts_24.ob_base.ob_base, - & const_str_StreamWriter._ascii.ob_base, - & codecs_toplevel_consts_26.ob_base.ob_base, - & const_str_StreamReader._ascii.ob_base, - & codecs_toplevel_consts_28.ob_base.ob_base, - & const_str_StreamReaderWriter._ascii.ob_base, - & codecs_toplevel_consts_30.ob_base.ob_base, - & const_str_StreamRecoder._ascii.ob_base, - & const_str_r._ascii.ob_base, - &_Py_ID(strict), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & codecs_toplevel_consts_35.ob_base.ob_base, - & codecs_toplevel_consts_36.ob_base.ob_base, - & codecs_toplevel_consts_37.ob_base.ob_base, - & codecs_toplevel_consts_38.ob_base.ob_base, - & codecs_toplevel_consts_39.ob_base.ob_base, - & codecs_toplevel_consts_40.ob_base.ob_base, - & codecs_toplevel_consts_41.ob_base.ob_base, - & codecs_toplevel_consts_42.ob_base.ob_base, - & codecs_toplevel_consts_43.ob_base.ob_base, - & codecs_toplevel_consts_44.ob_base.ob_base, - & codecs_toplevel_consts_45.ob_base.ob_base, - & codecs_toplevel_consts_46.ob_base.ob_base, - &_Py_ID(ignore), - &_Py_ID(replace), - & const_str_xmlcharrefreplace._ascii.ob_base, - & const_str_backslashreplace._ascii.ob_base, - & const_str_namereplace._ascii.ob_base, - &_Py_ID(__main__), - & codecs_toplevel_consts_53._ascii.ob_base, - &_Py_STR(utf_8), - & codecs_toplevel_consts_55._object.ob_base.ob_base, - & codecs_toplevel_consts_56._object.ob_base.ob_base, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__codecs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_codecs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_why = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "why", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_SystemError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SystemError", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_byteorder = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "byteorder", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str__false = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_false", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_encodings = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "encodings", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[60]; - }_object; - } -codecs_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 60, - }, - .ob_item = { - &_Py_ID(__doc__), - &_Py_ID(builtins), - & const_str_sys._ascii.ob_base, - & const_str__codecs._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_why._ascii.ob_base, - & const_str_SystemError._ascii.ob_base, - &_Py_ID(__all__), - & const_str_BOM_UTF8._ascii.ob_base, - & const_str_BOM_LE._ascii.ob_base, - & const_str_BOM_UTF16_LE._ascii.ob_base, - & const_str_BOM_BE._ascii.ob_base, - & const_str_BOM_UTF16_BE._ascii.ob_base, - & const_str_BOM_UTF32_LE._ascii.ob_base, - & const_str_BOM_UTF32_BE._ascii.ob_base, - & const_str_byteorder._ascii.ob_base, - & const_str_BOM._ascii.ob_base, - & const_str_BOM_UTF16._ascii.ob_base, - & const_str_BOM_UTF32._ascii.ob_base, - & const_str_BOM32_LE._ascii.ob_base, - & const_str_BOM32_BE._ascii.ob_base, - & const_str_BOM64_LE._ascii.ob_base, - & const_str_BOM64_BE._ascii.ob_base, - & const_str_tuple._ascii.ob_base, - & const_str_CodecInfo._ascii.ob_base, - & const_str_Codec._ascii.ob_base, - & const_str_object._ascii.ob_base, - & const_str_IncrementalEncoder._ascii.ob_base, - & const_str_BufferedIncrementalEncoder._ascii.ob_base, - & const_str_IncrementalDecoder._ascii.ob_base, - & const_str_BufferedIncrementalDecoder._ascii.ob_base, - & const_str_StreamWriter._ascii.ob_base, - & const_str_StreamReader._ascii.ob_base, - & const_str_StreamReaderWriter._ascii.ob_base, - & const_str_StreamRecoder._ascii.ob_base, - &_Py_ID(open), - & const_str_EncodedFile._ascii.ob_base, - & const_str_getencoder._ascii.ob_base, - & const_str_getdecoder._ascii.ob_base, - & const_str_getincrementalencoder._ascii.ob_base, - & const_str_getincrementaldecoder._ascii.ob_base, - & const_str_getreader._ascii.ob_base, - & const_str_getwriter._ascii.ob_base, - & const_str_iterencode._ascii.ob_base, - & const_str_iterdecode._ascii.ob_base, - & const_str_make_identity_dict._ascii.ob_base, - & const_str_make_encoding_map._ascii.ob_base, - & const_str_lookup_error._ascii.ob_base, - & const_str_strict_errors._ascii.ob_base, - & const_str_ignore_errors._ascii.ob_base, - & const_str_replace_errors._ascii.ob_base, - & const_str_xmlcharrefreplace_errors._ascii.ob_base, - & const_str_backslashreplace_errors._ascii.ob_base, - & const_str_namereplace_errors._ascii.ob_base, - & const_str_LookupError._ascii.ob_base, - & const_str__false._ascii.ob_base, - & const_str_encodings._ascii.ob_base, - &_Py_ID(__name__), - &_Py_ID(stdout), - &_Py_ID(stdin), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[1221]; - } -codecs_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 1220, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x07\x01\x04\xf0\x00\x07\x01\x04\xf0\x12\x00\x01\x10\x80\x0f\x80\x0f\x80\x0f\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xf0\x08\x03\x01\x45\x01\xd8\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19\xf8\xd8\x07\x12\xf0\x00\x01\x01\x45\x01\xf0\x00\x01\x01\x45\x01\xf0\x00\x01\x01\x45\x01\xd8\x0a\x15\x88\x2b\xd0\x16\x3d\xc0\x03\xd1\x16\x43\xd1\x0a\x44\xd4\x0a\x44\xd0\x04\x44\xf8\xf8\xf8\xf8\xf0\x03\x01\x01\x45\x01\xf8\xf8\xf8\xf0\x06\x0d\x0b\x2d\xf0\x00\x0d\x0b\x2d\xf0\x00\x0d\x0b\x2d\x80\x07\xf0\x30\x00\x0c\x1b\x80\x08\xf0\x06\x00\x19\x24\xd0\x00\x23\x80\x06\x88\x1c\xf0\x06\x00\x19\x24\xd0\x00\x23\x80\x06\x88\x1c\xf0\x06\x00\x10\x23\x80\x0c\xf0\x06\x00\x10\x23\x80\x0c\xe0\x03\x06\x84\x3d\x90\x48\xd2\x03\x1c\xd0\x03\x1c\xf0\x06\x00\x17\x23\xd0\x04\x22\x80\x43\x88\x29\xf0\x06\x00\x11\x1d\x80\x49\x80\x49\xf0\x0a\x00\x17\x23\xd0\x04\x22\x80\x43\x88\x29\xf0\x06\x00\x11\x1d\x80\x49\xf0\x06\x00\x0c\x18\x80\x08\xd8\x0b\x17\x80\x08\xd8\x0b\x17\x80\x08\xd8\x0b\x17\x80\x08\xf0\x0a\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\x90\x05\xf1\x00\x1d\x01\x26\xf4\x00\x1d\x01\x26\xf0\x00\x1d\x01\x26\xf0\x3e\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf1\x00\x40\x01\x01\x22\xf4\x00\x40\x01\x01\x22\xf0\x00\x40\x01\x01\x22\xf0\x44\x02\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\x98\x16\xf1\x00\x26\x01\x0c\xf4\x00\x26\x01\x0c\xf0\x00\x26\x01\x0c\xf0\x50\x01\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xd0\x21\x33\xf1\x00\x20\x01\x22\xf4\x00\x20\x01\x22\xf0\x00\x20\x01\x22\xf0\x44\x01\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\x98\x16\xf1\x00\x2f\x01\x0c\xf4\x00\x2f\x01\x0c\xf0\x00\x2f\x01\x0c\xf0\x62\x01\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xd0\x21\x33\xf1\x00\x22\x01\x1f\xf4\x00\x22\x01\x1f\xf0\x00\x22\x01\x1f\xf0\x56\x01\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\x90\x35\xf1\x00\x48\x01\x01\x48\x01\xf4\x00\x48\x01\x01\x48\x01\xf0\x00\x48\x01\x01\x48\x01\xf0\x58\x02\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\x90\x35\xf1\x00\x78\x03\x01\x48\x01\xf4\x00\x78\x03\x01\x48\x01\xf0\x00\x78\x03\x01\x48\x01\xf0\x78\x07\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf1\x00\x56\x01\x01\x48\x01\xf4\x00\x56\x01\x01\x48\x01\xf0\x00\x56\x01\x01\x48\x01\xf0\x74\x02\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf1\x00\x73\x01\x01\x48\x01\xf4\x00\x73\x01\x01\x48\x01\xf0\x00\x73\x01\x01\x48\x01\xf0\x6e\x03\x2f\x01\x0e\xf0\x00\x2f\x01\x0e\xf0\x00\x2f\x01\x0e\xf0\x00\x2f\x01\x0e\xf0\x62\x01\x22\x01\x0e\xf0\x00\x22\x01\x0e\xf0\x00\x22\x01\x0e\xf0\x00\x22\x01\x0e\xf0\x4c\x01\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x14\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x00\x08\x01\x23\xf0\x14\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x1c\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x00\x0c\x01\x13\xf0\x1c\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x14\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x00\x08\x01\x29\xf0\x14\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x24\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x28\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x14\x13\x01\x0d\xf0\x00\x13\x01\x0d\xf0\x00\x13\x01\x0d\xf0\x2e\x0e\x01\x1e\xd8\x14\x20\x90\x4c\xa0\x18\xd1\x14\x2a\xd4\x14\x2a\x80\x4d\xd8\x14\x20\x90\x4c\xa0\x18\xd1\x14\x2a\xd4\x14\x2a\x80\x4d\xd8\x15\x21\x90\x5c\xa0\x29\xd1\x15\x2c\xd4\x15\x2c\x80\x4e\xd8\x1f\x2b\x98\x7c\xd0\x2c\x3f\xd1\x1f\x40\xd4\x1f\x40\xd0\x04\x1c\xd8\x1e\x2a\x98\x6c\xd0\x2b\x3d\xd1\x1e\x3e\xd4\x1e\x3e\xd0\x04\x1b\xd8\x19\x25\x98\x1c\xa0\x6d\xd1\x19\x34\xd4\x19\x34\xd0\x04\x16\xd0\x04\x16\xf8\xd8\x07\x12\xf0\x00\x07\x01\x1e\xf0\x00\x07\x01\x1e\xf0\x00\x07\x01\x1e\xe0\x14\x18\x80\x4d\xd8\x14\x18\x80\x4d\xd8\x15\x19\x80\x4e\xd8\x1f\x23\xd0\x04\x1c\xd8\x1e\x22\xd0\x04\x1b\xd8\x19\x1d\xd0\x04\x16\xd0\x04\x16\xd0\x04\x16\xf0\x0f\x07\x01\x1e\xf8\xf8\xf8\xf0\x16\x00\x0a\x0b\x80\x06\xd8\x03\x09\xf0\x00\x01\x01\x15\xd8\x04\x14\xd0\x04\x14\xd0\x04\x14\xd0\x04\x14\xf0\x08\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xf0\x06\x00\x12\x1d\x90\x1b\x98\x53\x9c\x5a\xa8\x19\xb0\x47\xd1\x11\x3c\xd4\x11\x3c\x80\x43\x84\x4a\xf0\x06\x00\x11\x1c\x90\x0b\x98\x43\x9c\x49\xa0\x77\xb0\x09\xd1\x10\x3a\xd4\x10\x3a\x80\x43\x84\x49\x80\x49\x80\x49\xf0\x0d\x00\x04\x1a\xd0\x03\x19", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -codecs_toplevel_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x8c\x04\x11\x00\x91\x05\x29\x03\x96\x0e\x24\x03\xa4\x05\x29\x03\xc4\x10\x41\x02\x45\x13\x00\xc5\x13\x11\x45\x27\x03\xc5\x26\x01\x45\x27\x03", -}; -static - struct _PyCode_DEF(852) -codecs_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 426, - }, - .co_consts = & codecs_toplevel_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = & codecs_toplevel_exceptiontable.ob_base.ob_base, - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & codecs_toplevel_consts_12_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & codecs_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x09\x00\x64\x01\x64\x03\x6c\x03\x54\x00\x6e\x1b\x23\x00\x65\x04\x24\x00\x72\x13\x5a\x05\x02\x00\x65\x06\x64\x04\x65\x05\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x02\x5a\x05\x5b\x05\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x67\x00\x64\x05\xa2\x01\x5a\x07\x64\x06\x5a\x08\x64\x07\x78\x01\x5a\x09\x5a\x0a\x64\x08\x78\x01\x5a\x0b\x5a\x0c\x64\x09\x5a\x0d\x64\x0a\x5a\x0e\x65\x02\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x6b\x02\x00\x00\x00\x00\x72\x07\x65\x0a\x78\x01\x5a\x10\x5a\x11\x65\x0d\x5a\x12\x6e\x06\x65\x0c\x78\x01\x5a\x10\x5a\x11\x65\x0e\x5a\x12\x65\x0a\x5a\x13\x65\x0c\x5a\x14\x65\x0d\x5a\x15\x65\x0e\x5a\x16\x02\x00\x47\x00\x64\x0c\x84\x00\x64\x0d\x65\x17\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x18\x02\x00\x47\x00\x64\x0e\x84\x00\x64\x0f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x19\x02\x00\x47\x00\x64\x10\x84\x00\x64\x11\x65\x1a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1b\x02\x00\x47\x00\x64\x12\x84\x00\x64\x13\x65\x1b\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1c\x02\x00\x47\x00\x64\x14\x84\x00\x64\x15\x65\x1a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1d\x02\x00\x47\x00\x64\x16\x84\x00\x64\x17\x65\x1d\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1e\x02\x00\x47\x00\x64\x18\x84\x00\x64\x19\x65\x19\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1f\x02\x00\x47\x00\x64\x1a\x84\x00\x64\x1b\x65\x19\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x20\x02\x00\x47\x00\x64\x1c\x84\x00\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x02\x00\x47\x00\x64\x1e\x84\x00\x64\x1f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x22\x64\x37\x64\x23\x84\x01\x5a\x23\x64\x38\x64\x24\x84\x01\x5a\x24\x64\x25\x84\x00\x5a\x25\x64\x26\x84\x00\x5a\x26\x64\x27\x84\x00\x5a\x27\x64\x28\x84\x00\x5a\x28\x64\x29\x84\x00\x5a\x29\x64\x2a\x84\x00\x5a\x2a\x64\x39\x64\x2b\x84\x01\x5a\x2b\x64\x39\x64\x2c\x84\x01\x5a\x2c\x64\x2d\x84\x00\x5a\x2d\x64\x2e\x84\x00\x5a\x2e\x09\x00\x02\x00\x65\x2f\x64\x21\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x30\x02\x00\x65\x2f\x64\x2f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x31\x02\x00\x65\x2f\x64\x30\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x32\x02\x00\x65\x2f\x64\x31\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x33\x02\x00\x65\x2f\x64\x32\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x34\x02\x00\x65\x2f\x64\x33\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x35\x6e\x17\x23\x00\x65\x36\x24\x00\x72\x0f\x01\x00\x64\x02\x5a\x30\x64\x02\x5a\x31\x64\x02\x5a\x32\x64\x02\x5a\x33\x64\x02\x5a\x34\x64\x02\x5a\x35\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x5a\x37\x65\x37\x72\x04\x64\x01\x64\x02\x6c\x38\x5a\x38\x65\x39\x64\x34\x6b\x02\x00\x00\x00\x00\x72\x30\x02\x00\x65\x24\x65\x02\x6a\x3a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x35\x64\x36\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x65\x02\x5f\x3a\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x65\x24\x65\x02\x6a\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x64\x36\x64\x35\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x65\x02\x5f\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void codecs_do_patchups(void) { -} - -PyObject * -_Py_get_codecs_toplevel(void) -{ - codecs_do_patchups(); - return Py_NewRef((PyObject *) &codecs_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[1474]; - } -io_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1473, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x54\x68\x65\x20\x69\x6f\x20\x6d\x6f\x64\x75\x6c\x65\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x73\x20\x74\x6f\x20\x73\x74\x72\x65\x61\x6d\x20\x68\x61\x6e\x64\x6c\x69\x6e\x67\x2e\x20\x54\x68\x65\x0a\x62\x75\x69\x6c\x74\x69\x6e\x20\x6f\x70\x65\x6e\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x41\x74\x20\x74\x68\x65\x20\x74\x6f\x70\x20\x6f\x66\x20\x74\x68\x65\x20\x49\x2f\x4f\x20\x68\x69\x65\x72\x61\x72\x63\x68\x79\x20\x69\x73\x20\x74\x68\x65\x20\x61\x62\x73\x74\x72\x61\x63\x74\x20\x62\x61\x73\x65\x20\x63\x6c\x61\x73\x73\x20\x49\x4f\x42\x61\x73\x65\x2e\x20\x49\x74\x0a\x64\x65\x66\x69\x6e\x65\x73\x20\x74\x68\x65\x20\x62\x61\x73\x69\x63\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x61\x20\x73\x74\x72\x65\x61\x6d\x2e\x20\x4e\x6f\x74\x65\x2c\x20\x68\x6f\x77\x65\x76\x65\x72\x2c\x20\x74\x68\x61\x74\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x6e\x6f\x0a\x73\x65\x70\x61\x72\x61\x74\x69\x6f\x6e\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x72\x65\x61\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x77\x72\x69\x74\x69\x6e\x67\x20\x74\x6f\x20\x73\x74\x72\x65\x61\x6d\x73\x3b\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x61\x72\x65\x0a\x61\x6c\x6c\x6f\x77\x65\x64\x20\x74\x6f\x20\x72\x61\x69\x73\x65\x20\x61\x6e\x20\x4f\x53\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x74\x68\x65\x79\x20\x64\x6f\x20\x6e\x6f\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x61\x20\x67\x69\x76\x65\x6e\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x45\x78\x74\x65\x6e\x64\x69\x6e\x67\x20\x49\x4f\x42\x61\x73\x65\x20\x69\x73\x20\x52\x61\x77\x49\x4f\x42\x61\x73\x65\x20\x77\x68\x69\x63\x68\x20\x64\x65\x61\x6c\x73\x20\x73\x69\x6d\x70\x6c\x79\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x72\x65\x61\x64\x69\x6e\x67\x20\x61\x6e\x64\x0a\x77\x72\x69\x74\x69\x6e\x67\x20\x6f\x66\x20\x72\x61\x77\x20\x62\x79\x74\x65\x73\x20\x74\x6f\x20\x61\x20\x73\x74\x72\x65\x61\x6d\x2e\x20\x46\x69\x6c\x65\x49\x4f\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x52\x61\x77\x49\x4f\x42\x61\x73\x65\x20\x74\x6f\x20\x70\x72\x6f\x76\x69\x64\x65\x0a\x61\x6e\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x4f\x53\x20\x66\x69\x6c\x65\x73\x2e\x0a\x0a\x42\x75\x66\x66\x65\x72\x65\x64\x49\x4f\x42\x61\x73\x65\x20\x64\x65\x61\x6c\x73\x20\x77\x69\x74\x68\x20\x62\x75\x66\x66\x65\x72\x69\x6e\x67\x20\x6f\x6e\x20\x61\x20\x72\x61\x77\x20\x62\x79\x74\x65\x20\x73\x74\x72\x65\x61\x6d\x20\x28\x52\x61\x77\x49\x4f\x42\x61\x73\x65\x29\x2e\x20\x49\x74\x73\x0a\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x2c\x20\x42\x75\x66\x66\x65\x72\x65\x64\x57\x72\x69\x74\x65\x72\x2c\x20\x42\x75\x66\x66\x65\x72\x65\x64\x52\x65\x61\x64\x65\x72\x2c\x20\x61\x6e\x64\x20\x42\x75\x66\x66\x65\x72\x65\x64\x52\x57\x50\x61\x69\x72\x20\x62\x75\x66\x66\x65\x72\x0a\x73\x74\x72\x65\x61\x6d\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x72\x65\x61\x64\x61\x62\x6c\x65\x2c\x20\x77\x72\x69\x74\x61\x62\x6c\x65\x2c\x20\x61\x6e\x64\x20\x62\x6f\x74\x68\x20\x72\x65\x73\x70\x65\x63\x74\x69\x76\x65\x6c\x79\x2e\x0a\x42\x75\x66\x66\x65\x72\x65\x64\x52\x61\x6e\x64\x6f\x6d\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x20\x62\x75\x66\x66\x65\x72\x65\x64\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x72\x61\x6e\x64\x6f\x6d\x20\x61\x63\x63\x65\x73\x73\x0a\x73\x74\x72\x65\x61\x6d\x73\x2e\x20\x42\x79\x74\x65\x73\x49\x4f\x20\x69\x73\x20\x61\x20\x73\x69\x6d\x70\x6c\x65\x20\x73\x74\x72\x65\x61\x6d\x20\x6f\x66\x20\x69\x6e\x2d\x6d\x65\x6d\x6f\x72\x79\x20\x62\x79\x74\x65\x73\x2e\x0a\x0a\x41\x6e\x6f\x74\x68\x65\x72\x20\x49\x4f\x42\x61\x73\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x2c\x20\x54\x65\x78\x74\x49\x4f\x42\x61\x73\x65\x2c\x20\x64\x65\x61\x6c\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x61\x6e\x64\x20\x64\x65\x63\x6f\x64\x69\x6e\x67\x0a\x6f\x66\x20\x73\x74\x72\x65\x61\x6d\x73\x20\x69\x6e\x74\x6f\x20\x74\x65\x78\x74\x2e\x20\x54\x65\x78\x74\x49\x4f\x57\x72\x61\x70\x70\x65\x72\x2c\x20\x77\x68\x69\x63\x68\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x69\x74\x2c\x20\x69\x73\x20\x61\x20\x62\x75\x66\x66\x65\x72\x65\x64\x20\x74\x65\x78\x74\x0a\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x74\x6f\x20\x61\x20\x62\x75\x66\x66\x65\x72\x65\x64\x20\x72\x61\x77\x20\x73\x74\x72\x65\x61\x6d\x20\x28\x60\x42\x75\x66\x66\x65\x72\x65\x64\x49\x4f\x42\x61\x73\x65\x60\x29\x2e\x20\x46\x69\x6e\x61\x6c\x6c\x79\x2c\x20\x53\x74\x72\x69\x6e\x67\x49\x4f\x0a\x69\x73\x20\x61\x6e\x20\x69\x6e\x2d\x6d\x65\x6d\x6f\x72\x79\x20\x73\x74\x72\x65\x61\x6d\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x2e\x0a\x0a\x41\x72\x67\x75\x6d\x65\x6e\x74\x20\x6e\x61\x6d\x65\x73\x20\x61\x72\x65\x20\x6e\x6f\x74\x20\x70\x61\x72\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x2c\x20\x61\x6e\x64\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x0a\x6f\x66\x20\x6f\x70\x65\x6e\x28\x29\x20\x61\x72\x65\x20\x69\x6e\x74\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x62\x65\x20\x75\x73\x65\x64\x20\x61\x73\x20\x6b\x65\x79\x77\x6f\x72\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x2e\x0a\x0a\x64\x61\x74\x61\x3a\x0a\x0a\x44\x45\x46\x41\x55\x4c\x54\x5f\x42\x55\x46\x46\x45\x52\x5f\x53\x49\x5a\x45\x0a\x0a\x20\x20\x20\x41\x6e\x20\x69\x6e\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x62\x75\x66\x66\x65\x72\x20\x73\x69\x7a\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x27\x73\x20\x62\x75\x66\x66\x65\x72\x65\x64\x0a\x20\x20\x20\x49\x2f\x4f\x20\x63\x6c\x61\x73\x73\x65\x73\x2e\x20\x6f\x70\x65\x6e\x28\x29\x20\x75\x73\x65\x73\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x27\x73\x20\x62\x6c\x6b\x73\x69\x7a\x65\x20\x28\x61\x73\x20\x6f\x62\x74\x61\x69\x6e\x65\x64\x20\x62\x79\x20\x6f\x73\x2e\x73\x74\x61\x74\x29\x20\x69\x66\x0a\x20\x20\x20\x70\x6f\x73\x73\x69\x62\x6c\x65\x2e\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[236]; - } -io_toplevel_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 235, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Guido van Rossum , Mike Verdone , Mark Russell , Antoine Pitrou , Amaury Forgeot d'Arc , Benjamin Peterson ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_BlockingIOError = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BlockingIOError", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_IOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "IOBase", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_RawIOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "RawIOBase", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_StringIO = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StringIO", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_BufferedIOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedIOBase", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_BufferedReader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedReader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_BufferedWriter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedWriter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_BufferedRWPair = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedRWPair", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_BufferedRandom = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BufferedRandom", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_TextIOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "TextIOBase", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str_UnsupportedOperation = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UnsupportedOperation", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_SEEK_SET = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SEEK_SET", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_SEEK_CUR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SEEK_CUR", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_SEEK_END = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SEEK_END", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str_DEFAULT_BUFFER_SIZE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "DEFAULT_BUFFER_SIZE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_text_encoding = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "text_encoding", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[22]; - }_object; - } -io_toplevel_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 22, - }, - .ob_item = { - & const_str_BlockingIOError._ascii.ob_base, - &_Py_ID(open), - & const_str_open_code._ascii.ob_base, - & const_str_IOBase._ascii.ob_base, - & const_str_RawIOBase._ascii.ob_base, - & const_str_FileIO._ascii.ob_base, - & const_str_BytesIO._ascii.ob_base, - & const_str_StringIO._ascii.ob_base, - & const_str_BufferedIOBase._ascii.ob_base, - & const_str_BufferedReader._ascii.ob_base, - & const_str_BufferedWriter._ascii.ob_base, - & const_str_BufferedRWPair._ascii.ob_base, - & const_str_BufferedRandom._ascii.ob_base, - & const_str_TextIOBase._ascii.ob_base, - &_Py_ID(TextIOWrapper), - & const_str_UnsupportedOperation._ascii.ob_base, - & const_str_SEEK_SET._ascii.ob_base, - & const_str_SEEK_CUR._ascii.ob_base, - & const_str_SEEK_END._ascii.ob_base, - & const_str_DEFAULT_BUFFER_SIZE._ascii.ob_base, - & const_str_text_encoding._ascii.ob_base, - & const_str_IncrementalNewlineDecoder._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -io_toplevel_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & const_str_DEFAULT_BUFFER_SIZE._ascii.ob_base, - & const_str_BlockingIOError._ascii.ob_base, - & const_str_UnsupportedOperation._ascii.ob_base, - &_Py_ID(open), - & const_str_open_code._ascii.ob_base, - & const_str_FileIO._ascii.ob_base, - & const_str_BytesIO._ascii.ob_base, - & const_str_StringIO._ascii.ob_base, - & const_str_BufferedReader._ascii.ob_base, - & const_str_BufferedWriter._ascii.ob_base, - & const_str_BufferedRWPair._ascii.ob_base, - & const_str_BufferedRandom._ascii.ob_base, - & const_str_IncrementalNewlineDecoder._ascii.ob_base, - & const_str_text_encoding._ascii.ob_base, - &_Py_ID(TextIOWrapper), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_OpenWrapper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "OpenWrapper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[44]; - } -io_toplevel_consts_6_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 43, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "OpenWrapper is deprecated, use open instead", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -io_toplevel_consts_6_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -io_toplevel_consts_6_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " has no attribute ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -io_toplevel_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - Py_None, - & const_str_OpenWrapper._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & io_toplevel_consts_6_consts_3._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, - & io_toplevel_consts_6_consts_6._ascii.ob_base, - & io_toplevel_consts_6_consts_7._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -io_toplevel_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(warnings), - & const_str_warn._ascii.ob_base, - & const_str_DeprecationWarning._ascii.ob_base, - &_Py_ID(open), - & const_str_OpenWrapper._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -io_toplevel_consts_6_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[104]; - } -io_toplevel_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 103, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x07\x0b\x88\x7d\xd2\x07\x1c\xd0\x07\x1c\xf0\x0c\x00\x09\x18\x88\x0f\x88\x0f\x88\x0f\xd8\x08\x10\x8f\x0d\x8a\x0d\xd0\x16\x43\xdd\x16\x28\xb0\x51\xf0\x03\x00\x09\x16\xf1\x00\x01\x09\x38\xf4\x00\x01\x09\x38\xf0\x00\x01\x09\x38\xf5\x06\x00\x17\x1b\x88\x0b\xdd\x0f\x1a\xd0\x08\x1a\xdd\x0a\x18\xd0\x19\x49\xa5\x38\xd0\x19\x49\xd0\x19\x49\xc0\x14\xd0\x19\x49\xd0\x19\x49\xd1\x0a\x4a\xd4\x0a\x4a\xd0\x04\x4a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -io_toplevel_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(name), - &_Py_ID(warnings), - }, - }, -}; -static - struct _PyCode_DEF(160) -io_toplevel_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 80, - }, - .co_consts = & io_toplevel_consts_6_consts._object.ob_base.ob_base, - .co_names = & io_toplevel_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 61, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & io_toplevel_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, - .co_name = &_Py_ID(__getattr__), - .co_qualname = &_Py_ID(__getattr__), - .co_linetable = & io_toplevel_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x2f\x64\x02\x64\x00\x6c\x00\x7d\x01\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xac\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x04\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x64\x07\x7c\x00\x9b\x02\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_io = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "io", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -io_toplevel_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_IOBase._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__IOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_IOBase", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -io_toplevel_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - & const_str__io._ascii.ob_base, - & const_str__IOBase._ascii.ob_base, - &_Py_ID(__doc__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -io_toplevel_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\x8c\x6b\xd4\x0e\x21\x80\x47\x80\x47\x80\x47", -}; -static - struct _PyCode_DEF(38) -io_toplevel_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & io_toplevel_consts_10_consts._object.ob_base.ob_base, - .co_names = & io_toplevel_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 88, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, - .co_name = & const_str_IOBase._ascii.ob_base, - .co_qualname = & const_str_IOBase._ascii.ob_base, - .co_linetable = & io_toplevel_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -io_toplevel_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_RawIOBase._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str__RawIOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_RawIOBase", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -io_toplevel_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - & const_str__io._ascii.ob_base, - & const_str__RawIOBase._ascii.ob_base, - &_Py_ID(__doc__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -io_toplevel_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\x8c\x6e\xd4\x0e\x24\x80\x47\x80\x47\x80\x47", -}; -static - struct _PyCode_DEF(38) -io_toplevel_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & io_toplevel_consts_13_consts._object.ob_base.ob_base, - .co_names = & io_toplevel_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 91, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, - .co_name = & const_str_RawIOBase._ascii.ob_base, - .co_qualname = & const_str_RawIOBase._ascii.ob_base, - .co_linetable = & io_toplevel_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -io_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_BufferedIOBase._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__BufferedIOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_BufferedIOBase", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -io_toplevel_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - & const_str__io._ascii.ob_base, - & const_str__BufferedIOBase._ascii.ob_base, - &_Py_ID(__doc__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -io_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\xd4\x0e\x21\xd4\x0e\x29\x80\x47\x80\x47\x80\x47", -}; -static - struct _PyCode_DEF(38) -io_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & io_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = & io_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 94, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, - .co_name = & const_str_BufferedIOBase._ascii.ob_base, - .co_qualname = & const_str_BufferedIOBase._ascii.ob_base, - .co_linetable = & io_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -io_toplevel_consts_17_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_TextIOBase._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str__TextIOBase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_TextIOBase", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -io_toplevel_consts_17_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - & const_str__io._ascii.ob_base, - & const_str__TextIOBase._ascii.ob_base, - &_Py_ID(__doc__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -io_toplevel_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x0e\x11\x8c\x6f\xd4\x0e\x25\x80\x47\x80\x47\x80\x47", -}; -static - struct _PyCode_DEF(38) -io_toplevel_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & io_toplevel_consts_17_consts._object.ob_base.ob_base, - .co_names = & io_toplevel_consts_17_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 97, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, - .co_name = & const_str_TextIOBase._ascii.ob_base, - .co_qualname = & const_str_TextIOBase._ascii.ob_base, - .co_linetable = & io_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x65\x03\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__WindowsConsoleIO = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_WindowsConsoleIO", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -io_toplevel_consts_19 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__WindowsConsoleIO._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[20]; - }_object; - } -io_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 20, - }, - .ob_item = { - & io_toplevel_consts_0._ascii.ob_base, - & io_toplevel_consts_1._ascii.ob_base, - & io_toplevel_consts_2._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & io_toplevel_consts_5._object.ob_base.ob_base, - & io_toplevel_consts_6.ob_base.ob_base, - & const_str_io._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & io_toplevel_consts_10.ob_base.ob_base, - & const_str_IOBase._ascii.ob_base, - & abc_toplevel_consts_17._object.ob_base.ob_base, - & io_toplevel_consts_13.ob_base.ob_base, - & const_str_RawIOBase._ascii.ob_base, - & io_toplevel_consts_15.ob_base.ob_base, - & const_str_BufferedIOBase._ascii.ob_base, - & io_toplevel_consts_17.ob_base.ob_base, - & const_str_TextIOBase._ascii.ob_base, - & io_toplevel_consts_19._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str___author__ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__author__", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_klass = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "klass", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[38]; - }_object; - } -io_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 38, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str___author__._ascii.ob_base, - &_Py_ID(__all__), - & const_str__io._ascii.ob_base, - & const_str_abc._ascii.ob_base, - & const_str_DEFAULT_BUFFER_SIZE._ascii.ob_base, - & const_str_BlockingIOError._ascii.ob_base, - & const_str_UnsupportedOperation._ascii.ob_base, - &_Py_ID(open), - & const_str_open_code._ascii.ob_base, - & const_str_FileIO._ascii.ob_base, - & const_str_BytesIO._ascii.ob_base, - & const_str_StringIO._ascii.ob_base, - & const_str_BufferedReader._ascii.ob_base, - & const_str_BufferedWriter._ascii.ob_base, - & const_str_BufferedRWPair._ascii.ob_base, - & const_str_BufferedRandom._ascii.ob_base, - & const_str_IncrementalNewlineDecoder._ascii.ob_base, - & const_str_text_encoding._ascii.ob_base, - &_Py_ID(TextIOWrapper), - &_Py_ID(__getattr__), - &_Py_ID(__module__), - & const_str_SEEK_SET._ascii.ob_base, - & const_str_SEEK_CUR._ascii.ob_base, - & const_str_SEEK_END._ascii.ob_base, - & const_str__IOBase._ascii.ob_base, - & const_str_ABCMeta._ascii.ob_base, - & const_str_IOBase._ascii.ob_base, - & const_str__RawIOBase._ascii.ob_base, - & const_str_RawIOBase._ascii.ob_base, - & const_str__BufferedIOBase._ascii.ob_base, - & const_str_BufferedIOBase._ascii.ob_base, - & const_str__TextIOBase._ascii.ob_base, - & const_str_TextIOBase._ascii.ob_base, - & const_str_register._ascii.ob_base, - & const_str_klass._ascii.ob_base, - & const_str__WindowsConsoleIO._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[714]; - } -io_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 713, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x21\x01\x04\xf0\x00\x21\x01\x04\xf0\x48\x01\x05\x0f\x38\x80\x0a\xf0\x0e\x05\x0b\x50\x01\xf0\x00\x05\x0b\x50\x01\xf0\x00\x05\x0b\x50\x01\x80\x07\xf0\x10\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xf0\x04\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x00\x03\x01\x4a\x01\xf0\x0c\x0d\x01\x4b\x01\xf0\x00\x0d\x01\x4b\x01\xf0\x00\x0d\x01\x4b\x01\xf0\x22\x00\x23\x27\xd0\x00\x14\xd4\x00\x1f\xf0\x06\x00\x0c\x0d\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xf0\x0a\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x00\x01\x01\x22\x88\x53\x8c\x5b\xa0\x43\xa4\x4b\xf0\x00\x01\x01\x22\xf1\x00\x01\x01\x22\xf4\x00\x01\x01\x22\xf0\x00\x01\x01\x22\xf0\x06\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x00\x01\x01\x25\x90\x03\x94\x0e\xa0\x06\xf1\x00\x01\x01\x25\xf4\x00\x01\x01\x25\xf0\x00\x01\x01\x25\xf0\x06\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\x90\x53\xd4\x15\x28\xa8\x26\xf1\x00\x01\x01\x2a\xf4\x00\x01\x01\x2a\xf0\x00\x01\x01\x2a\xf0\x06\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x00\x01\x01\x26\x90\x13\x94\x1f\xa0\x26\xf1\x00\x01\x01\x26\xf4\x00\x01\x01\x26\xf0\x00\x01\x01\x26\xf0\x06\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x36\xd1\x00\x1a\xd4\x00\x1a\xd0\x00\x1a\xe0\x0e\x15\x90\x7e\xa0\x7e\xb0\x7e\xd8\x0e\x1c\xf0\x03\x01\x0e\x1e\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\x80\x45\xe0\x04\x12\xd7\x04\x1b\xd2\x04\x1b\x98\x45\xd1\x04\x22\xd4\x04\x22\xd0\x04\x22\xd0\x04\x22\xe0\x0e\x16\x98\x0d\xd0\x0d\x26\xf0\x00\x01\x01\x1f\xf0\x00\x01\x01\x1f\x80\x45\xd8\x04\x0e\xd7\x04\x17\xd2\x04\x17\x98\x05\xd1\x04\x1e\xd4\x04\x1e\xd0\x04\x1e\xd0\x04\x1e\xd8\x04\x09\xf0\x04\x05\x01\x2a\xd8\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xf0\x08\x00\x05\x0e\xd7\x04\x16\xd2\x04\x16\xd0\x17\x28\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xd0\x04\x29\xd0\x04\x29\xf8\xf0\x07\x00\x08\x13\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xd8\x04\x08\x80\x44\x80\x44\xf0\x03\x01\x01\x09\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -io_toplevel_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc3\x2b\x06\x44\x08\x00\xc4\x08\x05\x44\x11\x03\xc4\x10\x01\x44\x11\x03", -}; -static - struct _PyCode_DEF(552) -io_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 276, - }, - .co_consts = & io_toplevel_consts._object.ob_base.ob_base, - .co_names = & io_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = & io_toplevel_exceptiontable.ob_base.ob_base, - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & io_toplevel_consts_6_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & io_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x67\x00\x64\x02\xa2\x01\x5a\x02\x64\x03\x64\x04\x6c\x03\x5a\x03\x64\x03\x64\x04\x6c\x04\x5a\x04\x64\x03\x64\x05\x6c\x03\x6d\x05\x5a\x05\x6d\x06\x5a\x06\x6d\x07\x5a\x07\x6d\x08\x5a\x08\x6d\x09\x5a\x09\x6d\x0a\x5a\x0a\x6d\x0b\x5a\x0b\x6d\x0c\x5a\x0c\x6d\x0d\x5a\x0d\x6d\x0e\x5a\x0e\x6d\x0f\x5a\x0f\x6d\x10\x5a\x10\x6d\x11\x5a\x11\x6d\x12\x5a\x12\x6d\x13\x5a\x13\x01\x00\x64\x06\x84\x00\x5a\x14\x64\x07\x65\x07\x5f\x15\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x5a\x16\x64\x08\x5a\x17\x64\x09\x5a\x18\x02\x00\x47\x00\x64\x0a\x84\x00\x64\x0b\x65\x03\x6a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x65\x04\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\xac\x0c\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1b\x02\x00\x47\x00\x64\x0d\x84\x00\x64\x0e\x65\x03\x6a\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1d\x02\x00\x47\x00\x64\x0f\x84\x00\x64\x10\x65\x03\x6a\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1f\x02\x00\x47\x00\x64\x11\x84\x00\x64\x12\x65\x03\x6a\x20\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x65\x1d\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x0b\x65\x0d\x65\x0e\x65\x10\x65\x0f\x66\x05\x44\x00\x5d\x17\x5a\x23\x65\x1f\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x23\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x65\x0c\x65\x13\x66\x02\x44\x00\x5d\x17\x5a\x23\x65\x21\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x23\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x5b\x23\x09\x00\x64\x03\x64\x13\x6c\x03\x6d\x24\x5a\x24\x01\x00\x65\x1d\xa0\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x24\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x04\x53\x00\x23\x00\x65\x25\x24\x00\x72\x04\x01\x00\x59\x00\x64\x04\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static void io_do_patchups(void) { -} - -PyObject * -_Py_get_io_toplevel(void) -{ - io_do_patchups(); - return Py_NewRef((PyObject *) &io_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[107]; - } -_collections_abc_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 106, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x62\x73\x74\x72\x61\x63\x74\x20\x42\x61\x73\x65\x20\x43\x6c\x61\x73\x73\x65\x73\x20\x28\x41\x42\x43\x73\x29\x20\x66\x6f\x72\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x73\x2c\x20\x61\x63\x63\x6f\x72\x64\x69\x6e\x67\x20\x74\x6f\x20\x50\x45\x50\x20\x33\x31\x31\x39\x2e\x0a\x0a\x55\x6e\x69\x74\x20\x74\x65\x73\x74\x73\x20\x61\x72\x65\x20\x69\x6e\x20\x74\x65\x73\x74\x5f\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x73\x2e\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_ABCMeta._ascii.ob_base, - & const_str_abstractmethod._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -_collections_abc_toplevel_consts_5_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str__f = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_f", -}; -static - struct _PyCode_DEF(6) -_collections_abc_toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 14, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__f._ascii.ob_base, - .co_qualname = & const_str__f._ascii.ob_base, - .co_linetable = & importlib__bootstrap_external_toplevel_consts_55_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_Awaitable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Awaitable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_Coroutine = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Coroutine", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_AsyncIterable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncIterable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_AsyncIterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncIterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_AsyncGenerator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncGenerator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_Hashable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Hashable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_Iterable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Iterable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_Iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_Generator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Generator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_Reversible = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Reversible", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_Sized = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sized", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_Container = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Container", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_Callable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Callable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_Collection = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Collection", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_Set = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_MutableSet = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_Mapping = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_MutableMapping = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_MappingView = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MappingView", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_KeysView = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "KeysView", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_ItemsView = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ItemsView", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_ValuesView = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ValuesView", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_Sequence = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_MutableSequence = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_ByteString = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ByteString", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[25]; - }_object; - } -_collections_abc_toplevel_consts_6 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 25, - }, - .ob_item = { - & const_str_Awaitable._ascii.ob_base, - & const_str_Coroutine._ascii.ob_base, - & const_str_AsyncIterable._ascii.ob_base, - & const_str_AsyncIterator._ascii.ob_base, - & const_str_AsyncGenerator._ascii.ob_base, - & const_str_Hashable._ascii.ob_base, - & const_str_Iterable._ascii.ob_base, - & const_str_Iterator._ascii.ob_base, - & const_str_Generator._ascii.ob_base, - & const_str_Reversible._ascii.ob_base, - & const_str_Sized._ascii.ob_base, - & const_str_Container._ascii.ob_base, - & const_str_Callable._ascii.ob_base, - & const_str_Collection._ascii.ob_base, - & const_str_Set._ascii.ob_base, - & const_str_MutableSet._ascii.ob_base, - & const_str_Mapping._ascii.ob_base, - & const_str_MutableMapping._ascii.ob_base, - & const_str_MappingView._ascii.ob_base, - & const_str_KeysView._ascii.ob_base, - & const_str_ItemsView._ascii.ob_base, - & const_str_ValuesView._ascii.ob_base, - & const_str_Sequence._ascii.ob_base, - & const_str_MutableSequence._ascii.ob_base, - & const_str_ByteString._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -_collections_abc_toplevel_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "collections.abc", -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_1000 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 1000 }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -_collections_abc_toplevel_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\x98\x35\x98\x35\x98\x35\x98\x35", -}; -static - struct _PyCode_DEF(14) -_collections_abc_toplevel_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 7, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 62, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_lambda), - .co_qualname = &_Py_STR(anon_lambda), - .co_linetable = & _collections_abc_toplevel_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x56\x00\x97\x01\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__coro = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_coro", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -_collections_abc_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\x80\x00\x80\x00", -}; -static - struct _PyCode_DEF(10) -_collections_abc_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 5, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 131, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 64, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__coro._ascii.ob_base, - .co_qualname = & const_str__coro._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str__ag = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ag", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -_collections_abc_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\x90\x15\x90\x15\x90\x15\x90\x15\x90\x15\x90\x15\x90\x15", -}; -static - struct _PyCode_DEF(20) -_collections_abc_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 515, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 70, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__ag._ascii.ob_base, - .co_qualname = & const_str__ag._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x57\x00\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str___mro__ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__mro__", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str___mro__._ascii.ob_base, - &_Py_ID(__dict__), - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__check_methods = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_check_methods", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[120]; - } -_collections_abc_toplevel_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 119, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0a\x0b\x8c\x29\x80\x43\xd8\x12\x19\xf0\x00\x07\x05\x22\xf0\x00\x07\x05\x22\x88\x06\xd8\x11\x14\xf0\x00\x06\x09\x22\xf0\x00\x06\x09\x22\x88\x41\xd8\x0f\x15\x98\x11\x9c\x1a\xd0\x0f\x23\xd0\x0f\x23\xd8\x13\x14\x94\x3a\x98\x66\xd4\x13\x25\xd0\x13\x2d\xdd\x1b\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xd8\x10\x15\x90\x05\xf0\x07\x00\x10\x24\xf5\x0a\x00\x14\x22\xd0\x0c\x21\xd0\x0c\x21\xd0\x0c\x21\xf0\x05\x00\x11\x16\xf0\x06\x00\x0c\x10\x88\x34", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_C = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "C", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_methods = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "methods", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_B = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "B", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_16_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_C._ascii.ob_base, - & const_str_methods._ascii.ob_base, - &_Py_ID(mro), - & const_str_method._ascii.ob_base, - & const_str_B._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(128) -_collections_abc_toplevel_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 64, - }, - .co_consts = & importlib__bootstrap_external_toplevel_consts_69_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 78, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__check_methods._ascii.ob_base, - .co_qualname = & const_str__check_methods._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x01\x44\x00\x5d\x33\x7d\x03\x7c\x02\x44\x00\x5d\x25\x7d\x04\x7c\x03\x7c\x04\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x1a\x7c\x04\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0b\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x01\x00\x63\x02\x01\x00\x53\x00\x01\x00\x6e\x0a\x8c\x26\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x01\x00\x53\x00\x8c\x34\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_17_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Hashable.__hash__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -_collections_abc_toplevel_consts_17_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x10\x88\x71", -}; -static - struct _PyCode_DEF(6) -_collections_abc_toplevel_consts_17_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 94, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__hash__), - .co_qualname = & _collections_abc_toplevel_consts_17_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_17_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_17_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__hash__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_17_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Hashable._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -_collections_abc_toplevel_consts_17_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Hashable.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -_collections_abc_toplevel_consts_17_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x28\x88\x3f\x88\x3f\xdd\x13\x21\xa0\x21\xa0\x5a\xd1\x13\x30\xd4\x13\x30\xd0\x0c\x30\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_17_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_C._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_17_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_17_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_17_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 98, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_17_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_17_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_17_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_Hashable._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_17_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_17_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -_collections_abc_toplevel_consts_17_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__hash__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[78]; - } -_collections_abc_toplevel_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 77, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x11\xf0\x00\x01\x05\x11\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x11\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", -}; -static - struct _PyCode_DEF(62) -_collections_abc_toplevel_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 31, - }, - .co_consts = & _collections_abc_toplevel_consts_17_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_17_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 90, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Hashable._ascii.ob_base, - .co_qualname = & const_str_Hashable._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_20_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Awaitable.__await__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -_collections_abc_toplevel_consts_20_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xe0\x08\x0d\x88\x05\x88\x05\x88\x05\x88\x05\x88\x05", -}; -static - struct _PyCode_DEF(18) -_collections_abc_toplevel_consts_20_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 9, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 109, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__await__), - .co_qualname = & _collections_abc_toplevel_consts_20_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_20_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_20_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__await__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_20_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Awaitable._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -_collections_abc_toplevel_consts_20_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Awaitable.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -_collections_abc_toplevel_consts_20_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5b\xd1\x13\x31\xd4\x13\x31\xd0\x0c\x31\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_20_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_20_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_20_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 113, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_20_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_20_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_20_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_Awaitable._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_20_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_20_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_GenericAlias = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "GenericAlias", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__await__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - & const_str_GenericAlias._ascii.ob_base, - &_Py_ID(__class_getitem__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[92]; - } -_collections_abc_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 91, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x0e\xf0\x00\x01\x05\x0e\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x0e\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_20_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 105, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Awaitable._ascii.ob_base, - .co_qualname = & const_str_Awaitable._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[100]; - } -_collections_abc_toplevel_consts_22_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 99, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x65\x6e\x64\x20\x61\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_22_consts_2_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_StopIteration._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_22_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Coroutine.send", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -_collections_abc_toplevel_consts_22_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x0f\x1c\xd0\x08\x1b", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_22_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & _collections_abc_toplevel_consts_22_consts_2_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 126, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(send), - .co_qualname = & _collections_abc_toplevel_consts_22_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[104]; - } -_collections_abc_toplevel_consts_22_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 103, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x61\x69\x73\x65\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_22_consts_4_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_with_traceback = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "with_traceback", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_with_traceback._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -_collections_abc_toplevel_consts_22_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Coroutine.throw", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[60]; - } -_collections_abc_toplevel_consts_22_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 59, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x0c\x0f\x88\x3b\xd8\x0f\x11\x88\x7a\xd8\x16\x19\x90\x09\xd8\x12\x15\x90\x23\x91\x25\x94\x25\x88\x43\xd8\x0b\x0d\x88\x3e\xd8\x12\x15\xd7\x12\x24\xd2\x12\x24\xa0\x52\xd1\x12\x28\xd4\x12\x28\x88\x43\xd8\x0e\x11\x88\x09", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_typ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "typ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_val = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "val", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_typ._ascii.ob_base, - & const_str_val._ascii.ob_base, - & const_str_tb._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_22_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_22_consts_4_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 133, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(throw), - .co_qualname = & _collections_abc_toplevel_consts_22_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x80\x0e\x7c\x03\x80\x02\x7c\x01\x82\x01\x02\x00\x7c\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x15\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[47]; - } -_collections_abc_toplevel_consts_22_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 46, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x61\x69\x73\x65\x20\x47\x65\x6e\x65\x72\x61\x74\x6f\x72\x45\x78\x69\x74\x20\x69\x6e\x73\x69\x64\x65\x20\x63\x6f\x72\x6f\x75\x74\x69\x6e\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -_collections_abc_toplevel_consts_22_consts_5_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "coroutine ignored GeneratorExit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_22_consts_5_consts_0._ascii.ob_base, - & _collections_abc_toplevel_consts_22_consts_5_consts_1._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_GeneratorExit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "GeneratorExit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(throw), - & const_str_GeneratorExit._ascii.ob_base, - & const_str_RuntimeError._ascii.ob_base, - & const_str_StopIteration._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -_collections_abc_toplevel_consts_22_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Coroutine.close", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[85]; - } -_collections_abc_toplevel_consts_22_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 84, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x05\x09\x42\x01\xd8\x0c\x10\x8f\x4a\x8a\x4a\x95\x7d\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xf5\x08\x00\x13\x1f\xd0\x1f\x40\xd1\x12\x41\xd4\x12\x41\xd0\x0c\x41\xf8\xf5\x07\x00\x11\x1e\x9d\x7d\xd0\x0f\x2d\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -_collections_abc_toplevel_consts_22_consts_5_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\x82\x1a\x2b\x00\xab\x11\x41\x00\x03\xbf\x01\x41\x00\x03", -}; -static - struct _PyCode_DEF(134) -_collections_abc_toplevel_consts_22_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 67, - }, - .co_consts = & _collections_abc_toplevel_consts_22_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_22_consts_5_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 146, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(close), - .co_qualname = & _collections_abc_toplevel_consts_22_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - &_Py_ID(__await__), - &_Py_ID(send), - &_Py_ID(throw), - &_Py_ID(close), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_22_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Coroutine._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -_collections_abc_toplevel_consts_22_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Coroutine.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[42]; - } -_collections_abc_toplevel_consts_22_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 41, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5b\xb0\x26\xb8\x27\xc0\x37\xd1\x13\x4b\xd4\x13\x4b\xd0\x0c\x4b\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(72) -_collections_abc_toplevel_consts_22_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & _collections_abc_toplevel_consts_22_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 156, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_22_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x13\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\x64\x04\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -_collections_abc_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_Coroutine._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_22_consts_2.ob_base.ob_base, - Py_None, - & _collections_abc_toplevel_consts_22_consts_4.ob_base.ob_base, - & _collections_abc_toplevel_consts_22_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_22_consts_6.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_22_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(send), - &_Py_ID(throw), - &_Py_ID(close), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[128]; - } -_collections_abc_toplevel_consts_22_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 127, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x04\x05\x1c\xf0\x0c\x00\x06\x14\xf0\x02\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x0a\x05\x12\xf0\x18\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x14\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", -}; -static - struct _PyCode_DEF(92) -_collections_abc_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 46, - }, - .co_consts = & _collections_abc_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 122, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Coroutine._ascii.ob_base, - .co_qualname = & const_str_Coroutine._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x04\x64\x07\x64\x04\x84\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x65\x08\x64\x06\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_24_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_AsyncIterator._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -_collections_abc_toplevel_consts_24_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncIterable.__aiter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_24_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x1c\x89\x7f\x8c\x7f\xd0\x08\x1e", -}; -static - struct _PyCode_DEF(30) -_collections_abc_toplevel_consts_24_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 15, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_24_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 170, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__aiter__), - .co_qualname = & _collections_abc_toplevel_consts_24_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_24_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_24_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__aiter__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_24_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_AsyncIterable._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -_collections_abc_toplevel_consts_24_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncIterable.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -_collections_abc_toplevel_consts_24_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2d\xd0\x0b\x1f\xd0\x0b\x1f\xdd\x13\x21\xa0\x21\xa0\x5b\xd1\x13\x31\xd4\x13\x31\xd0\x0c\x31\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_24_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_24_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_24_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 174, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_24_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_24_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_AsyncIterable._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_24_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_24_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__aiter__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - & const_str_GenericAlias._ascii.ob_base, - &_Py_ID(__class_getitem__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[92]; - } -_collections_abc_toplevel_consts_24_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 91, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x1f\xf0\x00\x01\x05\x1f\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x1f\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 166, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_AsyncIterable._ascii.ob_base, - .co_qualname = & const_str_AsyncIterable._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_24_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[65]; - } -_collections_abc_toplevel_consts_26_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 64, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the next item or raise StopAsyncIteration when exhausted.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_26_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_26_consts_2_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_StopAsyncIteration = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "StopAsyncIteration", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_26_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_StopAsyncIteration._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -_collections_abc_toplevel_consts_26_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncIterator.__anext__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -_collections_abc_toplevel_consts_26_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x06\x00\x0f\x21\xd0\x08\x20", -}; -static - struct _PyCode_DEF(20) -_collections_abc_toplevel_consts_26_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & _collections_abc_toplevel_consts_26_consts_2_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 131, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 187, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__anext__), - .co_qualname = & _collections_abc_toplevel_consts_26_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_26_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -_collections_abc_toplevel_consts_26_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncIterator.__aiter__", -}; -static - struct _PyCode_DEF(6) -_collections_abc_toplevel_consts_26_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 192, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__aiter__), - .co_qualname = & _collections_abc_toplevel_consts_26_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_26_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - &_Py_ID(__anext__), - &_Py_ID(__aiter__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_26_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_AsyncIterator._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -_collections_abc_toplevel_consts_26_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncIterator.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[38]; - } -_collections_abc_toplevel_consts_26_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 37, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2d\xd0\x0b\x1f\xd0\x0b\x1f\xdd\x13\x21\xa0\x21\xa0\x5b\xb0\x2b\xd1\x13\x3e\xd4\x13\x3e\xd0\x0c\x3e\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(68) -_collections_abc_toplevel_consts_26_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 34, - }, - .co_consts = & _collections_abc_toplevel_consts_26_consts_4_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_26_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 195, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_26_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_26_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_AsyncIterator._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_26_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_26_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_26_consts_4.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_collections_abc_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__anext__), - &_Py_ID(__aiter__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[93]; - } -_collections_abc_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 92, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x21\xf0\x00\x02\x05\x21\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x21\xf0\x08\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", -}; -static - struct _PyCode_DEF(68) -_collections_abc_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 34, - }, - .co_consts = & _collections_abc_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 183, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_AsyncIterator._ascii.ob_base, - .co_qualname = & const_str_AsyncIterator._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x65\x07\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[113]; - } -_collections_abc_toplevel_consts_28_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 112, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x20\x69\x74\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x61\x73\x79\x6e\x63\x68\x72\x6f\x6e\x6f\x75\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x65\x78\x68\x61\x75\x73\x74\x65\x64\x2c\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x41\x73\x79\x6e\x63\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_28_consts_2_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_asend = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "asend", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_asend._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -_collections_abc_toplevel_consts_28_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncGenerator.__anext__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[45]; - } -_collections_abc_toplevel_consts_28_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 44, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x08\x00\x16\x1a\x97\x5a\x92\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x0f\x25\xd0\x08\x25", -}; -static - struct _PyCode_DEF(60) -_collections_abc_toplevel_consts_28_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 30, - }, - .co_consts = & _collections_abc_toplevel_consts_28_consts_2_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_28_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 131, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 206, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__anext__), - .co_qualname = & _collections_abc_toplevel_consts_28_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_28_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x64\x01\x7b\x03\x56\x00\x97\x03\x86\x04\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[118]; - } -_collections_abc_toplevel_consts_28_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 117, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x65\x6e\x64\x20\x61\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x61\x73\x79\x6e\x63\x68\x72\x6f\x6e\x6f\x75\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x41\x73\x79\x6e\x63\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_28_consts_3_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -_collections_abc_toplevel_consts_28_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncGenerator.asend", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -_collections_abc_toplevel_consts_28_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x0a\x00\x0f\x21\xd0\x08\x20", -}; -static - struct _PyCode_DEF(20) -_collections_abc_toplevel_consts_28_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & _collections_abc_toplevel_consts_28_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 131, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 212, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_asend._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_28_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_28_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[122]; - } -_collections_abc_toplevel_consts_28_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 121, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x61\x69\x73\x65\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x61\x73\x79\x6e\x63\x68\x72\x6f\x6e\x6f\x75\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x41\x73\x79\x6e\x63\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_28_consts_5_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_athrow = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "athrow", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -_collections_abc_toplevel_consts_28_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncGenerator.athrow", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[64]; - } -_collections_abc_toplevel_consts_28_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 63, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x0a\x00\x0c\x0f\x88\x3b\xd8\x0f\x11\x88\x7a\xd8\x16\x19\x90\x09\xd8\x12\x15\x90\x23\x91\x25\x94\x25\x88\x43\xd8\x0b\x0d\x88\x3e\xd8\x12\x15\xd7\x12\x24\xd2\x12\x24\xa0\x52\xd1\x12\x28\xd4\x12\x28\x88\x43\xd8\x0e\x11\x88\x09", -}; -static - struct _PyCode_DEF(88) -_collections_abc_toplevel_consts_28_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 44, - }, - .co_consts = & _collections_abc_toplevel_consts_28_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 131, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 219, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_athrow._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_28_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_28_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x02\x80\x0e\x7c\x03\x80\x02\x7c\x01\x82\x01\x02\x00\x7c\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x15\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x82\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -_collections_abc_toplevel_consts_28_consts_6_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "asynchronous generator ignored GeneratorExit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_22_consts_5_consts_0._ascii.ob_base, - Py_None, - & _collections_abc_toplevel_consts_28_consts_6_consts_2._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_athrow._ascii.ob_base, - & const_str_GeneratorExit._ascii.ob_base, - & const_str_RuntimeError._ascii.ob_base, - & const_str_StopAsyncIteration._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_aclose = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "aclose", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -_collections_abc_toplevel_consts_28_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncGenerator.aclose", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[108]; - } -_collections_abc_toplevel_consts_28_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 107, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x06\x05\x09\x4f\x01\xd8\x12\x16\x97\x2b\x92\x2b\x9d\x6d\xd1\x12\x2c\xd4\x12\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xd0\x0c\x2c\xf5\x08\x00\x13\x1f\xd0\x1f\x4d\xd1\x12\x4e\xd4\x12\x4e\xd0\x0c\x4e\xf8\xf5\x07\x00\x11\x1e\xd5\x1f\x31\xd0\x0f\x32\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -_collections_abc_toplevel_consts_28_consts_6_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x84\x20\x33\x00\xb3\x11\x41\x08\x03\xc1\x07\x01\x41\x08\x03", -}; -static - struct _PyCode_DEF(150) -_collections_abc_toplevel_consts_28_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 75, - }, - .co_consts = & _collections_abc_toplevel_consts_28_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_28_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_28_consts_6_exceptiontable.ob_base.ob_base, - .co_flags = 131, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 232, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_aclose._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_28_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_28_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x64\x01\x7b\x03\x56\x00\x97\x03\x86\x04\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - Py_None, - &_Py_ID(__aiter__), - &_Py_ID(__anext__), - & const_str_asend._ascii.ob_base, - & const_str_athrow._ascii.ob_base, - & const_str_aclose._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_28_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_AsyncGenerator._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -_collections_abc_toplevel_consts_28_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "AsyncGenerator.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[51]; - } -_collections_abc_toplevel_consts_28_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 50, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2e\xd0\x0b\x20\xd0\x0b\x20\xdd\x13\x21\xa0\x21\xa0\x5b\xb0\x2b\xd8\x22\x29\xa8\x38\xb0\x58\xf1\x03\x01\x14\x3f\xf4\x00\x01\x14\x3f\xf0\x00\x01\x0d\x3f\xe5\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(74) -_collections_abc_toplevel_consts_28_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 37, - }, - .co_consts = & _collections_abc_toplevel_consts_28_consts_7_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_28_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 242, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_28_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_28_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x14\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\x64\x04\x64\x05\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_collections_abc_toplevel_consts_28_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_AsyncGenerator._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_28_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_28_consts_3.ob_base.ob_base, - Py_None, - & _collections_abc_toplevel_consts_28_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_28_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_28_consts_7.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -_collections_abc_toplevel_consts_28_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - &_Py_ID(__anext__), - & const_str_abstractmethod._ascii.ob_base, - & const_str_asend._ascii.ob_base, - & const_str_athrow._ascii.ob_base, - & const_str_aclose._ascii.ob_base, - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[145]; - } -_collections_abc_toplevel_consts_28_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 144, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xf0\x04\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x0c\x00\x06\x14\xf0\x02\x04\x05\x21\xf0\x00\x04\x05\x21\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x04\x05\x21\xf0\x0c\x00\x06\x14\xf0\x02\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x0a\x05\x12\xf0\x18\x08\x05\x4f\x01\xf0\x00\x08\x05\x4f\x01\xf0\x00\x08\x05\x4f\x01\xf0\x14\x00\x06\x11\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf0\x00\x04\x05\x1e", -}; -static - struct _PyCode_DEF(98) -_collections_abc_toplevel_consts_28 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & _collections_abc_toplevel_consts_28_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_28_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 202, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_AsyncGenerator._ascii.ob_base, - .co_qualname = & const_str_AsyncGenerator._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_28_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x08\x64\x05\x84\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x65\x09\x64\x07\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_30_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Iterable.__iter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[17]; - } -_collections_abc_toplevel_consts_30_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 16, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf0\x04\x01\x09\x17\xf0\x00\x01\x09\x17", -}; -static - struct _PyCode_DEF(10) -_collections_abc_toplevel_consts_30_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 5, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 257, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & _collections_abc_toplevel_consts_30_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_30_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_30_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__iter__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_30_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Iterable._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -_collections_abc_toplevel_consts_30_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Iterable.__subclasshook__", -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_30_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_30_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_30_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 262, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_30_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_17_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_30_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_Iterable._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_30_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_30_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_30_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__iter__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - & const_str_GenericAlias._ascii.ob_base, - &_Py_ID(__class_getitem__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[92]; - } -_collections_abc_toplevel_consts_30_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 91, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x17\xf0\x00\x02\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x17\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_30 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_30_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_30_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 253, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Iterable._ascii.ob_base, - .co_qualname = & const_str_Iterable._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_30_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[76]; - } -_collections_abc_toplevel_consts_32_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 75, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the next item from the iterator. When exhausted, raise StopIteration", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_32_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_32_consts_2_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_32_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Iterator.__next__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -_collections_abc_toplevel_consts_32_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x0f\x1c\xd0\x08\x1b", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_32_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & _collections_abc_toplevel_consts_32_consts_2_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 275, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__next__), - .co_qualname = & _collections_abc_toplevel_consts_32_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_32_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_32_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Iterator.__iter__", -}; -static - struct _PyCode_DEF(6) -_collections_abc_toplevel_consts_32_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 280, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & _collections_abc_toplevel_consts_32_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_24_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_32_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - &_Py_ID(__iter__), - &_Py_ID(__next__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_32_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Iterator._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -_collections_abc_toplevel_consts_32_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Iterator.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -_collections_abc_toplevel_consts_32_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x28\x88\x3f\x88\x3f\xdd\x13\x21\xa0\x21\xa0\x5a\xb0\x1a\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(68) -_collections_abc_toplevel_consts_32_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 34, - }, - .co_consts = & _collections_abc_toplevel_consts_32_consts_4_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_32_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 283, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_32_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_32_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_32_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_Iterator._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_32_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_32_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_32_consts_4.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_collections_abc_toplevel_consts_32_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__next__), - &_Py_ID(__iter__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[93]; - } -_collections_abc_toplevel_consts_32_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 92, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x1c\xf0\x00\x02\x05\x1c\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x1c\xf0\x08\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x00\x01\x05\x14\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", -}; -static - struct _PyCode_DEF(68) -_collections_abc_toplevel_consts_32 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 34, - }, - .co_consts = & _collections_abc_toplevel_consts_32_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_32_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 271, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Iterator._ascii.ob_base, - .co_qualname = & const_str_Iterator._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_32_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x65\x07\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -_collections_abc_toplevel_consts_34_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Reversible.__reversed__", -}; -static - struct _PyCode_DEF(10) -_collections_abc_toplevel_consts_34_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 5, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 310, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__reversed__), - .co_qualname = & _collections_abc_toplevel_consts_34_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_30_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_34_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - &_Py_ID(__reversed__), - &_Py_ID(__iter__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_34_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Reversible._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -_collections_abc_toplevel_consts_34_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Reversible.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[38]; - } -_collections_abc_toplevel_consts_34_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 37, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2a\xd0\x0b\x1c\xd0\x0b\x1c\xdd\x13\x21\xa0\x21\xa0\x5e\xb0\x5a\xd1\x13\x40\xd4\x13\x40\xd0\x0c\x40\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(68) -_collections_abc_toplevel_consts_34_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 34, - }, - .co_consts = & _collections_abc_toplevel_consts_34_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_34_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 315, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_34_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_34_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_34_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_Reversible._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_34_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_34_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -_collections_abc_toplevel_consts_34_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__reversed__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[78]; - } -_collections_abc_toplevel_consts_34_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 77, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x17\xf0\x00\x02\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x17\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", -}; -static - struct _PyCode_DEF(62) -_collections_abc_toplevel_consts_34 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 31, - }, - .co_consts = & _collections_abc_toplevel_consts_34_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_34_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 306, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Reversible._ascii.ob_base, - .co_qualname = & const_str_Reversible._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_34_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[95]; - } -_collections_abc_toplevel_consts_36_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 94, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x6e\x65\x78\x74\x20\x69\x74\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x65\x78\x68\x61\x75\x73\x74\x65\x64\x2c\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_36_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_36_consts_2_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_36_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(send), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -_collections_abc_toplevel_consts_36_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Generator.__next__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -_collections_abc_toplevel_consts_36_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x10\x14\x8f\x79\x8a\x79\x98\x14\x89\x7f\x8c\x7f\xd0\x08\x1e", -}; -static - struct _PyCode_DEF(44) -_collections_abc_toplevel_consts_36_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & _collections_abc_toplevel_consts_36_consts_2_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_36_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 326, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__next__), - .co_qualname = & _collections_abc_toplevel_consts_36_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_36_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[100]; - } -_collections_abc_toplevel_consts_36_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 99, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x65\x6e\x64\x20\x61\x20\x76\x61\x6c\x75\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_36_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_36_consts_3_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_36_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Generator.send", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_36_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & _collections_abc_toplevel_consts_36_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 332, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(send), - .co_qualname = & _collections_abc_toplevel_consts_36_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[104]; - } -_collections_abc_toplevel_consts_36_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 103, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x61\x69\x73\x65\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x6e\x65\x78\x74\x20\x79\x69\x65\x6c\x64\x65\x64\x20\x76\x61\x6c\x75\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x53\x74\x6f\x70\x49\x74\x65\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_36_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_36_consts_5_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -_collections_abc_toplevel_consts_36_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Generator.throw", -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_36_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_36_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 339, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(throw), - .co_qualname = & _collections_abc_toplevel_consts_36_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x80\x0e\x7c\x03\x80\x02\x7c\x01\x82\x01\x02\x00\x7c\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x15\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[47]; - } -_collections_abc_toplevel_consts_36_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 46, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x61\x69\x73\x65\x20\x47\x65\x6e\x65\x72\x61\x74\x6f\x72\x45\x78\x69\x74\x20\x69\x6e\x73\x69\x64\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -_collections_abc_toplevel_consts_36_consts_6_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "generator ignored GeneratorExit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_36_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_36_consts_6_consts_0._ascii.ob_base, - & _collections_abc_toplevel_consts_36_consts_6_consts_1._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -_collections_abc_toplevel_consts_36_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Generator.close", -}; -static - struct _PyCode_DEF(134) -_collections_abc_toplevel_consts_36_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 67, - }, - .co_consts = & _collections_abc_toplevel_consts_36_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_22_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_22_consts_5_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 352, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(close), - .co_qualname = & _collections_abc_toplevel_consts_36_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_22_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_36_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - Py_None, - &_Py_ID(__iter__), - &_Py_ID(__next__), - &_Py_ID(send), - &_Py_ID(throw), - &_Py_ID(close), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_36_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Generator._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -_collections_abc_toplevel_consts_36_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Generator.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[51]; - } -_collections_abc_toplevel_consts_36_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 50, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5a\xb0\x1a\xd8\x22\x28\xa8\x27\xb0\x37\xf1\x03\x01\x14\x3c\xf4\x00\x01\x14\x3c\xf0\x00\x01\x0d\x3c\xe5\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(74) -_collections_abc_toplevel_consts_36_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 37, - }, - .co_consts = & _collections_abc_toplevel_consts_36_consts_7_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_36_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 362, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_36_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_36_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x14\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\x64\x04\x64\x05\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_collections_abc_toplevel_consts_36_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_Generator._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_36_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_36_consts_3.ob_base.ob_base, - Py_None, - & _collections_abc_toplevel_consts_36_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_36_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_36_consts_7.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -_collections_abc_toplevel_consts_36_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - &_Py_ID(__next__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(send), - &_Py_ID(throw), - &_Py_ID(close), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[145]; - } -_collections_abc_toplevel_consts_36_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 144, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xf0\x04\x04\x05\x1f\xf0\x00\x04\x05\x1f\xf0\x00\x04\x05\x1f\xf0\x0c\x00\x06\x14\xf0\x02\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x04\x05\x1c\xf0\x0c\x00\x06\x14\xf0\x02\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf0\x00\x0a\x05\x12\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x0a\x05\x12\xf0\x18\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x00\x08\x05\x42\x01\xf0\x14\x00\x06\x11\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x04\x05\x1e\xf0\x00\x04\x05\x1e\xf0\x00\x04\x05\x1e", -}; -static - struct _PyCode_DEF(98) -_collections_abc_toplevel_consts_36 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & _collections_abc_toplevel_consts_36_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_36_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 322, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Generator._ascii.ob_base, - .co_qualname = & const_str_Generator._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_36_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x08\x64\x05\x84\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x65\x09\x64\x07\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -_collections_abc_toplevel_consts_38_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sized.__len__", -}; -static - struct _PyCode_DEF(6) -_collections_abc_toplevel_consts_38_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 377, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__len__), - .co_qualname = & _collections_abc_toplevel_consts_38_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_17_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_38_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__len__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_38_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Sized._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_38_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sized.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -_collections_abc_toplevel_consts_38_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x25\x88\x3c\x88\x3c\xdd\x13\x21\xa0\x21\xa0\x59\xd1\x13\x2f\xd4\x13\x2f\xd0\x0c\x2f\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_38_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_38_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_38_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 381, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_38_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_38_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_38_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_Sized._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_38_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_38_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -_collections_abc_toplevel_consts_38_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__len__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct _PyCode_DEF(62) -_collections_abc_toplevel_consts_38 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 31, - }, - .co_consts = & _collections_abc_toplevel_consts_38_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_38_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 373, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Sized._ascii.ob_base, - .co_qualname = & const_str_Sized._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_40_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Container.__contains__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -_collections_abc_toplevel_consts_40_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0f\x14\x88\x75", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_40_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_x._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(6) -_collections_abc_toplevel_consts_40_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 392, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_40_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__contains__), - .co_qualname = & _collections_abc_toplevel_consts_40_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_40_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_40_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__contains__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_40_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Container._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -_collections_abc_toplevel_consts_40_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Container.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -_collections_abc_toplevel_consts_40_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x29\xd0\x0b\x1b\xd0\x0b\x1b\xdd\x13\x21\xa0\x21\xa0\x5e\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_40_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_40_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_40_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 396, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_40_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_40_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_40_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_Container._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_40_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_40_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_40_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__contains__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - & const_str_GenericAlias._ascii.ob_base, - &_Py_ID(__class_getitem__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[92]; - } -_collections_abc_toplevel_consts_40_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 91, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x15\xf0\x00\x01\x05\x15\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x15\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_40 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_40_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_40_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 388, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Container._ascii.ob_base, - .co_qualname = & const_str_Container._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_40_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_42_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - &_Py_ID(__len__), - &_Py_ID(__iter__), - &_Py_ID(__contains__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_42_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Collection._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -_collections_abc_toplevel_consts_42_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Collection.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[40]; - } -_collections_abc_toplevel_consts_42_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 39, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x2a\xd0\x0b\x1c\xd0\x0b\x1c\xdd\x13\x21\xa0\x21\xa0\x69\xb0\x1a\xb8\x5e\xd1\x13\x4c\xd4\x13\x4c\xd0\x0c\x4c\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(70) -_collections_abc_toplevel_consts_42_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 35, - }, - .co_consts = & _collections_abc_toplevel_consts_42_consts_2_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_42_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 409, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_42_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_42_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x12\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x64\x02\x64\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_42_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_Collection._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_42_consts_2.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_42_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[51]; - } -_collections_abc_toplevel_consts_42_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 50, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x10\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf0\x00\x03\x05\x1e", -}; -static - struct _PyCode_DEF(40) -_collections_abc_toplevel_consts_42 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 20, - }, - .co_consts = & _collections_abc_toplevel_consts_42_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_42_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 405, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Collection._ascii.ob_base, - .co_qualname = & const_str_Collection._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_42_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str__CallableGenericAlias = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_CallableGenericAlias", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[253]; - } -_collections_abc_toplevel_consts_44_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 252, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x52\x65\x70\x72\x65\x73\x65\x6e\x74\x20\x60\x43\x61\x6c\x6c\x61\x62\x6c\x65\x5b\x61\x72\x67\x74\x79\x70\x65\x73\x2c\x20\x72\x65\x73\x75\x6c\x74\x74\x79\x70\x65\x5d\x60\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x65\x74\x73\x20\x60\x60\x5f\x5f\x61\x72\x67\x73\x5f\x5f\x60\x60\x20\x74\x6f\x20\x61\x20\x74\x75\x70\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x74\x68\x65\x20\x66\x6c\x61\x74\x74\x65\x6e\x65\x64\x20\x60\x60\x61\x72\x67\x74\x79\x70\x65\x73\x60\x60\x0a\x20\x20\x20\x20\x66\x6f\x6c\x6c\x6f\x77\x65\x64\x20\x62\x79\x20\x60\x60\x72\x65\x73\x75\x6c\x74\x74\x79\x70\x65\x60\x60\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x61\x6d\x70\x6c\x65\x3a\x20\x60\x60\x43\x61\x6c\x6c\x61\x62\x6c\x65\x5b\x5b\x69\x6e\x74\x2c\x20\x73\x74\x72\x5d\x2c\x20\x66\x6c\x6f\x61\x74\x5d\x60\x60\x20\x73\x65\x74\x73\x20\x60\x60\x5f\x5f\x61\x72\x67\x73\x5f\x5f\x60\x60\x20\x74\x6f\x0a\x20\x20\x20\x20\x60\x60\x28\x69\x6e\x74\x2c\x20\x73\x74\x72\x2c\x20\x66\x6c\x6f\x61\x74\x29\x60\x60\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[55]; - } -_collections_abc_toplevel_consts_44_consts_3_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 54, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Callable must be used as Callable[[arg, ...], result].", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[71]; - } -_collections_abc_toplevel_consts_44_consts_3_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 70, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Expected a list of types, an ellipsis, ParamSpec, or Concatenate. Got ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & _collections_abc_toplevel_consts_44_consts_3_consts_2._ascii.ob_base, - & _collections_abc_toplevel_consts_44_consts_3_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__is_param_expr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_is_param_expr", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_tuple._ascii.ob_base, - &_Py_ID(len), - & const_str_TypeError._ascii.ob_base, - & const_str_list._ascii.ob_base, - & const_str__is_param_expr._ascii.ob_base, - & const_str_super._ascii.ob_base, - &_Py_ID(__new__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -_collections_abc_toplevel_consts_44_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_CallableGenericAlias.__new__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[199]; - } -_collections_abc_toplevel_consts_44_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 198, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xdd\x10\x1a\x98\x34\xa5\x15\xd1\x10\x27\xd4\x10\x27\xf0\x00\x02\x09\x4a\x01\xad\x43\xb0\x04\xa9\x49\xac\x49\xb8\x11\xaa\x4e\xa8\x4e\xdd\x12\x1b\xd8\x10\x48\xf1\x03\x01\x13\x4a\x01\xf4\x00\x01\x13\x4a\x01\xf0\x00\x01\x0d\x4a\x01\xe0\x1b\x1f\xd1\x08\x18\x88\x06\x90\x08\xdd\x0b\x15\x90\x66\x9d\x75\xa5\x64\x98\x6d\xd1\x0b\x2c\xd4\x0b\x2c\xf0\x00\x04\x09\x48\x01\xd8\x13\x26\x90\x56\xd0\x13\x26\x98\x58\xd0\x13\x26\xd0\x13\x26\x88\x44\x88\x44\xdd\x11\x1f\xa0\x06\xd1\x11\x27\xd4\x11\x27\xf0\x00\x02\x09\x48\x01\xdd\x12\x1b\xf0\x00\x01\x1d\x47\x01\xd8\x3e\x44\xf0\x03\x01\x1d\x47\x01\xf0\x00\x01\x1d\x47\x01\xf1\x00\x01\x13\x48\x01\xf4\x00\x01\x13\x48\x01\xf0\x00\x01\x0d\x48\x01\xe5\x0f\x14\x89\x77\x8c\x77\x8f\x7f\x8a\x7f\x98\x73\xa0\x46\xa8\x44\xd1\x0f\x31\xd4\x0f\x31\xd0\x08\x31", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_t_args = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "t_args", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_t_result = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "t_result", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_t_args._ascii.ob_base, - & const_str_t_result._ascii.ob_base, - &_Py_ID(__class__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[7]; - } -_collections_abc_toplevel_consts_44_consts_3_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 6, - }, - .ob_shash = -1, - .ob_sval = "\x20\x20\x20\x20\x20\x80", -}; -static - struct _PyCode_DEF(332) -_collections_abc_toplevel_consts_44_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 166, - }, - .co_consts = & _collections_abc_toplevel_consts_44_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_44_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 428, - .co_nlocalsplus = 6, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__new__), - .co_qualname = & _collections_abc_toplevel_consts_44_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_44_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x13\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x73\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x02\x5c\x02\x00\x00\x7d\x03\x7d\x04\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x08\x67\x00\x7c\x03\xa2\x01\x7c\x04\x91\x01\x52\x00\x7d\x02\x6e\x21\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x12\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x03\x9b\x00\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -_collections_abc_toplevel_consts_44_consts_4_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "collections.abc.Callable[[", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str__type_repr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_type_repr", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_4_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__type_repr._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[51]; - } -_collections_abc_toplevel_consts_44_consts_4_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 50, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_CallableGenericAlias.__repr__..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[31]; - } -_collections_abc_toplevel_consts_44_consts_4_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 30, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd0\x1f\x4a\xd0\x1f\x4a\xd0\x1f\x4a\xb0\x21\xa5\x0a\xa8\x31\xa1\x0d\xa4\x0d\xd0\x1f\x4a\xd0\x1f\x4a\xd0\x1f\x4a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_a = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_4_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_a._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(44) -_collections_abc_toplevel_consts_44_consts_4_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = & _collections_abc_toplevel_consts_44_consts_4_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 444, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_4_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & _collections_abc_toplevel_consts_44_consts_4_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_44_consts_4_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x11\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x12\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -_collections_abc_toplevel_consts_44_consts_4_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "], ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -_collections_abc_toplevel_consts_44_consts_4_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "]", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & _collections_abc_toplevel_consts_44_consts_4_consts_3._ascii.ob_base, - &_Py_STR(comma_sep), - & _collections_abc_toplevel_consts_44_consts_4_consts_5.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & _collections_abc_toplevel_consts_44_consts_4_consts_7._ascii.ob_base, - & _collections_abc_toplevel_consts_44_consts_4_consts_8._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(len), - &_Py_ID(__args__), - & const_str__is_param_expr._ascii.ob_base, - & const_str_super._ascii.ob_base, - &_Py_ID(__repr__), - &_Py_ID(join), - & const_str__type_repr._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -_collections_abc_toplevel_consts_44_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_CallableGenericAlias.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[161]; - } -_collections_abc_toplevel_consts_44_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 160, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xdd\x0b\x0e\x88\x74\x8c\x7d\xd1\x0b\x1d\xd4\x0b\x1d\xa0\x11\xd2\x0b\x22\xd0\x0b\x22\xa5\x7e\xb0\x64\xb4\x6d\xc0\x41\xd4\x36\x46\xd1\x27\x47\xd4\x27\x47\xd0\x0b\x22\xdd\x13\x18\x91\x37\x94\x37\xd7\x13\x23\xd2\x13\x23\xd1\x13\x25\xd4\x13\x25\xd0\x0c\x25\xf0\x02\x02\x11\x34\xd8\x15\x19\x97\x59\x92\x59\xd0\x1f\x4a\xd0\x1f\x4a\xb0\x74\xb4\x7d\xc0\x53\xc0\x62\xc0\x53\xd4\x37\x49\xd0\x1f\x4a\xd1\x1f\x4a\xd4\x1f\x4a\xd1\x15\x4b\xd4\x15\x4b\xf0\x03\x02\x11\x34\xf0\x00\x02\x11\x34\xe5\x13\x1d\x98\x64\x9c\x6d\xa8\x42\xd4\x1e\x2f\xd1\x13\x30\xd4\x13\x30\xf0\x05\x02\x11\x34\xf0\x00\x02\x11\x34\xf0\x00\x02\x11\x34\xf0\x00\x02\x09\x35", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(__class__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -_collections_abc_toplevel_consts_44_consts_4_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "\x20\x80", -}; -static - struct _PyCode_DEF(318) -_collections_abc_toplevel_consts_44_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 159, - }, - .co_consts = & _collections_abc_toplevel_consts_44_consts_4_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_44_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 440, - .co_nlocalsplus = 2, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & _collections_abc_toplevel_consts_44_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_44_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x3a\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x03\x64\x04\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x84\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x64\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x07\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x08\x9d\x05\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__args__), - &_Py_ID(len), - & const_str__is_param_expr._ascii.ob_base, - & const_str_list._ascii.ob_base, - & const_str__CallableGenericAlias._ascii.ob_base, - & const_str_Callable._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[33]; - } -_collections_abc_toplevel_consts_44_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 32, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_CallableGenericAlias.__reduce__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[85]; - } -_collections_abc_toplevel_consts_44_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 84, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x7d\x88\x04\xdd\x10\x13\x90\x44\x91\x09\x94\x09\x98\x51\x92\x0e\x90\x0e\xa5\x3e\xb0\x24\xb0\x71\xb4\x27\xd1\x23\x3a\xd4\x23\x3a\x90\x0e\xdd\x13\x17\x98\x04\x98\x53\x98\x62\x98\x53\x9c\x09\x91\x3f\x94\x3f\xa0\x44\xa8\x12\xa4\x48\xd0\x13\x2c\x88\x44\xdd\x0f\x24\xa5\x78\xb0\x14\xd0\x26\x36\xd0\x0f\x36\xd0\x08\x36", -}; -static - struct _PyCode_DEF(190) -_collections_abc_toplevel_consts_44_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 95, - }, - .co_consts = & _collections_abc_toplevel_consts_44_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_44_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 447, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__reduce__), - .co_qualname = & _collections_abc_toplevel_consts_44_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_44_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x15\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x00\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x7d\x01\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x66\x02\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_tuple._ascii.ob_base, - &_Py_ID(len), - &_Py_ID(__parameters__), - & const_str__is_param_expr._ascii.ob_base, - & const_str_super._ascii.ob_base, - &_Py_ID(__getitem__), - &_Py_ID(__args__), - & const_str_list._ascii.ob_base, - & const_str__CallableGenericAlias._ascii.ob_base, - & const_str_Callable._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -_collections_abc_toplevel_consts_44_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_CallableGenericAlias.__getitem__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[224]; - } -_collections_abc_toplevel_consts_44_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 223, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x10\x1a\x98\x24\xa5\x05\xd1\x0f\x26\xd4\x0f\x26\xf0\x00\x01\x09\x1b\xd8\x14\x18\x90\x37\x88\x44\xf5\x06\x00\x0d\x10\x90\x04\xd4\x10\x23\xd1\x0c\x24\xd4\x0c\x24\xa8\x01\xd2\x0c\x29\xd0\x0c\x29\xdd\x14\x22\xa0\x34\xd4\x23\x36\xb0\x71\xd4\x23\x39\xd1\x14\x3a\xd4\x14\x3a\xf0\x03\x00\x0d\x2a\xe0\x14\x18\xf0\x05\x00\x0d\x2a\xe5\x21\x2f\xb0\x04\xb0\x51\xb4\x07\xd1\x21\x38\xd4\x21\x38\xf0\x05\x00\x0d\x2a\xf0\x06\x00\x15\x19\x90\x37\x88\x44\xe5\x13\x18\x91\x37\x94\x37\xd7\x13\x26\xd2\x13\x26\xa0\x74\xd1\x13\x2c\xd4\x13\x2c\xd4\x13\x35\x88\x08\xf5\x06\x00\x10\x1a\x98\x28\xa0\x31\x9c\x2b\xad\x05\xad\x74\xa0\x7d\xd1\x0f\x35\xd4\x0f\x35\xf0\x00\x03\x09\x2a\xd8\x17\x1f\xa0\x02\x94\x7c\x88\x48\xd8\x15\x1d\x98\x63\x98\x72\x98\x63\x94\x5d\x88\x46\xd8\x18\x1e\xa0\x08\xd0\x17\x29\x88\x48\xdd\x0f\x24\xa5\x58\xad\x75\xb0\x58\xa9\x7f\xac\x7f\xd1\x0f\x3f\xd4\x0f\x3f\xd0\x08\x3f", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_new_args = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "new_args", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_44_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_item._ascii.ob_base, - & const_str_new_args._ascii.ob_base, - & const_str_t_result._ascii.ob_base, - & const_str_t_args._ascii.ob_base, - &_Py_ID(__class__), - }, - }, -}; -static - struct _PyCode_DEF(460) -_collections_abc_toplevel_consts_44_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 230, - }, - .co_consts = & _collections_abc_toplevel_consts_44_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_44_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 453, - .co_nlocalsplus = 6, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_44_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getitem__), - .co_qualname = & _collections_abc_toplevel_consts_44_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_44_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x03\x7c\x01\x66\x01\x7d\x01\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x34\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x01\x72\x18\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x03\x7c\x01\x66\x01\x7d\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x16\x7c\x02\x64\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x02\x64\x00\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x03\x66\x02\x7d\x02\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -_collections_abc_toplevel_consts_44_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__CallableGenericAlias._ascii.ob_base, - & _collections_abc_toplevel_consts_44_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_44_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_44_consts_4.ob_base.ob_base, - & _collections_abc_toplevel_consts_44_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_44_consts_6.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_44_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - &_Py_ID(__new__), - &_Py_ID(__repr__), - &_Py_ID(__reduce__), - &_Py_ID(__getitem__), - &_Py_ID(__classcell__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[148]; - } -_collections_abc_toplevel_consts_44_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 147, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x07\x05\x08\xf0\x00\x07\x05\x08\xf0\x12\x00\x11\x13\x80\x49\xf0\x04\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x00\x0a\x05\x32\xf0\x18\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x00\x05\x05\x35\xf0\x0e\x04\x05\x37\xf0\x00\x04\x05\x37\xf0\x00\x04\x05\x37\xf0\x0c\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01\xf0\x00\x16\x05\x40\x01", -}; -static - struct _PyCode_DEF(64) -_collections_abc_toplevel_consts_44 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 32, - }, - .co_consts = & _collections_abc_toplevel_consts_44_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_44_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 416, - .co_nlocalsplus = 1, - .co_nlocals = 0, - .co_nplaincellvars = 1, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[64]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__CallableGenericAlias._ascii.ob_base, - .co_qualname = & const_str__CallableGenericAlias._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_44_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x88\x00\x66\x01\x64\x03\x84\x08\x5a\x05\x88\x00\x66\x01\x64\x04\x84\x08\x5a\x06\x64\x05\x84\x00\x5a\x07\x88\x00\x66\x01\x64\x06\x84\x08\x5a\x08\x88\x00\x78\x01\x5a\x09\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[125]; - } -_collections_abc_toplevel_consts_46_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 124, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x68\x65\x63\x6b\x73\x20\x69\x66\x20\x6f\x62\x6a\x20\x6d\x61\x74\x63\x68\x65\x73\x20\x65\x69\x74\x68\x65\x72\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x74\x79\x70\x65\x73\x2c\x20\x60\x60\x2e\x2e\x2e\x60\x60\x2c\x20\x60\x60\x50\x61\x72\x61\x6d\x53\x70\x65\x63\x60\x60\x20\x6f\x72\x0a\x20\x20\x20\x20\x60\x60\x5f\x43\x6f\x6e\x63\x61\x74\x65\x6e\x61\x74\x65\x47\x65\x6e\x65\x72\x69\x63\x41\x6c\x69\x61\x73\x60\x60\x20\x66\x72\x6f\x6d\x20\x74\x79\x70\x69\x6e\x67\x2e\x70\x79\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_ParamSpec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ParamSpec", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str__ConcatenateGenericAlias = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ConcatenateGenericAlias", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_46_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_ParamSpec._ascii.ob_base, - & const_str__ConcatenateGenericAlias._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_typing = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "typing", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_46_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -_collections_abc_toplevel_consts_46_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_is_param_expr..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[43]; - } -_collections_abc_toplevel_consts_46_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 42, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x2d\x55\xd0\x2d\x55\xc0\x74\xa8\x63\xac\x6c\xb8\x64\xd2\x2e\x42\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_46_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(obj), - }, - }, -}; -static - struct _PyCode_DEF(46) -_collections_abc_toplevel_consts_46_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 23, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_46_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 487, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_46_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & _collections_abc_toplevel_consts_46_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_46_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0f\x7d\x01\x89\x02\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6b\x02\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x10\x64\x00\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_46_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & _collections_abc_toplevel_consts_46_consts_0._ascii.ob_base, - Py_True, - & _collections_abc_toplevel_consts_46_consts_2._object.ob_base.ob_base, - & const_str_typing._ascii.ob_base, - & _collections_abc_toplevel_consts_46_consts_4.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_Ellipsis = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Ellipsis", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_46_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_Ellipsis._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_list._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__module__), - & const_str_any._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[106]; - } -_collections_abc_toplevel_consts_46_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 105, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf0\x08\x00\x08\x0b\x8d\x68\x80\x7f\x80\x7f\xd8\x0f\x13\x88\x74\xdd\x07\x11\x90\x23\x95\x74\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\xdd\x0a\x0e\x88\x73\x89\x29\x8c\x29\x80\x43\xd8\x0c\x35\x80\x45\xd8\x0b\x0e\x8c\x3e\x98\x58\xd2\x0b\x25\xd0\x0b\x55\xad\x23\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xd0\x2d\x55\xc8\x75\xd0\x2d\x55\xd1\x2d\x55\xd4\x2d\x55\xd1\x2a\x55\xd4\x2a\x55\xd0\x04\x55", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_names = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "names", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_46_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(obj), - & const_str_names._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(182) -_collections_abc_toplevel_consts_46 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 91, - }, - .co_consts = & _collections_abc_toplevel_consts_46_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_46_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 477, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_46_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__is_param_expr._ascii.ob_base, - .co_qualname = & const_str__is_param_expr._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_46_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x89\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x02\x64\x01\x53\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x00\x64\x02\x7d\x01\x89\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x02\x00\x00\x00\x00\x6f\x1a\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x04\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[167]; - } -_collections_abc_toplevel_consts_47_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 166, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x72\x65\x70\x72\x28\x29\x20\x6f\x66\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x73\x70\x65\x63\x69\x61\x6c\x2d\x63\x61\x73\x69\x6e\x67\x20\x74\x79\x70\x65\x73\x20\x28\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x68\x65\x6c\x70\x65\x72\x29\x2e\x0a\x0a\x20\x20\x20\x20\x43\x6f\x70\x69\x65\x64\x20\x66\x72\x6f\x6d\x20\x3a\x6d\x6f\x64\x3a\x60\x74\x79\x70\x69\x6e\x67\x60\x20\x73\x69\x6e\x63\x65\x20\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e\x73\x2e\x61\x62\x63\x0a\x20\x20\x20\x20\x73\x68\x6f\x75\x6c\x64\x6e\x27\x74\x20\x64\x65\x70\x65\x6e\x64\x20\x6f\x6e\x20\x74\x68\x61\x74\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -_collections_abc_toplevel_consts_47_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "...", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_47_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & _collections_abc_toplevel_consts_47_consts_0._ascii.ob_base, - &_Py_ID(builtins), - &_Py_STR(dot), - & _collections_abc_toplevel_consts_47_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_repr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "repr", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_FunctionType = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FunctionType", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_collections_abc_toplevel_consts_47_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_GenericAlias._ascii.ob_base, - & const_str_repr._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__module__), - &_Py_ID(__qualname__), - & const_str_Ellipsis._ascii.ob_base, - & const_str_FunctionType._ascii.ob_base, - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[152]; - } -_collections_abc_toplevel_consts_47_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 151, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0c\x00\x08\x12\x90\x23\x95\x7c\xd1\x07\x24\xd4\x07\x24\xf0\x00\x01\x05\x19\xdd\x0f\x13\x90\x43\x89\x79\x8c\x79\xd0\x08\x18\xdd\x07\x11\x90\x23\x95\x74\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x03\x05\x36\xd8\x0b\x0e\x8c\x3e\x98\x5a\xd2\x0b\x27\xd0\x0b\x27\xd8\x13\x16\xd4\x13\x23\xd0\x0c\x23\xd8\x12\x15\x94\x2e\xd0\x0f\x35\xd0\x0f\x35\xa0\x33\xd4\x23\x33\xd0\x0f\x35\xd0\x0f\x35\xd0\x08\x35\xd8\x07\x0a\x8d\x68\x80\x7f\x80\x7f\xd8\x0f\x14\x88\x75\xdd\x07\x11\x90\x23\x95\x7c\xd1\x07\x24\xd4\x07\x24\xf0\x00\x01\x05\x1c\xd8\x0f\x12\x8c\x7c\xd0\x08\x1b\xdd\x0b\x0f\x90\x03\x89\x39\x8c\x39\xd0\x04\x14", -}; -static - struct _PyCode_DEF(294) -_collections_abc_toplevel_consts_47 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 147, - }, - .co_consts = & _collections_abc_toplevel_consts_47_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_47_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 489, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__type_repr._ascii.ob_base, - .co_qualname = & const_str__type_repr._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_47_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x23\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x07\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x9d\x03\x53\x00\x7c\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x02\x64\x03\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x7c\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_48_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Callable.__call__", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_48_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_kwds._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(6) -_collections_abc_toplevel_consts_48_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 15, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 512, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_48_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__call__), - .co_qualname = & _collections_abc_toplevel_consts_48_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_40_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_48_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__call__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_48_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_Callable._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -_collections_abc_toplevel_consts_48_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Callable.__subclasshook__", -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_48_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_48_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_48_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 516, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_17_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & _collections_abc_toplevel_consts_48_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_17_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_48_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_Callable._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_48_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_48_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_48_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__call__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - & const_str__CallableGenericAlias._ascii.ob_base, - &_Py_ID(__class_getitem__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[93]; - } -_collections_abc_toplevel_consts_48_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 92, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x15\xf0\x00\x01\x05\x15\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x15\xf0\x06\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xd0\x24\x39\xd1\x18\x3a\xd4\x18\x3a\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_48 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_48_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_48_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 508, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Callable._ascii.ob_base, - .co_qualname = & const_str_Callable._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_48_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x06\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[347]; - } -_collections_abc_toplevel_consts_50_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 346, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x73\x65\x74\x20\x69\x73\x20\x61\x20\x66\x69\x6e\x69\x74\x65\x2c\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x63\x6f\x6e\x74\x61\x69\x6e\x73\x5f\x5f\x2c\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x0a\x20\x20\x20\x20\x54\x6f\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x61\x72\x69\x73\x6f\x6e\x73\x20\x28\x70\x72\x65\x73\x75\x6d\x61\x62\x6c\x79\x20\x66\x6f\x72\x20\x73\x70\x65\x65\x64\x2c\x20\x61\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x65\x6d\x61\x6e\x74\x69\x63\x73\x20\x61\x72\x65\x20\x66\x69\x78\x65\x64\x29\x2c\x20\x72\x65\x64\x65\x66\x69\x6e\x65\x20\x5f\x5f\x6c\x65\x5f\x5f\x20\x61\x6e\x64\x20\x5f\x5f\x67\x65\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x77\x69\x6c\x6c\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x66\x6f\x6c\x6c\x6f\x77\x20\x73\x75\x69\x74\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - Py_False, - Py_True, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Set._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - &_Py_ID(len), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -_collections_abc_toplevel_consts_50_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__le__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[98]; - } -_collections_abc_toplevel_consts_50_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 97, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0b\x0e\x88\x74\x89\x39\x8c\x39\x95\x73\x98\x35\x91\x7a\x94\x7a\xd2\x0b\x21\xd0\x0b\x21\xd8\x13\x18\x90\x35\xd8\x14\x18\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\x88\x44\xd8\x0f\x13\x98\x35\xd0\x0f\x20\xd0\x0f\x20\xd8\x17\x1c\x90\x75\x90\x75\xf0\x03\x00\x10\x21\xe0\x0f\x13\x88\x74", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_elem = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "elem", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_other._ascii.ob_base, - & const_str_elem._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(154) -_collections_abc_toplevel_consts_50_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 77, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 541, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__le__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x04\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x7c\x00\x44\x00\x5d\x09\x7d\x02\x7c\x02\x7c\x01\x76\x01\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x0a\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Set._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - &_Py_ID(len), - &_Py_ID(__le__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -_collections_abc_toplevel_consts_50_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__lt__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[67]; - } -_collections_abc_toplevel_consts_50_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 66, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0f\x12\x90\x34\x89\x79\x8c\x79\x9d\x33\x98\x75\x99\x3a\x9c\x3a\xd2\x0f\x25\xd0\x0f\x3c\xa8\x24\xaf\x2b\xaa\x2b\xb0\x65\xd1\x2a\x3c\xd4\x2a\x3c\xd0\x08\x3c", -}; -static - struct _PyCode_DEF(164) -_collections_abc_toplevel_consts_50_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 82, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 551, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__lt__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\x6f\x14\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Set._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - &_Py_ID(len), - &_Py_ID(__ge__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -_collections_abc_toplevel_consts_50_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__gt__", -}; -static - struct _PyCode_DEF(164) -_collections_abc_toplevel_consts_50_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 82, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 556, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__gt__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x04\x00\x00\x00\x00\x6f\x14\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -_collections_abc_toplevel_consts_50_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__ge__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[98]; - } -_collections_abc_toplevel_consts_50_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 97, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0b\x0e\x88\x74\x89\x39\x8c\x39\x95\x73\x98\x35\x91\x7a\x94\x7a\xd2\x0b\x21\xd0\x0b\x21\xd8\x13\x18\x90\x35\xd8\x14\x19\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\x88\x44\xd8\x0f\x13\x98\x34\xd0\x0f\x1f\xd0\x0f\x1f\xd8\x17\x1c\x90\x75\x90\x75\xf0\x03\x00\x10\x20\xe0\x0f\x13\x88\x74", -}; -static - struct _PyCode_DEF(154) -_collections_abc_toplevel_consts_50_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 77, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 561, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__ge__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x7c\x01\x44\x00\x5d\x09\x7d\x02\x7c\x02\x7c\x00\x76\x01\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x0a\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -_collections_abc_toplevel_consts_50_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__eq__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[67]; - } -_collections_abc_toplevel_consts_50_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 66, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0f\x12\x90\x34\x89\x79\x8c\x79\x9d\x43\xa0\x05\x99\x4a\x9c\x4a\xd2\x0f\x26\xd0\x0f\x3d\xa8\x34\xaf\x3b\xaa\x3b\xb0\x75\xd1\x2b\x3d\xd4\x2b\x3d\xd0\x08\x3d", -}; -static - struct _PyCode_DEF(164) -_collections_abc_toplevel_consts_50_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 82, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 571, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__eq__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x14\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[189]; - } -_collections_abc_toplevel_consts_50_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 188, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x20\x61\x6e\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x20\x66\x72\x6f\x6d\x20\x61\x6e\x79\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x69\x6e\x70\x75\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4d\x75\x73\x74\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x74\x68\x69\x73\x20\x6d\x65\x74\x68\x6f\x64\x20\x69\x66\x20\x74\x68\x65\x20\x63\x6c\x61\x73\x73\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f\x72\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x61\x63\x63\x65\x70\x74\x20\x61\x6e\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x66\x6f\x72\x20\x61\x6e\x20\x69\x6e\x70\x75\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_50_consts_8_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__from_iterable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_from_iterable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -_collections_abc_toplevel_consts_50_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set._from_iterable", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -_collections_abc_toplevel_consts_50_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0e\x00\x10\x13\x88\x73\x90\x32\x89\x77\x8c\x77\x88\x0e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_it = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "it", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_it._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(24) -_collections_abc_toplevel_consts_50_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 12, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_8_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 576, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__from_iterable._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_50_consts_8_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x02\x00\x7c\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -_collections_abc_toplevel_consts_50_consts_9_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__and__..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[40]; - } -_collections_abc_toplevel_consts_50_consts_9_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 39, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x22\x4d\xd0\x22\x4d\xa8\x55\xb8\x75\xc8\x04\xb8\x7d\xb8\x7d\xa0\x35\xb8\x7d\xb8\x7d\xb8\x7d\xb8\x7d\xd0\x22\x4d\xd0\x22\x4d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_9_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_self._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(36) -_collections_abc_toplevel_consts_50_consts_9_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 588, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_9_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_9_consts_1_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_9_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0a\x7d\x01\x7c\x01\x89\x02\x76\x00\xaf\x06\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0b\x64\x00\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & _collections_abc_toplevel_consts_50_consts_9_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Iterable._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - & const_str__from_iterable._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -_collections_abc_toplevel_consts_50_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__and__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[69]; - } -_collections_abc_toplevel_consts_50_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 68, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xdd\x0f\x19\x98\x25\xa5\x18\xd1\x0f\x2a\xd4\x0f\x2a\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xd0\x22\x4d\xd0\x22\x4d\xd0\x22\x4d\xd0\x22\x4d\xb0\x65\xd0\x22\x4d\xd1\x22\x4d\xd4\x22\x4d\xd1\x0f\x4d\xd4\x0f\x4d\xd0\x08\x4d", -}; -static - struct _PyCode_DEF(126) -_collections_abc_toplevel_consts_50_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 63, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_9_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 585, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__and__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_9_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x89\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[50]; - } -_collections_abc_toplevel_consts_50_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 49, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if two sets have a null intersection.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_50_consts_10_consts_0._ascii.ob_base, - Py_False, - Py_True, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_isdisjoint = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "isdisjoint", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_50_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.isdisjoint", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[44]; - } -_collections_abc_toplevel_consts_50_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 43, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x15\x1a\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\x88\x45\xd8\x0f\x14\x98\x04\x88\x7d\x88\x7d\xd8\x17\x1c\x90\x75\x90\x75\xf0\x03\x00\x10\x1d\xe0\x0f\x13\x88\x74", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_10_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_other._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(30) -_collections_abc_toplevel_consts_50_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 15, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_10_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 592, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_isdisjoint._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_50_consts_10_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x44\x00\x5d\x09\x7d\x02\x7c\x02\x7c\x00\x76\x00\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x0a\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -_collections_abc_toplevel_consts_50_consts_11_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__or__..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[48]; - } -_collections_abc_toplevel_consts_50_consts_11_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 47, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd0\x10\x35\xd0\x10\x35\x90\x71\xb0\x31\xd0\x10\x35\xd0\x10\x35\xa8\x61\x90\x11\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35\xd0\x10\x35", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_e = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_11_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_s._ascii.ob_base, - & const_str_e._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(36) -_collections_abc_toplevel_consts_50_consts_11_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 602, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_11_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_11_consts_1_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_11_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0b\x7d\x01\x7c\x01\x44\x00\x5d\x06\x7d\x02\x7c\x02\x56\x00\x97\x01\x01\x00\x8c\x07\x8c\x0c\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & _collections_abc_toplevel_consts_50_consts_11_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -_collections_abc_toplevel_consts_50_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__or__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[70]; - } -_collections_abc_toplevel_consts_50_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 69, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x18\xd1\x0f\x2a\xd4\x0f\x2a\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xd8\x10\x35\xd0\x10\x35\x98\x54\xa0\x35\x98\x4d\xd0\x10\x35\xd1\x10\x35\xd4\x10\x35\x88\x05\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xa0\x35\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_chain = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "chain", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_other._ascii.ob_base, - & const_str_chain._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(128) -_collections_abc_toplevel_consts_50_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 64, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_11_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 599, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__or__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_11_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x01\x84\x00\x7c\x00\x7c\x01\x66\x02\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -_collections_abc_toplevel_consts_50_consts_12_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__sub__..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[58]; - } -_collections_abc_toplevel_consts_50_consts_12_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 57, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xa8\x55\xd8\x26\x2b\xb0\x35\xd0\x26\x38\xd0\x26\x38\xf0\x03\x00\x24\x29\xd8\x26\x38\xd0\x26\x38\xd0\x26\x38\xd0\x26\x38\xf0\x03\x01\x23\x3a\xf0\x00\x01\x23\x3a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_12_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_other._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(36) -_collections_abc_toplevel_consts_50_consts_12_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 612, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_12_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_12_consts_1_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_12_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0a\x7d\x01\x7c\x01\x89\x02\x76\x01\xaf\x06\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0b\x64\x00\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & _collections_abc_toplevel_consts_50_consts_12_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Set._ascii.ob_base, - & const_str_Iterable._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - & const_str__from_iterable._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -_collections_abc_toplevel_consts_50_consts_12_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__sub__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[126]; - } -_collections_abc_toplevel_consts_50_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 125, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x03\x09\x2f\xdd\x13\x1d\x98\x65\xa5\x58\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x26\xdd\x17\x25\xd0\x10\x25\xd8\x14\x18\xd7\x14\x27\xd2\x14\x27\xa8\x05\xd1\x14\x2e\xd4\x14\x2e\x88\x45\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xf0\x00\x01\x23\x3a\xb0\x64\xf0\x00\x01\x23\x3a\xf1\x00\x01\x23\x3a\xf4\x00\x01\x23\x3a\xf1\x00\x01\x10\x3a\xf4\x00\x01\x10\x3a\xf0\x00\x01\x09\x3a", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -_collections_abc_toplevel_consts_50_consts_12_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = " `", -}; -static - struct _PyCode_DEF(210) -_collections_abc_toplevel_consts_50_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 105, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_12_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 607, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_50_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__sub__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_12_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x31\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x01\x66\x01\x64\x01\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -_collections_abc_toplevel_consts_50_consts_13_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__rsub__..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[58]; - } -_collections_abc_toplevel_consts_50_consts_13_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 57, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xa8\x55\xd8\x26\x2b\xb0\x34\xd0\x26\x37\xd0\x26\x37\xf0\x03\x00\x24\x29\xd8\x26\x37\xd0\x26\x37\xd0\x26\x37\xd0\x26\x37\xf0\x03\x01\x23\x39\xf0\x00\x01\x23\x39", -}; -static - struct _PyCode_DEF(36) -_collections_abc_toplevel_consts_50_consts_13_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 620, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_9_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_13_consts_1_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_13_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x0a\x7d\x01\x7c\x01\x89\x02\x76\x01\xaf\x06\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0b\x64\x00\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & _collections_abc_toplevel_consts_50_consts_13_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -_collections_abc_toplevel_consts_50_consts_13_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__rsub__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[126]; - } -_collections_abc_toplevel_consts_50_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 125, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x03\x09\x2f\xdd\x13\x1d\x98\x65\xa5\x58\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x26\xdd\x17\x25\xd0\x10\x25\xd8\x14\x18\xd7\x14\x27\xd2\x14\x27\xa8\x05\xd1\x14\x2e\xd4\x14\x2e\x88\x45\xd8\x0f\x13\xd7\x0f\x22\xd2\x0f\x22\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xf0\x00\x01\x23\x39\xb0\x65\xf0\x00\x01\x23\x39\xf1\x00\x01\x23\x39\xf4\x00\x01\x23\x39\xf1\x00\x01\x10\x39\xf4\x00\x01\x10\x39\xf0\x00\x01\x09\x39", -}; -static - struct _PyCode_DEF(210) -_collections_abc_toplevel_consts_50_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 105, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_13_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 615, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__rsub__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_13_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x31\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x89\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x89\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -_collections_abc_toplevel_consts_50_consts_14_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set.__xor__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[83]; - } -_collections_abc_toplevel_consts_50_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 82, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x13\xd1\x0f\x25\xd4\x0f\x25\xf0\x00\x03\x09\x2f\xdd\x13\x1d\x98\x65\xa5\x58\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x26\xdd\x17\x25\xd0\x10\x25\xd8\x14\x18\xd7\x14\x27\xd2\x14\x27\xa8\x05\xd1\x14\x2e\xd4\x14\x2e\x88\x45\xd8\x10\x14\x90\x75\x91\x0c\xa0\x15\xa8\x14\xa1\x1c\xd1\x0f\x2e\xd0\x08\x2e", -}; -static - struct _PyCode_DEF(164) -_collections_abc_toplevel_consts_50_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 82, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 623, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__xor__), - .co_qualname = & _collections_abc_toplevel_consts_50_consts_14_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x31\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x7c\x01\x7a\x0a\x00\x00\x7c\x01\x7c\x00\x7a\x0a\x00\x00\x7a\x07\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[556]; - } -_collections_abc_toplevel_consts_50_consts_15_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 555, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x6f\x6d\x70\x75\x74\x65\x20\x74\x68\x65\x20\x68\x61\x73\x68\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x61\x20\x73\x65\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x77\x65\x20\x64\x6f\x6e\x27\x74\x20\x64\x65\x66\x69\x6e\x65\x20\x5f\x5f\x68\x61\x73\x68\x5f\x5f\x3a\x20\x6e\x6f\x74\x20\x61\x6c\x6c\x20\x73\x65\x74\x73\x20\x61\x72\x65\x20\x68\x61\x73\x68\x61\x62\x6c\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x42\x75\x74\x20\x69\x66\x20\x79\x6f\x75\x20\x64\x65\x66\x69\x6e\x65\x20\x61\x20\x68\x61\x73\x68\x61\x62\x6c\x65\x20\x73\x65\x74\x20\x74\x79\x70\x65\x2c\x20\x69\x74\x73\x20\x5f\x5f\x68\x61\x73\x68\x5f\x5f\x20\x73\x68\x6f\x75\x6c\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x63\x61\x6c\x6c\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x63\x6f\x6d\x70\x61\x74\x69\x62\x6c\x65\x20\x5f\x5f\x65\x71\x5f\x5f\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x41\x6c\x6c\x20\x73\x65\x74\x73\x20\x6f\x75\x67\x68\x74\x20\x74\x6f\x20\x63\x6f\x6d\x70\x61\x72\x65\x20\x65\x71\x75\x61\x6c\x20\x69\x66\x20\x74\x68\x65\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2c\x20\x72\x65\x67\x61\x72\x64\x6c\x65\x73\x73\x20\x6f\x66\x20\x68\x6f\x77\x20\x74\x68\x65\x79\x20\x61\x72\x65\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x65\x64\x2c\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x67\x61\x72\x64\x6c\x65\x73\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x72\x64\x65\x72\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x6c\x65\x6d\x65\x6e\x74\x73\x3b\x20\x73\x6f\x20\x74\x68\x65\x72\x65\x27\x73\x20\x6e\x6f\x74\x20\x6d\x75\x63\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x72\x65\x65\x64\x6f\x6d\x20\x66\x6f\x72\x20\x5f\x5f\x65\x71\x5f\x5f\x20\x6f\x72\x20\x5f\x5f\x68\x61\x73\x68\x5f\x5f\x2e\x20\x20\x57\x65\x20\x6d\x61\x74\x63\x68\x20\x74\x68\x65\x20\x61\x6c\x67\x6f\x72\x69\x74\x68\x6d\x20\x75\x73\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x62\x79\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x2d\x69\x6e\x20\x66\x72\x6f\x7a\x65\x6e\x73\x65\x74\x20\x74\x79\x70\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[3]; - } -const_int_1927868237 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 3, - }, - .ob_digit = { 28493, 26065, 1 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_1927868237 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 854126413, 1 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_89869747 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 19891, 2742 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_89869747 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 89869747 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[3]; - } -const_int_3644798167 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 3, - }, - .ob_digit = { 13527, 12926, 3 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_3644798167 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 423572695, 3 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_69069 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 3533, 2 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_69069 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 69069 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_907133923 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 17379, 27683 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_907133923 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 907133923 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_590923713 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 18369, 18033 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_590923713 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 590923713 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & _collections_abc_toplevel_consts_50_consts_15_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & const_int_1927868237.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], - & const_int_89869747.ob_base.ob_base, - & const_int_3644798167.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 11], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 25], - & const_int_69069.ob_base.ob_base, - & const_int_907133923.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & const_int_590923713.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_maxsize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "maxsize", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_maxsize._ascii.ob_base, - &_Py_ID(len), - & const_str_hash._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__hash = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_hash", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -_collections_abc_toplevel_consts_50_consts_15_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set._hash", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[211]; - } -_collections_abc_toplevel_consts_50_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 210, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x1e\x00\x0f\x12\x8c\x6b\x88\x03\xd8\x0f\x10\x90\x33\x89\x77\x98\x11\x89\x7b\x88\x04\xdd\x0c\x0f\x90\x04\x89\x49\x8c\x49\x88\x01\xd8\x0c\x16\x98\x21\x98\x61\x99\x25\xd1\x0c\x20\x88\x01\xd8\x08\x09\x88\x54\x89\x09\x88\x01\xd8\x11\x15\xf0\x00\x03\x09\x16\xf0\x00\x03\x09\x16\x88\x41\xdd\x11\x15\x90\x61\x91\x17\x94\x17\x88\x42\xd8\x0c\x0d\x90\x22\x98\x02\x98\x62\x99\x08\x91\x2f\xa0\x48\xd1\x12\x2c\xb0\x1a\xd1\x11\x3b\xd1\x0c\x3b\x88\x41\xd8\x0c\x0d\x90\x14\x89\x49\x88\x41\x88\x41\xd8\x08\x09\x88\x61\x90\x32\x89\x67\x98\x21\x98\x72\x99\x27\xd1\x0d\x22\xd1\x08\x22\x88\x01\xd8\x0c\x0d\x90\x05\x89\x49\x98\x09\xd1\x0c\x21\x88\x01\xd8\x08\x09\x88\x54\x89\x09\x88\x01\xd8\x0b\x0c\x88\x73\x8a\x37\x88\x37\xd8\x0c\x0d\x90\x14\x98\x01\x91\x18\x89\x4d\x88\x41\xd8\x0b\x0c\x90\x02\x8a\x37\x88\x37\xd8\x10\x19\x88\x41\xd8\x0f\x10\x88\x08", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_MAX = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MAX", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_MASK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MASK", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_n = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "n", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_h = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "h", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_hx = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "hx", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -_collections_abc_toplevel_consts_50_consts_15_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_MAX._ascii.ob_base, - & const_str_MASK._ascii.ob_base, - & const_str_n._ascii.ob_base, - & const_str_h._ascii.ob_base, - & const_str_x._ascii.ob_base, - & const_str_hx._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(284) -_collections_abc_toplevel_consts_50_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 142, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts_15_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 632, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__hash._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_50_consts_15_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x01\x7c\x01\x7a\x05\x00\x00\x64\x02\x7a\x00\x00\x00\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x64\x03\x7c\x03\x64\x02\x7a\x00\x00\x00\x7a\x05\x00\x00\x7d\x04\x7c\x04\x7c\x02\x7a\x0e\x00\x00\x7d\x04\x7c\x00\x44\x00\x5d\x27\x7d\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x04\x7c\x06\x7c\x06\x64\x04\x7a\x03\x00\x00\x7a\x0c\x00\x00\x64\x05\x7a\x0c\x00\x00\x64\x06\x7a\x05\x00\x00\x7a\x19\x00\x00\x7d\x04\x7c\x04\x7c\x02\x7a\x0e\x00\x00\x7d\x04\x8c\x28\x7c\x04\x7c\x04\x64\x07\x7a\x09\x00\x00\x7c\x04\x64\x08\x7a\x09\x00\x00\x7a\x0c\x00\x00\x7a\x19\x00\x00\x7d\x04\x7c\x04\x64\x09\x7a\x05\x00\x00\x64\x0a\x7a\x00\x00\x00\x7d\x04\x7c\x04\x7c\x02\x7a\x0e\x00\x00\x7d\x04\x7c\x04\x7c\x01\x6b\x04\x00\x00\x00\x00\x72\x08\x7c\x04\x7c\x02\x64\x02\x7a\x00\x00\x00\x7a\x17\x00\x00\x7d\x04\x7c\x04\x64\x0b\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x0c\x7d\x04\x7c\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -_collections_abc_toplevel_consts_50_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - & const_str_Set._ascii.ob_base, - & _collections_abc_toplevel_consts_50_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_50_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_4.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_7.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_8.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_9.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_10.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_11.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_12.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_13.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_14.ob_base.ob_base, - & _collections_abc_toplevel_consts_50_consts_15.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[22]; - }_object; - } -_collections_abc_toplevel_consts_50_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 22, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - &_Py_ID(__le__), - &_Py_ID(__lt__), - &_Py_ID(__gt__), - &_Py_ID(__ge__), - &_Py_ID(__eq__), - & const_str_classmethod._ascii.ob_base, - & const_str__from_iterable._ascii.ob_base, - &_Py_ID(__and__), - &_Py_ID(__rand__), - & const_str_isdisjoint._ascii.ob_base, - &_Py_ID(__or__), - &_Py_ID(__ror__), - &_Py_ID(__sub__), - &_Py_ID(__rsub__), - &_Py_ID(__xor__), - &_Py_ID(__rxor__), - & const_str__hash._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[269]; - } -_collections_abc_toplevel_consts_50_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 268, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x08\x05\x08\xf0\x00\x08\x05\x08\xf0\x14\x00\x11\x13\x80\x49\xf0\x04\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x14\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x0a\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x0a\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x00\x08\x05\x14\xf0\x14\x03\x05\x3e\xf0\x00\x03\x05\x3e\xf0\x00\x03\x05\x3e\xf0\x0a\x00\x06\x11\xf0\x02\x06\x05\x17\xf0\x00\x06\x05\x17\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x06\x05\x17\xf0\x10\x03\x05\x4e\x01\xf0\x00\x03\x05\x4e\x01\xf0\x00\x03\x05\x4e\x01\xf0\x0a\x00\x10\x17\x80\x48\xf0\x04\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x00\x05\x05\x14\xf0\x0e\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x0c\x00\x0f\x15\x80\x47\xf0\x04\x06\x05\x3a\xf0\x00\x06\x05\x3a\xf0\x00\x06\x05\x3a\xf0\x10\x06\x05\x39\xf0\x00\x06\x05\x39\xf0\x00\x06\x05\x39\xf0\x10\x05\x05\x2f\xf0\x00\x05\x05\x2f\xf0\x00\x05\x05\x2f\xf0\x0e\x00\x10\x17\x80\x48\xf0\x04\x1f\x05\x11\xf0\x00\x1f\x05\x11\xf0\x00\x1f\x05\x11\xf0\x00\x1f\x05\x11\xf0\x00\x1f\x05\x11", -}; -static - struct _PyCode_DEF(128) -_collections_abc_toplevel_consts_50 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 64, - }, - .co_consts = & _collections_abc_toplevel_consts_50_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_50_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 528, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Set._ascii.ob_base, - .co_qualname = & const_str_Set._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_50_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x84\x00\x5a\x09\x65\x0a\x64\x08\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x64\x09\x84\x00\x5a\x0c\x65\x0c\x5a\x0d\x64\x0a\x84\x00\x5a\x0e\x64\x0b\x84\x00\x5a\x0f\x65\x0f\x5a\x10\x64\x0c\x84\x00\x5a\x11\x64\x0d\x84\x00\x5a\x12\x64\x0e\x84\x00\x5a\x13\x65\x13\x5a\x14\x64\x0f\x84\x00\x5a\x15\x64\x10\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[392]; - } -_collections_abc_toplevel_consts_52_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 391, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x6d\x75\x74\x61\x62\x6c\x65\x20\x73\x65\x74\x20\x69\x73\x20\x61\x20\x66\x69\x6e\x69\x74\x65\x2c\x20\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x63\x6f\x6e\x74\x61\x69\x6e\x73\x5f\x5f\x2c\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x2c\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x61\x64\x64\x28\x29\x2c\x20\x61\x6e\x64\x20\x64\x69\x73\x63\x61\x72\x64\x28\x29\x2e\x0a\x0a\x20\x20\x20\x20\x54\x6f\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x61\x72\x69\x73\x6f\x6e\x73\x20\x28\x70\x72\x65\x73\x75\x6d\x61\x62\x6c\x79\x20\x66\x6f\x72\x20\x73\x70\x65\x65\x64\x2c\x20\x61\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x65\x6d\x61\x6e\x74\x69\x63\x73\x20\x61\x72\x65\x20\x66\x69\x78\x65\x64\x29\x2c\x20\x61\x6c\x6c\x20\x79\x6f\x75\x20\x68\x61\x76\x65\x20\x74\x6f\x20\x64\x6f\x20\x69\x73\x20\x72\x65\x64\x65\x66\x69\x6e\x65\x20\x5f\x5f\x6c\x65\x5f\x5f\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x74\x68\x65\x6e\x20\x74\x68\x65\x20\x6f\x74\x68\x65\x72\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x77\x69\x6c\x6c\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x66\x6f\x6c\x6c\x6f\x77\x20\x73\x75\x69\x74\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -_collections_abc_toplevel_consts_52_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Add an element.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_52_consts_3_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_52_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.add", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_52_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & _collections_abc_toplevel_consts_52_consts_3_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 683, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(add), - .co_qualname = & _collections_abc_toplevel_consts_52_consts_3_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[57]; - } -_collections_abc_toplevel_consts_52_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 56, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Remove an element. Do not raise an exception if absent.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_52_consts_4_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_discard = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "discard", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -_collections_abc_toplevel_consts_52_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.discard", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_52_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & _collections_abc_toplevel_consts_52_consts_4_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 688, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_discard._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_52_consts_4_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[54]; - } -_collections_abc_toplevel_consts_52_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 53, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Remove an element. If not a member, raise a KeyError.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_52_consts_5_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_KeyError._ascii.ob_base, - & const_str_discard._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_remove = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "remove", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_52_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.remove", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[50]; - } -_collections_abc_toplevel_consts_52_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 49, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x10\x98\x04\xd0\x0b\x1c\xd0\x0b\x1c\xdd\x12\x1a\x98\x35\x91\x2f\x94\x2f\xd0\x0c\x21\xd8\x08\x0c\x8f\x0c\x8a\x0c\x90\x55\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", -}; -static - struct _PyCode_DEF(86) -_collections_abc_toplevel_consts_52_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 43, - }, - .co_consts = & _collections_abc_toplevel_consts_52_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 693, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_remove._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_52_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x76\x01\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[51]; - } -_collections_abc_toplevel_consts_52_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 50, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the popped value. Raise KeyError if empty.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_52_consts_6_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(iter), - &_Py_ID(next), - & const_str_StopIteration._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - & const_str_discard._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_52_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.pop", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[90]; - } -_collections_abc_toplevel_consts_52_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 89, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0d\x11\x90\x24\x89\x5a\x8c\x5a\x88\x02\xf0\x02\x03\x09\x25\xdd\x14\x18\x98\x12\x91\x48\x94\x48\x88\x45\x88\x45\xf8\xdd\x0f\x1c\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xdd\x12\x1a\xa0\x04\xd0\x0c\x24\xf0\x03\x01\x09\x25\xf8\xf8\xf8\xe0\x08\x0c\x8f\x0c\x8a\x0c\x90\x55\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x0f\x14\x88\x0c", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -_collections_abc_toplevel_consts_52_consts_6_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = "\x91\x0f\x21\x00\xa1\x13\x34\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_it._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(156) -_collections_abc_toplevel_consts_52_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 78, - }, - .co_consts = & _collections_abc_toplevel_consts_52_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_6_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 699, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_pop._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_52_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x16\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x09\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[55]; - } -_collections_abc_toplevel_consts_52_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 54, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "This is slow (creates N new iterators!) but effective.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_52_consts_7_consts_0._ascii.ob_base, - Py_True, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_pop._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -_collections_abc_toplevel_consts_52_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.clear", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -_collections_abc_toplevel_consts_52_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x04\x09\x11\xf0\x02\x01\x0d\x1b\xd8\x10\x14\x97\x08\x92\x08\x91\x0a\x94\x0a\x90\x0a\xf0\x03\x01\x0d\x1b\xf8\xe5\x0f\x17\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_52_consts_7_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x16\x18\x00\x98\x0a\x26\x03\xa5\x01\x26\x03", -}; -static - struct _PyCode_DEF(82) -_collections_abc_toplevel_consts_52_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 41, - }, - .co_consts = & _collections_abc_toplevel_consts_52_consts_7_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_7_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 709, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(clear), - .co_qualname = & _collections_abc_toplevel_consts_52_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x15\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(add), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -_collections_abc_toplevel_consts_52_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.__ior__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[40]; - } -_collections_abc_toplevel_consts_52_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 39, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x15\x17\xf0\x00\x01\x09\x1c\xf0\x00\x01\x09\x1c\x88\x45\xd8\x0c\x10\x8f\x48\x8a\x48\x90\x55\x89\x4f\x8c\x4f\x88\x4f\x88\x4f\xd8\x0f\x13\x88\x0b", -}; -static - struct _PyCode_DEF(58) -_collections_abc_toplevel_consts_52_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 717, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__ior__), - .co_qualname = & _collections_abc_toplevel_consts_52_consts_8_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_discard._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_52_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.__iand__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[48]; - } -_collections_abc_toplevel_consts_52_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 47, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x16\x1a\x98\x52\x91\x69\xf0\x00\x01\x09\x20\xf0\x00\x01\x09\x20\x88\x45\xd8\x0c\x10\x8f\x4c\x8a\x4c\x98\x15\xd1\x0c\x1f\xd4\x0c\x1f\xd0\x0c\x1f\xd0\x0c\x1f\xd8\x0f\x13\x88\x0b", -}; -static - struct _PyCode_DEF(64) -_collections_abc_toplevel_consts_52_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 32, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 722, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iand__), - .co_qualname = & _collections_abc_toplevel_consts_52_consts_9_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x7c\x01\x7a\x0a\x00\x00\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(clear), - &_Py_ID(isinstance), - & const_str_Set._ascii.ob_base, - & const_str__from_iterable._ascii.ob_base, - & const_str_discard._ascii.ob_base, - &_Py_ID(add), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_52_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.__ixor__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[131]; - } -_collections_abc_toplevel_consts_52_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 130, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0d\x90\x14\x88\x3a\x88\x3a\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\xe5\x13\x1d\x98\x62\xa5\x23\xd1\x13\x26\xd4\x13\x26\xf0\x00\x01\x0d\x2d\xd8\x15\x19\xd7\x15\x28\xd2\x15\x28\xa8\x12\xd1\x15\x2c\xd4\x15\x2c\x90\x02\xd8\x19\x1b\xf0\x00\x04\x0d\x24\xf0\x00\x04\x0d\x24\x90\x05\xd8\x13\x18\x98\x44\x90\x3d\x90\x3d\xd8\x14\x18\x97\x4c\x92\x4c\xa0\x15\xd1\x14\x27\xd4\x14\x27\xd0\x14\x27\xd0\x14\x27\xe0\x14\x18\x97\x48\x92\x48\x98\x55\x91\x4f\x94\x4f\x90\x4f\x90\x4f\xd8\x0f\x13\x88\x0b", -}; -static - struct _PyCode_DEF(244) -_collections_abc_toplevel_consts_52_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 122, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 727, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__ixor__), - .co_qualname = & _collections_abc_toplevel_consts_52_consts_10_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x75\x00\x72\x15\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x5e\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x15\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x44\x00\x5d\x31\x7d\x02\x7c\x02\x7c\x00\x76\x00\x72\x16\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x1c\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x32\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_52_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(clear), - & const_str_discard._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_52_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSet.__isub__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[68]; - } -_collections_abc_toplevel_consts_52_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 67, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0d\x90\x14\x88\x3a\x88\x3a\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\xe0\x19\x1b\xf0\x00\x01\x0d\x24\xf0\x00\x01\x0d\x24\x90\x05\xd8\x10\x14\x97\x0c\x92\x0c\x98\x55\xd1\x10\x23\xd4\x10\x23\xd0\x10\x23\xd0\x10\x23\xd8\x0f\x13\x88\x0b", -}; -static - struct _PyCode_DEF(108) -_collections_abc_toplevel_consts_52_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 54, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 740, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_52_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__isub__), - .co_qualname = & _collections_abc_toplevel_consts_52_consts_11_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x75\x00\x72\x15\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x7c\x01\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -_collections_abc_toplevel_consts_52_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_MutableSet._ascii.ob_base, - & _collections_abc_toplevel_consts_52_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_52_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_4.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_7.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_8.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_9.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_10.ob_base.ob_base, - & _collections_abc_toplevel_consts_52_consts_11.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -_collections_abc_toplevel_consts_52_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(add), - & const_str_discard._ascii.ob_base, - & const_str_remove._ascii.ob_base, - & const_str_pop._ascii.ob_base, - &_Py_ID(clear), - &_Py_ID(__ior__), - &_Py_ID(__iand__), - &_Py_ID(__ixor__), - &_Py_ID(__isub__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[195]; - } -_collections_abc_toplevel_consts_52_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 194, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x09\x05\x08\xf0\x00\x09\x05\x08\xf0\x16\x00\x11\x13\x80\x49\xe0\x05\x13\xf0\x02\x02\x05\x22\xf0\x00\x02\x05\x22\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x22\xf0\x08\x00\x06\x14\xf0\x02\x02\x05\x22\xf0\x00\x02\x05\x22\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x22\xf0\x08\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf0\x00\x04\x05\x1c\xf0\x0c\x08\x05\x15\xf0\x00\x08\x05\x15\xf0\x00\x08\x05\x15\xf0\x14\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x0a\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x00\x03\x05\x14\xf0\x0a\x0b\x05\x14\xf0\x00\x0b\x05\x14\xf0\x00\x0b\x05\x14\xf0\x1a\x06\x05\x14\xf0\x00\x06\x05\x14\xf0\x00\x06\x05\x14\xf0\x00\x06\x05\x14\xf0\x00\x06\x05\x14", -}; -static - struct _PyCode_DEF(108) -_collections_abc_toplevel_consts_52 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 54, - }, - .co_consts = & _collections_abc_toplevel_consts_52_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_52_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 669, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_MutableSet._ascii.ob_base, - .co_qualname = & const_str_MutableSet._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_52_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x05\x84\x00\x5a\x08\x64\x06\x84\x00\x5a\x09\x64\x07\x84\x00\x5a\x0a\x64\x08\x84\x00\x5a\x0b\x64\x09\x84\x00\x5a\x0c\x64\x0a\x84\x00\x5a\x0d\x64\x0b\x84\x00\x5a\x0e\x64\x0c\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[199]; - } -_collections_abc_toplevel_consts_54_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 198, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x4d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x61\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x20\x66\x6f\x72\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x69\x6e\x67\x20\x6b\x65\x79\x2f\x76\x61\x6c\x75\x65\x0a\x20\x20\x20\x20\x70\x61\x69\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_54_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping.__getitem__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -_collections_abc_toplevel_consts_54_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0e\x16\x88\x0e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_key._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_54_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 767, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getitem__), - .co_qualname = & _collections_abc_toplevel_consts_54_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[61]; - } -_collections_abc_toplevel_consts_54_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 60, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_54_consts_6_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -_collections_abc_toplevel_consts_54_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping.get", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[54]; - } -_collections_abc_toplevel_consts_54_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 53, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x09\x1b\xd8\x13\x17\x98\x03\x94\x39\xd0\x0c\x1c\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x1b\xf0\x00\x01\x09\x1b\xf0\x00\x01\x09\x1b\xd8\x13\x1a\x88\x4e\x88\x4e\x88\x4e\xf0\x03\x01\x09\x1b\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_54_consts_6_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x07\x0a\x00\x8a\x0c\x19\x03\x98\x01\x19\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_key._ascii.ob_base, - &_Py_ID(default), - }, - }, -}; -static - struct _PyCode_DEF(56) -_collections_abc_toplevel_consts_54_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & _collections_abc_toplevel_consts_54_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_54_consts_6_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 771, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(get), - .co_qualname = & _collections_abc_toplevel_consts_54_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x02\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -_collections_abc_toplevel_consts_54_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping.__contains__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[60]; - } -_collections_abc_toplevel_consts_54_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 59, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x05\x09\x18\xd8\x0c\x10\x90\x13\x8c\x49\x88\x49\xf0\x08\x00\x14\x18\x90\x34\xf8\xf5\x07\x00\x10\x18\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xd8\x13\x18\x90\x35\x90\x35\xf0\x03\x01\x09\x19\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_54_consts_7_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x08\x0c\x00\x8c\x0a\x1a\x03\x99\x01\x1a\x03", -}; -static - struct _PyCode_DEF(58) -_collections_abc_toplevel_consts_54_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_54_consts_7_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 778, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__contains__), - .co_qualname = & _collections_abc_toplevel_consts_54_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[59]; - } -_collections_abc_toplevel_consts_54_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 58, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "D.keys() -> a set-like object providing a view on D's keys", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_54_consts_8_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_KeysView._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -_collections_abc_toplevel_consts_54_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping.keys", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -_collections_abc_toplevel_consts_54_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x17\x98\x04\x89\x7e\x8c\x7e\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(32) -_collections_abc_toplevel_consts_54_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & _collections_abc_toplevel_consts_54_consts_8_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 786, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(keys), - .co_qualname = & _collections_abc_toplevel_consts_54_consts_8_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[61]; - } -_collections_abc_toplevel_consts_54_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 60, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "D.items() -> a set-like object providing a view on D's items", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_54_consts_9_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_ItemsView._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -_collections_abc_toplevel_consts_54_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping.items", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -_collections_abc_toplevel_consts_54_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x18\x98\x14\x89\x7f\x8c\x7f\xd0\x08\x1e", -}; -static - struct _PyCode_DEF(32) -_collections_abc_toplevel_consts_54_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & _collections_abc_toplevel_consts_54_consts_9_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 790, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(items), - .co_qualname = & _collections_abc_toplevel_consts_54_consts_9_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[55]; - } -_collections_abc_toplevel_consts_54_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 54, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "D.values() -> an object providing a view on D's values", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_54_consts_10_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_ValuesView._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_54_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping.values", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[17]; - } -_collections_abc_toplevel_consts_54_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 16, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x19\x98\x24\xd1\x0f\x1f\xd4\x0f\x1f\xd0\x08\x1f", -}; -static - struct _PyCode_DEF(32) -_collections_abc_toplevel_consts_54_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & _collections_abc_toplevel_consts_54_consts_10_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 794, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(values), - .co_qualname = & _collections_abc_toplevel_consts_54_consts_10_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_dict = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dict", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_54_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Mapping._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - & const_str_dict._ascii.ob_base, - &_Py_ID(items), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_54_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Mapping.__eq__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[70]; - } -_collections_abc_toplevel_consts_54_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 69, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x17\xd1\x0f\x29\xd4\x0f\x29\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0f\x13\x90\x44\x97\x4a\x92\x4a\x91\x4c\x94\x4c\xd1\x0f\x21\xd4\x0f\x21\xa5\x54\xa8\x25\xaf\x2b\xaa\x2b\xa9\x2d\xac\x2d\xd1\x25\x38\xd4\x25\x38\xd2\x0f\x38\xd0\x08\x38", -}; -static - struct _PyCode_DEF(194) -_collections_abc_toplevel_consts_54_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 97, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 798, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__eq__), - .co_qualname = & _collections_abc_toplevel_consts_54_consts_11_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -_collections_abc_toplevel_consts_54_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_Mapping._ascii.ob_base, - & _collections_abc_toplevel_consts_54_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 64], - & _collections_abc_toplevel_consts_54_consts_4.ob_base.ob_base, - Py_None, - & _collections_abc_toplevel_consts_54_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_54_consts_7.ob_base.ob_base, - & _collections_abc_toplevel_consts_54_consts_8.ob_base.ob_base, - & _collections_abc_toplevel_consts_54_consts_9.ob_base.ob_base, - & _collections_abc_toplevel_consts_54_consts_10.ob_base.ob_base, - & _collections_abc_toplevel_consts_54_consts_11.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -_collections_abc_toplevel_consts_54_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - &_Py_ID(__abc_tpflags__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__getitem__), - &_Py_ID(get), - &_Py_ID(__contains__), - &_Py_ID(keys), - &_Py_ID(items), - &_Py_ID(values), - &_Py_ID(__eq__), - &_Py_ID(__reversed__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[166]; - } -_collections_abc_toplevel_consts_54_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 165, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x05\x05\x08\xf0\x00\x05\x05\x08\xf0\x0e\x00\x11\x13\x80\x49\xf0\x06\x00\x17\x1d\x80\x4f\xe0\x05\x13\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x17\xf0\x06\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x0e\x06\x05\x18\xf0\x00\x06\x05\x18\xf0\x00\x06\x05\x18\xf0\x10\x02\x05\x1e\xf0\x00\x02\x05\x1e\xf0\x00\x02\x05\x1e\xf0\x08\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x00\x02\x05\x1f\xf0\x08\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x00\x02\x05\x20\xf0\x08\x03\x05\x39\xf0\x00\x03\x05\x39\xf0\x00\x03\x05\x39\xf0\x0a\x00\x14\x18\x80\x4c\x80\x4c\x80\x4c", -}; -static - struct _PyCode_DEF(90) -_collections_abc_toplevel_consts_54 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 45, - }, - .co_consts = & _collections_abc_toplevel_consts_54_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 754, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Mapping._ascii.ob_base, - .co_qualname = & const_str_Mapping._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x5a\x05\x65\x06\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x0c\x64\x06\x84\x01\x5a\x08\x64\x07\x84\x00\x5a\x09\x64\x08\x84\x00\x5a\x0a\x64\x09\x84\x00\x5a\x0b\x64\x0a\x84\x00\x5a\x0c\x64\x0b\x84\x00\x5a\x0d\x64\x05\x5a\x0e\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__mapping = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_mapping", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_56_consts_1 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__mapping._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -_collections_abc_toplevel_consts_56_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MappingView.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[14]; - } -_collections_abc_toplevel_consts_56_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 13, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x18\x1f\x88\x04\x8c\x0d\x88\x0d\x88\x0d", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_mapping = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mapping", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_56_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_mapping._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(20) -_collections_abc_toplevel_consts_56_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 812, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_56_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & _collections_abc_toplevel_consts_56_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_56_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_56_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(len), - & const_str__mapping._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_56_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MappingView.__len__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -_collections_abc_toplevel_consts_56_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x12\x90\x34\x94\x3d\xd1\x0f\x21\xd4\x0f\x21\xd0\x08\x21", -}; -static - struct _PyCode_DEF(42) -_collections_abc_toplevel_consts_56_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 815, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__len__), - .co_qualname = & _collections_abc_toplevel_consts_56_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_56_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -_collections_abc_toplevel_consts_56_consts_4_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "{0.__class__.__name__}({0._mapping!r})", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_56_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & _collections_abc_toplevel_consts_56_consts_4_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_56_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_format._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -_collections_abc_toplevel_consts_56_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MappingView.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -_collections_abc_toplevel_consts_56_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x37\xd7\x0f\x3e\xd2\x0f\x3e\xb8\x74\xd1\x0f\x44\xd4\x0f\x44\xd0\x08\x44", -}; -static - struct _PyCode_DEF(44) -_collections_abc_toplevel_consts_56_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & _collections_abc_toplevel_consts_56_consts_4_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 818, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & _collections_abc_toplevel_consts_56_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_56_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_56_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_MappingView._ascii.ob_base, - & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, - & _collections_abc_toplevel_consts_56_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_56_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_56_consts_4.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_collections_abc_toplevel_consts_56_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - &_Py_ID(__init__), - &_Py_ID(__len__), - &_Py_ID(__repr__), - & const_str_classmethod._ascii.ob_base, - & const_str_GenericAlias._ascii.ob_base, - &_Py_ID(__class_getitem__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[88]; - } -_collections_abc_toplevel_consts_56_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 87, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x1b\x80\x49\xf0\x04\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x00\x01\x05\x20\xf0\x06\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x00\x01\x05\x22\xf0\x06\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x00\x01\x05\x45\x01\xf0\x06\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct _PyCode_DEF(58) -_collections_abc_toplevel_consts_56 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & _collections_abc_toplevel_consts_56_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 808, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_MappingView._ascii.ob_base, - .co_qualname = & const_str_MappingView._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_56_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x02\x00\x65\x07\x65\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_58_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_set._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -_collections_abc_toplevel_consts_58_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "KeysView._from_iterable", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[14]; - } -_collections_abc_toplevel_consts_58_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 13, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x12\x90\x32\x89\x77\x8c\x77\x88\x0e", -}; -static - struct _PyCode_DEF(32) -_collections_abc_toplevel_consts_58_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_58_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 828, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__from_iterable._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_58_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_58_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -_collections_abc_toplevel_consts_58_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "KeysView.__contains__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -_collections_abc_toplevel_consts_58_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x12\x90\x64\x94\x6d\xd0\x0f\x23\xd0\x08\x23", -}; -static - struct _PyCode_DEF(20) -_collections_abc_toplevel_consts_58_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 10, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 832, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__contains__), - .co_qualname = & _collections_abc_toplevel_consts_58_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_58_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_58_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "KeysView.__iter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[39]; - } -_collections_abc_toplevel_consts_58_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 38, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x13\x17\x94\x3d\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20", -}; -static - struct _PyCode_DEF(36) -_collections_abc_toplevel_consts_58_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 835, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & _collections_abc_toplevel_consts_58_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_58_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_58_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_KeysView._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_58_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_58_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_58_consts_4.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -_collections_abc_toplevel_consts_58_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - & const_str_classmethod._ascii.ob_base, - & const_str__from_iterable._ascii.ob_base, - &_Py_ID(__contains__), - &_Py_ID(__iter__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[81]; - } -_collections_abc_toplevel_consts_58_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 80, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x10\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x01\x05\x17\xf0\x06\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x00\x01\x05\x24\xf0\x06\x01\x05\x21\xf0\x00\x01\x05\x21\xf0\x00\x01\x05\x21\xf0\x00\x01\x05\x21\xf0\x00\x01\x05\x21", -}; -static - struct _PyCode_DEF(52) -_collections_abc_toplevel_consts_58 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & _collections_abc_toplevel_consts_58_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_58_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 824, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_KeysView._ascii.ob_base, - .co_qualname = & const_str_KeysView._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_58_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x64\x04\x84\x00\x5a\x07\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -_collections_abc_toplevel_consts_60_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ItemsView._from_iterable", -}; -static - struct _PyCode_DEF(32) -_collections_abc_toplevel_consts_60_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_58_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 846, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_50_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__from_iterable._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_60_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_58_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_60_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__mapping._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_60_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ItemsView.__contains__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[86]; - } -_collections_abc_toplevel_consts_60_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 85, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x15\x19\x89\x0a\x88\x03\x88\x55\xf0\x02\x05\x09\x2c\xd8\x10\x14\x94\x0d\x98\x63\xd4\x10\x22\x88\x41\xf0\x08\x00\x14\x15\x98\x05\x90\x3a\xd0\x13\x2b\xa0\x11\xa0\x65\xa2\x1a\xd0\x0c\x2b\xf8\xf5\x07\x00\x10\x18\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xd8\x13\x18\x90\x35\x90\x35\xf0\x03\x01\x09\x19\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_60_consts_3_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x87\x0d\x1e\x00\x9e\x0a\x2c\x03\xab\x01\x2c\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_60_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_item._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(94) -_collections_abc_toplevel_consts_60_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 47, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_60_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_60_consts_3_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 850, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_60_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__contains__), - .co_qualname = & _collections_abc_toplevel_consts_60_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_60_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x5c\x02\x00\x00\x7d\x02\x7d\x03\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x03\x75\x00\x70\x05\x7c\x04\x7c\x03\x6b\x02\x00\x00\x00\x00\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -_collections_abc_toplevel_consts_60_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ItemsView.__iter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[61]; - } -_collections_abc_toplevel_consts_60_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 60, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x13\x17\x94\x3d\xf0\x00\x01\x09\x2c\xf0\x00\x01\x09\x2c\x88\x43\xd8\x13\x16\x98\x04\x9c\x0d\xa0\x63\xd4\x18\x2a\xd0\x12\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xf0\x03\x01\x09\x2c\xf0\x00\x01\x09\x2c", -}; -static - struct _PyCode_DEF(64) -_collections_abc_toplevel_consts_60_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 32, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 859, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & _collections_abc_toplevel_consts_60_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_60_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x13\x7d\x01\x7c\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x56\x00\x97\x01\x01\x00\x8c\x14\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_60_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_ItemsView._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_60_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_60_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_60_consts_4.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[81]; - } -_collections_abc_toplevel_consts_60_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 80, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xe0\x05\x10\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x01\x05\x17\xf0\x06\x07\x05\x2c\xf0\x00\x07\x05\x2c\xf0\x00\x07\x05\x2c\xf0\x12\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c\xf0\x00\x02\x05\x2c", -}; -static - struct _PyCode_DEF(52) -_collections_abc_toplevel_consts_60 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & _collections_abc_toplevel_consts_60_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_58_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 842, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_ItemsView._ascii.ob_base, - .co_qualname = & const_str_ItemsView._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_60_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x03\x84\x00\x5a\x06\x64\x04\x84\x00\x5a\x07\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -_collections_abc_toplevel_consts_62_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ValuesView.__contains__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[66]; - } -_collections_abc_toplevel_consts_62_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 65, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x13\x17\x94\x3d\xf0\x00\x03\x09\x1c\xf0\x00\x03\x09\x1c\x88\x43\xd8\x10\x14\x94\x0d\x98\x63\xd4\x10\x22\x88\x41\xd8\x0f\x10\x90\x45\x88\x7a\x88\x7a\x98\x51\xa0\x25\x9a\x5a\x98\x5a\xd8\x17\x1b\x90\x74\x90\x74\xf0\x03\x00\x1e\x28\xe0\x0f\x14\x88\x75", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_62_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(78) -_collections_abc_toplevel_consts_62_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 39, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 871, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_62_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__contains__), - .co_qualname = & _collections_abc_toplevel_consts_62_consts_2_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_62_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1c\x7d\x02\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x7c\x01\x75\x00\x73\x06\x7c\x03\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x1d\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_62_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ValuesView.__iter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[56]; - } -_collections_abc_toplevel_consts_62_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 55, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x13\x17\x94\x3d\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\x88\x43\xd8\x12\x16\x94\x2d\xa0\x03\xd4\x12\x24\xd0\x0c\x24\xd0\x0c\x24\xd0\x0c\x24\xd0\x0c\x24\xf0\x03\x01\x09\x25\xf0\x00\x01\x09\x25", -}; -static - struct _PyCode_DEF(60) -_collections_abc_toplevel_consts_62_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 30, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_56_consts_1._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 878, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & _collections_abc_toplevel_consts_62_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_62_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x11\x7d\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x12\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_62_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_ValuesView._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_62_consts_2.ob_base.ob_base, - & _collections_abc_toplevel_consts_62_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_62_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__slots__), - &_Py_ID(__contains__), - &_Py_ID(__iter__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[56]; - } -_collections_abc_toplevel_consts_62_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 55, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x10\x12\x80\x49\xf0\x04\x05\x05\x15\xf0\x00\x05\x05\x15\xf0\x00\x05\x05\x15\xf0\x0e\x02\x05\x25\xf0\x00\x02\x05\x25\xf0\x00\x02\x05\x25\xf0\x00\x02\x05\x25\xf0\x00\x02\x05\x25", -}; -static - struct _PyCode_DEF(30) -_collections_abc_toplevel_consts_62 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 15, - }, - .co_consts = & _collections_abc_toplevel_consts_62_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_62_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 867, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_ValuesView._ascii.ob_base, - .co_qualname = & const_str_ValuesView._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_62_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[236]; - } -_collections_abc_toplevel_consts_64_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 235, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x20\x4d\x75\x74\x61\x62\x6c\x65\x4d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x61\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x20\x66\x6f\x72\x20\x61\x73\x73\x6f\x63\x69\x61\x74\x69\x6e\x67\x0a\x20\x20\x20\x20\x6b\x65\x79\x2f\x76\x61\x6c\x75\x65\x20\x70\x61\x69\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x6c\x61\x73\x73\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x63\x6f\x6e\x63\x72\x65\x74\x65\x20\x67\x65\x6e\x65\x72\x69\x63\x20\x69\x6d\x70\x6c\x65\x6d\x65\x6e\x74\x61\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x61\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x65\x74\x68\x6f\x64\x73\x20\x65\x78\x63\x65\x70\x74\x20\x66\x6f\x72\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x73\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x64\x65\x6c\x69\x74\x65\x6d\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x5f\x5f\x69\x74\x65\x72\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -_collections_abc_toplevel_consts_64_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping.__setitem__", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_64_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 897, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__setitem__), - .co_qualname = & _collections_abc_toplevel_consts_64_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -_collections_abc_toplevel_consts_64_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping.__delitem__", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_64_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 901, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__delitem__), - .co_qualname = & _collections_abc_toplevel_consts_64_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_54_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[170]; - } -_collections_abc_toplevel_consts_64_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 169, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x2e\x70\x6f\x70\x28\x6b\x5b\x2c\x64\x5d\x29\x20\x2d\x3e\x20\x76\x2c\x20\x72\x65\x6d\x6f\x76\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6b\x65\x79\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x76\x61\x6c\x75\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x6b\x65\x79\x20\x69\x73\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2c\x20\x64\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x69\x66\x20\x67\x69\x76\x65\x6e\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x4b\x65\x79\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_64_consts_5_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -const_str__MutableMapping__marker = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_MutableMapping__marker", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_KeyError._ascii.ob_base, - & const_str__MutableMapping__marker._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -_collections_abc_toplevel_consts_64_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping.pop", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[85]; - } -_collections_abc_toplevel_consts_64_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 84, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x08\x09\x19\xd8\x14\x18\x98\x13\x94\x49\x88\x45\xf0\x0c\x00\x11\x15\x90\x53\x90\x09\xd8\x13\x18\x88\x4c\xf8\xf5\x0d\x00\x10\x18\xf0\x00\x03\x09\x1b\xf0\x00\x03\x09\x1b\xf0\x00\x03\x09\x1b\xd8\x0f\x16\x98\x24\x9c\x2d\xd0\x0f\x27\xd0\x0f\x27\xd8\x10\x15\xd8\x13\x1a\x88\x4e\x88\x4e\x88\x4e\xf0\x07\x03\x09\x1b\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_64_consts_5_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x08\x0f\x00\x8f\x16\x28\x03\xa7\x01\x28\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_key._ascii.ob_base, - &_Py_ID(default), - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(86) -_collections_abc_toplevel_consts_64_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 43, - }, - .co_consts = & _collections_abc_toplevel_consts_64_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_64_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_64_consts_5_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 907, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_pop._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_64_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_64_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x00\x7c\x01\x3d\x00\x7c\x03\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0f\x01\x00\x7c\x02\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x01\x82\x00\x7c\x02\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[132]; - } -_collections_abc_toplevel_consts_64_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 131, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x2e\x70\x6f\x70\x69\x74\x65\x6d\x28\x29\x20\x2d\x3e\x20\x28\x6b\x2c\x20\x76\x29\x2c\x20\x72\x65\x6d\x6f\x76\x65\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x73\x6f\x6d\x65\x20\x28\x6b\x65\x79\x2c\x20\x76\x61\x6c\x75\x65\x29\x20\x70\x61\x69\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x73\x20\x61\x20\x32\x2d\x74\x75\x70\x6c\x65\x3b\x20\x62\x75\x74\x20\x72\x61\x69\x73\x65\x20\x4b\x65\x79\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x44\x20\x69\x73\x20\x65\x6d\x70\x74\x79\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_64_consts_6_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(next), - &_Py_ID(iter), - & const_str_StopIteration._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_popitem = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "popitem", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_64_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping.popitem", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[90]; - } -_collections_abc_toplevel_consts_64_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 89, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x03\x09\x25\xdd\x12\x16\x95\x74\x98\x44\x91\x7a\x94\x7a\xd1\x12\x22\xd4\x12\x22\x88\x43\x88\x43\xf8\xdd\x0f\x1c\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xf0\x00\x01\x09\x25\xdd\x12\x1a\xa0\x04\xd0\x0c\x24\xf0\x03\x01\x09\x25\xf8\xf8\xf8\xe0\x10\x14\x90\x53\x94\x09\x88\x05\xd8\x0c\x10\x90\x13\x88\x49\xd8\x0f\x12\x90\x45\x88\x7a\xd0\x08\x19", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -_collections_abc_toplevel_consts_64_consts_6_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = "\x82\x1c\x1f\x00\x9f\x13\x32\x03", -}; -static - struct _PyCode_DEF(136) -_collections_abc_toplevel_consts_64_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 68, - }, - .co_consts = & _collections_abc_toplevel_consts_64_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_64_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_64_consts_6_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 921, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_popitem._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_64_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_64_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x16\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x09\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x7c\x01\x3d\x00\x7c\x01\x7c\x02\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -_collections_abc_toplevel_consts_64_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "D.clear() -> None. Remove all items from D.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_64_consts_7_consts_0._ascii.ob_base, - Py_True, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_popitem._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -_collections_abc_toplevel_consts_64_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping.clear", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -_collections_abc_toplevel_consts_64_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x04\x09\x11\xf0\x02\x01\x0d\x1f\xd8\x10\x14\x97\x0c\x92\x0c\x91\x0e\x94\x0e\x90\x0e\xf0\x03\x01\x0d\x1f\xf8\xe5\x0f\x17\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", -}; -static - struct _PyCode_DEF(82) -_collections_abc_toplevel_consts_64_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 41, - }, - .co_consts = & _collections_abc_toplevel_consts_64_consts_7_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_64_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_7_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 933, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(clear), - .co_qualname = & _collections_abc_toplevel_consts_64_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_64_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x15\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[332]; - } -_collections_abc_toplevel_consts_64_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 331, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x44\x2e\x75\x70\x64\x61\x74\x65\x28\x5b\x45\x2c\x20\x5d\x2a\x2a\x46\x29\x20\x2d\x3e\x20\x4e\x6f\x6e\x65\x2e\x20\x20\x55\x70\x64\x61\x74\x65\x20\x44\x20\x66\x72\x6f\x6d\x20\x6d\x61\x70\x70\x69\x6e\x67\x2f\x69\x74\x65\x72\x61\x62\x6c\x65\x20\x45\x20\x61\x6e\x64\x20\x46\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x45\x20\x70\x72\x65\x73\x65\x6e\x74\x20\x61\x6e\x64\x20\x68\x61\x73\x20\x61\x20\x2e\x6b\x65\x79\x73\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2c\x20\x64\x6f\x65\x73\x3a\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x6b\x20\x69\x6e\x20\x45\x3a\x20\x44\x5b\x6b\x5d\x20\x3d\x20\x45\x5b\x6b\x5d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x45\x20\x70\x72\x65\x73\x65\x6e\x74\x20\x61\x6e\x64\x20\x6c\x61\x63\x6b\x73\x20\x2e\x6b\x65\x79\x73\x28\x29\x20\x6d\x65\x74\x68\x6f\x64\x2c\x20\x64\x6f\x65\x73\x3a\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x28\x6b\x2c\x20\x76\x29\x20\x69\x6e\x20\x45\x3a\x20\x44\x5b\x6b\x5d\x20\x3d\x20\x76\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x49\x6e\x20\x65\x69\x74\x68\x65\x72\x20\x63\x61\x73\x65\x2c\x20\x74\x68\x69\x73\x20\x69\x73\x20\x66\x6f\x6c\x6c\x6f\x77\x65\x64\x20\x62\x79\x3a\x20\x66\x6f\x72\x20\x6b\x2c\x20\x76\x20\x69\x6e\x20\x46\x2e\x69\x74\x65\x6d\x73\x28\x29\x3a\x20\x44\x5b\x6b\x5d\x20\x3d\x20\x76\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_64_consts_8_consts_0._ascii.ob_base, - &_Py_ID(keys), - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Mapping._ascii.ob_base, - & const_str_hasattr._ascii.ob_base, - &_Py_ID(keys), - &_Py_ID(items), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -_collections_abc_toplevel_consts_64_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping.update", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[199]; - } -_collections_abc_toplevel_consts_64_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 198, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0c\x00\x0c\x16\x90\x65\x9d\x57\xd1\x0b\x25\xd4\x0b\x25\xf0\x00\x08\x09\x22\xd8\x17\x1c\xf0\x00\x01\x0d\x27\xf0\x00\x01\x0d\x27\x90\x03\xd8\x1c\x21\xa0\x23\x9c\x4a\x90\x04\x90\x53\x91\x09\x90\x09\xf0\x03\x01\x0d\x27\xe5\x0d\x14\x90\x55\x98\x46\xd1\x0d\x23\xd4\x0d\x23\xf0\x00\x05\x09\x22\xd8\x17\x1c\x97\x7a\x92\x7a\x91\x7c\x94\x7c\xf0\x00\x01\x0d\x27\xf0\x00\x01\x0d\x27\x90\x03\xd8\x1c\x21\xa0\x23\x9c\x4a\x90\x04\x90\x53\x91\x09\x90\x09\xf0\x03\x01\x0d\x27\xf0\x06\x00\x1f\x24\xf0\x00\x01\x0d\x22\xf0\x00\x01\x0d\x22\x91\x0a\x90\x03\x90\x55\xd8\x1c\x21\x90\x04\x90\x53\x91\x09\x90\x09\xd8\x1a\x1e\x9f\x2a\x9a\x2a\x99\x2c\x9c\x2c\xf0\x00\x01\x09\x1e\xf0\x00\x01\x09\x1e\x89\x4a\x88\x43\x90\x15\xd8\x18\x1d\x88\x44\x90\x13\x89\x49\x88\x49\xf0\x03\x01\x09\x1e\xf0\x00\x01\x09\x1e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_other._ascii.ob_base, - & const_str_kwds._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(272) -_collections_abc_toplevel_consts_64_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 136, - }, - .co_consts = & _collections_abc_toplevel_consts_64_consts_8_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_64_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 11, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 2, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 941, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_update._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_64_consts_8_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_64_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x11\x7c\x01\x44\x00\x5d\x0d\x7d\x03\x7c\x01\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0e\x6e\x40\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x23\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x0d\x7d\x03\x7c\x01\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0e\x6e\x0d\x7c\x01\x44\x00\x5d\x0a\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0b\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x0a\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x7c\x00\x7c\x03\x3c\x00\x00\x00\x8c\x0b\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[65]; - } -_collections_abc_toplevel_consts_64_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 64, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_64_consts_10_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_setdefault = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "setdefault", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -_collections_abc_toplevel_consts_64_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableMapping.setdefault", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[63]; - } -_collections_abc_toplevel_consts_64_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 62, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x09\x20\xd8\x13\x17\x98\x03\x94\x39\xd0\x0c\x1c\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x20\xf0\x00\x01\x09\x20\xf0\x00\x01\x09\x20\xd8\x18\x1f\x88\x44\x90\x13\x89\x49\x88\x49\x88\x49\xf0\x03\x01\x09\x20\xf8\xf8\xf8\xe0\x0f\x16\x88\x0e", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_64_consts_10_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x07\x0a\x00\x8a\x0f\x1c\x03\x9b\x01\x1c\x03", -}; -static - struct _PyCode_DEF(66) -_collections_abc_toplevel_consts_64_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & _collections_abc_toplevel_consts_64_consts_10_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_54_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_64_consts_10_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 959, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_54_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_setdefault._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_64_consts_10_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_64_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x08\x01\x00\x7c\x02\x7c\x00\x7c\x01\x3c\x00\x00\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_64_consts_11 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - (PyObject *)& _Py_SINGLETON(tuple_empty), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -_collections_abc_toplevel_consts_64_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_MutableMapping._ascii.ob_base, - & _collections_abc_toplevel_consts_64_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_64_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_64_consts_4.ob_base.ob_base, - & _collections_abc_toplevel_consts_64_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_64_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_64_consts_7.ob_base.ob_base, - & _collections_abc_toplevel_consts_64_consts_8.ob_base.ob_base, - Py_None, - & _collections_abc_toplevel_consts_64_consts_10.ob_base.ob_base, - & _collections_abc_toplevel_consts_64_consts_11._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -_collections_abc_toplevel_consts_64_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__setitem__), - &_Py_ID(__delitem__), - & const_str_object._ascii.ob_base, - & const_str__MutableMapping__marker._ascii.ob_base, - & const_str_pop._ascii.ob_base, - & const_str_popitem._ascii.ob_base, - &_Py_ID(clear), - & const_str_update._ascii.ob_base, - & const_str_setdefault._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[196]; - } -_collections_abc_toplevel_consts_64_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 195, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x06\x05\x08\xf0\x00\x06\x05\x08\xf0\x10\x00\x11\x13\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x17\xf0\x06\x00\x06\x14\xf0\x02\x01\x05\x17\xf0\x00\x01\x05\x17\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x17\xf0\x06\x00\x10\x16\x88\x76\x89\x78\x8c\x78\x80\x48\xe0\x1f\x27\xf0\x00\x0c\x05\x19\xf0\x00\x0c\x05\x19\xf0\x00\x0c\x05\x19\xf0\x00\x0c\x05\x19\xf0\x1c\x0a\x05\x1a\xf0\x00\x0a\x05\x1a\xf0\x00\x0a\x05\x1a\xf0\x18\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x10\x05\x1e\xf0\x00\x10\x05\x1e\xf0\x00\x10\x05\x1e\xf0\x00\x10\x05\x1e\xf0\x24\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17\xf0\x00\x06\x05\x17", -}; -static - struct _PyCode_DEF(124) -_collections_abc_toplevel_consts_64 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 62, - }, - .co_consts = & _collections_abc_toplevel_consts_64_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_64_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 886, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_MutableMapping._ascii.ob_base, - .co_qualname = & const_str_MutableMapping._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_64_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x02\x00\x65\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x65\x09\x66\x01\x64\x05\x84\x01\x5a\x0a\x64\x06\x84\x00\x5a\x0b\x64\x07\x84\x00\x5a\x0c\x64\x0b\x64\x08\x84\x01\x5a\x0d\x64\x0c\x64\x0a\x84\x01\x5a\x0e\x64\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[139]; - } -_collections_abc_toplevel_consts_66_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 138, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x6c\x6c\x20\x74\x68\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x6f\x6e\x20\x61\x20\x72\x65\x61\x64\x2d\x6f\x6e\x6c\x79\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x43\x6f\x6e\x63\x72\x65\x74\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x6d\x75\x73\x74\x20\x6f\x76\x65\x72\x72\x69\x64\x65\x20\x5f\x5f\x6e\x65\x77\x5f\x5f\x20\x6f\x72\x20\x5f\x5f\x69\x6e\x69\x74\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_IndexError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -_collections_abc_toplevel_consts_66_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence.__getitem__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -_collections_abc_toplevel_consts_66_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0e\x18\xd0\x08\x18", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_66_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 985, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_67_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getitem__), - .co_qualname = & _collections_abc_toplevel_consts_66_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_True, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_collections_abc_toplevel_consts_66_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence.__iter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[90]; - } -_collections_abc_toplevel_consts_66_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 89, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x0c\x0d\x88\x01\xf0\x02\x06\x09\x13\xf0\x02\x03\x0d\x17\xd8\x14\x18\x98\x11\x94\x47\x90\x01\xd8\x16\x17\x90\x07\x90\x07\x90\x07\xd8\x10\x11\x90\x51\x91\x06\x90\x01\xf0\x07\x03\x0d\x17\xf8\xf5\x08\x00\x10\x1a\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xd8\x0c\x12\x88\x46\x88\x46\xf0\x03\x01\x09\x13\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_collections_abc_toplevel_consts_66_consts_5_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x86\x13\x19\x00\x99\x0a\x27\x03\xa6\x01\x27\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(84) -_collections_abc_toplevel_consts_66_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 42, - }, - .co_consts = & _collections_abc_toplevel_consts_66_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_66_consts_5_exceptiontable.ob_base.ob_base, - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 989, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & _collections_abc_toplevel_consts_66_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x64\x01\x7d\x01\x09\x00\x09\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x56\x00\x97\x01\x01\x00\x7c\x01\x64\x03\x7a\x0d\x00\x00\x7d\x01\x8c\x12\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -_collections_abc_toplevel_consts_66_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence.__contains__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[52]; - } -_collections_abc_toplevel_consts_66_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 51, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x11\x15\xf0\x00\x02\x09\x1c\xf0\x00\x02\x09\x1c\x88\x41\xd8\x0f\x10\x90\x45\x88\x7a\x88\x7a\x98\x51\xa0\x25\x9a\x5a\x98\x5a\xd8\x17\x1b\x90\x74\x90\x74\xf0\x03\x00\x1e\x28\xe0\x0f\x14\x88\x75", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(42) -_collections_abc_toplevel_consts_66_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 999, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__contains__), - .co_qualname = & _collections_abc_toplevel_consts_66_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x44\x00\x5d\x0f\x7d\x02\x7c\x02\x7c\x01\x75\x00\x73\x06\x7c\x02\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x03\x01\x00\x64\x01\x53\x00\x8c\x10\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_range = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "range", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(reversed), - & const_str_range._ascii.ob_base, - &_Py_ID(len), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -_collections_abc_toplevel_consts_66_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence.__reversed__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[69]; - } -_collections_abc_toplevel_consts_66_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 68, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xdd\x11\x19\x9d\x25\xa5\x03\xa0\x44\xa1\x09\xa4\x09\xd1\x1a\x2a\xd4\x1a\x2a\xd1\x11\x2b\xd4\x11\x2b\xf0\x00\x01\x09\x1a\xf0\x00\x01\x09\x1a\x88\x41\xd8\x12\x16\x90\x71\x94\x27\x88\x4d\x88\x4d\x88\x4d\x88\x4d\xf0\x03\x01\x09\x1a\xf0\x00\x01\x09\x1a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_7_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_i._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(118) -_collections_abc_toplevel_consts_66_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 59, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 1005, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__reversed__), - .co_qualname = & _collections_abc_toplevel_consts_66_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x0c\x7d\x01\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x0d\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[231]; - } -_collections_abc_toplevel_consts_66_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 230, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x2e\x69\x6e\x64\x65\x78\x28\x76\x61\x6c\x75\x65\x2c\x20\x5b\x73\x74\x61\x72\x74\x2c\x20\x5b\x73\x74\x6f\x70\x5d\x5d\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x20\x2d\x2d\x20\x72\x65\x74\x75\x72\x6e\x20\x66\x69\x72\x73\x74\x20\x69\x6e\x64\x65\x78\x20\x6f\x66\x20\x76\x61\x6c\x75\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x73\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x72\x65\x73\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x53\x75\x70\x70\x6f\x72\x74\x69\x6e\x67\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x64\x20\x73\x74\x6f\x70\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x2c\x20\x62\x75\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x63\x6f\x6d\x6d\x65\x6e\x64\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & _collections_abc_toplevel_consts_66_consts_10_consts_0._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_max._ascii.ob_base, - &_Py_ID(len), - & const_str_IndexError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_66_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence.index", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[195]; - } -_collections_abc_toplevel_consts_66_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 194, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0e\x00\x0c\x11\xd0\x0b\x1c\xa0\x15\xa8\x11\xa2\x19\xa0\x19\xdd\x14\x17\x9d\x03\x98\x44\x99\x09\x9c\x09\xa0\x45\xd1\x18\x29\xa8\x31\xd1\x14\x2d\xd4\x14\x2d\x88\x45\xd8\x0b\x0f\xd0\x0b\x1b\xa0\x04\xa0\x71\xa2\x08\xa0\x08\xd8\x0c\x10\x95\x43\x98\x04\x91\x49\x94\x49\xd1\x0c\x1d\x88\x44\xe0\x0c\x11\x88\x01\xd8\x0e\x12\x88\x6c\x98\x61\xa0\x24\x9a\x68\x98\x68\xf0\x02\x03\x0d\x16\xd8\x14\x18\x98\x11\x94\x47\x90\x01\x90\x01\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xd8\x10\x15\x90\x05\xf0\x03\x01\x0d\x16\xf8\xf8\xf8\xe0\x0f\x10\x90\x45\x88\x7a\x88\x7a\x98\x51\xa0\x25\x9a\x5a\x98\x5a\xd8\x17\x18\x90\x08\xd8\x0c\x0d\x90\x11\x89\x46\x88\x41\xf0\x0f\x00\x0f\x13\x88\x6c\x98\x61\xa0\x24\x9a\x68\x98\x68\xf5\x10\x00\x0f\x19\xd0\x08\x18", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -_collections_abc_toplevel_consts_66_consts_10_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x0e\x08\x41\x17\x00\xc1\x17\x0a\x41\x24\x03\xc1\x23\x01\x41\x24\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_stop = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "stop", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_10_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_start._ascii.ob_base, - & const_str_stop._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(270) -_collections_abc_toplevel_consts_66_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 135, - }, - .co_consts = & _collections_abc_toplevel_consts_66_consts_10_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_66_consts_10_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1009, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_index._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_66_consts_10_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x81\x26\x7c\x02\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x20\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7a\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x03\x81\x18\x7c\x03\x64\x02\x6b\x00\x00\x00\x00\x00\x72\x12\x7c\x03\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x7d\x03\x7c\x02\x7d\x04\x7c\x03\x81\x06\x7c\x04\x7c\x03\x6b\x00\x00\x00\x00\x00\x72\x33\x09\x00\x7c\x00\x7c\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x10\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x1d\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x05\x7c\x01\x75\x00\x73\x06\x7c\x05\x7c\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x04\x53\x00\x7c\x04\x64\x03\x7a\x0d\x00\x00\x7d\x04\x7c\x03\xae\x2d\x7c\x04\x7c\x03\x6b\x00\x00\x00\x00\x00\xb0\x33\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[67]; - } -_collections_abc_toplevel_consts_66_consts_11_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 66, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S.count(value) -> integer -- return number of occurrences of value", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -_collections_abc_toplevel_consts_66_consts_11_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence.count..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[48]; - } -_collections_abc_toplevel_consts_66_consts_11_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 47, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x12\x3f\xd0\x12\x3f\x98\x11\xa0\x61\xa8\x35\xa0\x6a\xa0\x6a\xb0\x41\xb8\x15\xb2\x4a\xb0\x4a\x90\x31\xb0\x4a\xb0\x4a\xb0\x4a\xb0\x4a\xd0\x12\x3f\xd0\x12\x3f", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_11_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_v._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(48) -_collections_abc_toplevel_consts_66_consts_11_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & importlib__bootstrap_external_toplevel_consts_6_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1034, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & _collections_abc_toplevel_consts_66_consts_11_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & _collections_abc_toplevel_consts_66_consts_11_consts_1_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_11_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x10\x7d\x01\x7c\x01\x89\x02\x75\x00\x73\x06\x7c\x01\x89\x02\x6b\x02\x00\x00\x00\x00\xaf\x0c\x64\x00\x56\x00\x97\x01\x01\x00\x8c\x11\x64\x01\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_66_consts_11_consts_0._ascii.ob_base, - & _collections_abc_toplevel_consts_66_consts_11_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_sum = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sum", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_sum._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -_collections_abc_toplevel_consts_66_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Sequence.count", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[39]; - } -_collections_abc_toplevel_consts_66_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 38, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xe5\x0f\x12\xd0\x12\x3f\xd0\x12\x3f\xd0\x12\x3f\xd0\x12\x3f\x98\x64\xd0\x12\x3f\xd1\x12\x3f\xd4\x12\x3f\xd1\x0f\x3f\xd4\x0f\x3f\xd0\x08\x3f", -}; -static - struct _PyCode_DEF(58) -_collections_abc_toplevel_consts_66_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & _collections_abc_toplevel_consts_66_consts_11_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1032, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_50_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_count._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_66_consts_11_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x01\x66\x01\x64\x01\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_66_consts_12 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -_collections_abc_toplevel_consts_66_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_Sequence._ascii.ob_base, - & _collections_abc_toplevel_consts_66_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], - & _collections_abc_toplevel_consts_66_consts_4.ob_base.ob_base, - & _collections_abc_toplevel_consts_66_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_66_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_66_consts_7.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & _collections_abc_toplevel_consts_66_consts_10.ob_base.ob_base, - & _collections_abc_toplevel_consts_66_consts_11.ob_base.ob_base, - & _collections_abc_toplevel_consts_66_consts_12._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -_collections_abc_toplevel_consts_66_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - &_Py_ID(__abc_tpflags__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__getitem__), - &_Py_ID(__iter__), - &_Py_ID(__contains__), - &_Py_ID(__reversed__), - & const_str_index._ascii.ob_base, - & const_str_count._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[155]; - } -_collections_abc_toplevel_consts_66_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 154, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0c\x00\x11\x13\x80\x49\xf0\x06\x00\x17\x1d\x80\x4f\xe0\x05\x13\xf0\x02\x01\x05\x19\xf0\x00\x01\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x19\xf0\x06\x08\x05\x13\xf0\x00\x08\x05\x13\xf0\x00\x08\x05\x13\xf0\x14\x04\x05\x15\xf0\x00\x04\x05\x15\xf0\x00\x04\x05\x15\xf0\x0c\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\xf0\x08\x15\x05\x19\xf0\x00\x15\x05\x19\xf0\x00\x15\x05\x19\xf0\x00\x15\x05\x19\xf0\x2e\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01", -}; -static - struct _PyCode_DEF(80) -_collections_abc_toplevel_consts_66 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 40, - }, - .co_consts = & _collections_abc_toplevel_consts_66_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 973, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_Sequence._ascii.ob_base, - .co_qualname = & const_str_Sequence._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x5a\x05\x65\x06\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x05\x84\x00\x5a\x08\x64\x06\x84\x00\x5a\x09\x64\x07\x84\x00\x5a\x0a\x64\x0c\x64\x0a\x84\x01\x5a\x0b\x64\x0b\x84\x00\x5a\x0c\x64\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[78]; - } -_collections_abc_toplevel_consts_68_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 77, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x54\x68\x69\x73\x20\x75\x6e\x69\x66\x69\x65\x73\x20\x62\x79\x74\x65\x73\x20\x61\x6e\x64\x20\x62\x79\x74\x65\x61\x72\x72\x61\x79\x2e\x0a\x0a\x20\x20\x20\x20\x58\x58\x58\x20\x53\x68\x6f\x75\x6c\x64\x20\x61\x64\x64\x20\x61\x6c\x6c\x20\x74\x68\x65\x69\x72\x20\x6d\x65\x74\x68\x6f\x64\x73\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_68_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_ByteString._ascii.ob_base, - & _collections_abc_toplevel_consts_68_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - Py_None, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[32]; - } -_collections_abc_toplevel_consts_68_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 31, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x03\x05\x08\xf0\x00\x03\x05\x08\xf0\x0a\x00\x11\x13\x80\x49\x80\x49\x80\x49", -}; -static - struct _PyCode_DEF(22) -_collections_abc_toplevel_consts_68 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 11, - }, - .co_consts = & _collections_abc_toplevel_consts_68_consts._object.ob_base.ob_base, - .co_names = & abc_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1042, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_ByteString._ascii.ob_base, - .co_qualname = & const_str_ByteString._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_68_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[175]; - } -_collections_abc_toplevel_consts_70_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 174, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x6c\x6c\x20\x74\x68\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x6f\x6e\x20\x61\x20\x72\x65\x61\x64\x2d\x77\x72\x69\x74\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x43\x6f\x6e\x63\x72\x65\x74\x65\x20\x73\x75\x62\x63\x6c\x61\x73\x73\x65\x73\x20\x6d\x75\x73\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x20\x5f\x5f\x6e\x65\x77\x5f\x5f\x20\x6f\x72\x20\x5f\x5f\x69\x6e\x69\x74\x5f\x5f\x2c\x0a\x20\x20\x20\x20\x5f\x5f\x67\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x73\x65\x74\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x64\x65\x6c\x69\x74\x65\x6d\x5f\x5f\x2c\x20\x5f\x5f\x6c\x65\x6e\x5f\x5f\x2c\x20\x61\x6e\x64\x20\x69\x6e\x73\x65\x72\x74\x28\x29\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -_collections_abc_toplevel_consts_70_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.__setitem__", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_index._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_70_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1063, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__setitem__), - .co_qualname = & _collections_abc_toplevel_consts_70_consts_3_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -_collections_abc_toplevel_consts_70_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.__delitem__", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_70_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1067, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_67_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__delitem__), - .co_qualname = & _collections_abc_toplevel_consts_70_consts_4_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_66_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[52]; - } -_collections_abc_toplevel_consts_70_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 51, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S.insert(index, value) -- insert value before index", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_70_consts_5_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_70_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.insert", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[11]; - } -_collections_abc_toplevel_consts_70_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 10, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x0f\x19\xd0\x08\x18", -}; -static - struct _PyCode_DEF(16) -_collections_abc_toplevel_consts_70_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts_5_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_66_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1071, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_insert._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_70_consts_5_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[59]; - } -_collections_abc_toplevel_consts_70_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 58, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S.append(value) -- append value to the end of the sequence", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_70_consts_6_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_insert._ascii.ob_base, - &_Py_ID(len), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_70_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.append", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[35]; - } -_collections_abc_toplevel_consts_70_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 34, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x08\x0c\x8f\x0b\x8a\x0b\x95\x43\x98\x04\x91\x49\x94\x49\x98\x75\xd1\x08\x25\xd4\x08\x25\xd0\x08\x25\xd0\x08\x25\xd0\x08\x25", -}; -static - struct _PyCode_DEF(76) -_collections_abc_toplevel_consts_70_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 38, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts_6_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_70_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1076, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(append), - .co_qualname = & _collections_abc_toplevel_consts_70_consts_6_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -_collections_abc_toplevel_consts_70_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S.clear() -> None -- remove all items from S", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & _collections_abc_toplevel_consts_70_consts_7_consts_0._ascii.ob_base, - Py_True, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_pop._ascii.ob_base, - & const_str_IndexError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -_collections_abc_toplevel_consts_70_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.clear", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -_collections_abc_toplevel_consts_70_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x04\x09\x11\xf0\x02\x01\x0d\x1b\xd8\x10\x14\x97\x08\x92\x08\x91\x0a\x94\x0a\x90\x0a\xf0\x03\x01\x0d\x1b\xf8\xe5\x0f\x19\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8", -}; -static - struct _PyCode_DEF(82) -_collections_abc_toplevel_consts_70_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 41, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts_7_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_70_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = & _collections_abc_toplevel_consts_52_consts_7_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1080, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(clear), - .co_qualname = & _collections_abc_toplevel_consts_70_consts_7_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x15\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -_collections_abc_toplevel_consts_70_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S.reverse() -- reverse *IN PLACE*", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & _collections_abc_toplevel_consts_70_consts_8_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(len), - & const_str_range._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_reverse = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "reverse", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -_collections_abc_toplevel_consts_70_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.reverse", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[95]; - } -_collections_abc_toplevel_consts_70_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 94, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0c\x0f\x90\x04\x89\x49\x8c\x49\x88\x01\xdd\x11\x16\x90\x71\x98\x21\x91\x74\x91\x1b\x94\x1b\xf0\x00\x01\x09\x38\xf0\x00\x01\x09\x38\x88\x41\xd8\x23\x27\xa8\x01\xa8\x21\xa9\x03\xa8\x41\xa9\x05\xa4\x3b\xb0\x04\xb0\x51\xb4\x07\xd0\x0c\x20\x88\x44\x90\x11\x89\x47\x90\x54\x98\x21\x98\x41\x99\x23\x98\x61\x99\x25\x91\x5b\x90\x5b\xf0\x03\x01\x09\x38\xf0\x00\x01\x09\x38", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_n._ascii.ob_base, - & const_str_i._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(148) -_collections_abc_toplevel_consts_70_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 74, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts_8_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_70_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1088, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_reverse._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_70_consts_8_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x7a\x02\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x25\x7d\x02\x7c\x00\x7c\x01\x7c\x02\x7a\x0a\x00\x00\x64\x02\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x7c\x00\x7c\x02\x3c\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7a\x0a\x00\x00\x64\x02\x7a\x0a\x00\x00\x3c\x00\x00\x00\x8c\x26\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[78]; - } -_collections_abc_toplevel_consts_70_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 77, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S.extend(iterable) -- extend sequence by appending elements from the iterable", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_70_consts_9_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_list._ascii.ob_base, - &_Py_ID(append), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_70_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.extend", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -_collections_abc_toplevel_consts_70_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x11\x90\x54\x88\x3e\x88\x3e\xdd\x15\x19\x98\x26\x91\x5c\x94\x5c\x88\x46\xd8\x11\x17\xf0\x00\x01\x09\x1b\xf0\x00\x01\x09\x1b\x88\x41\xd8\x0c\x10\x8f\x4b\x8a\x4b\x98\x01\x89\x4e\x8c\x4e\x88\x4e\x88\x4e\xf0\x03\x01\x09\x1b\xf0\x00\x01\x09\x1b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(values), - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(96) -_collections_abc_toplevel_consts_70_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 48, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts_9_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_70_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1094, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(extend), - .co_qualname = & _collections_abc_toplevel_consts_70_consts_9_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x75\x00\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x44\x00\x5d\x17\x7d\x02\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x18\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[154]; - } -_collections_abc_toplevel_consts_70_consts_11_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 153, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x2e\x70\x6f\x70\x28\x5b\x69\x6e\x64\x65\x78\x5d\x29\x20\x2d\x3e\x20\x69\x74\x65\x6d\x20\x2d\x2d\x20\x72\x65\x6d\x6f\x76\x65\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x69\x74\x65\x6d\x20\x61\x74\x20\x69\x6e\x64\x65\x78\x20\x28\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x61\x73\x74\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x20\x49\x6e\x64\x65\x78\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x6c\x69\x73\x74\x20\x69\x73\x20\x65\x6d\x70\x74\x79\x20\x6f\x72\x20\x69\x6e\x64\x65\x78\x20\x69\x73\x20\x6f\x75\x74\x20\x6f\x66\x20\x72\x61\x6e\x67\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & _collections_abc_toplevel_consts_70_consts_11_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -_collections_abc_toplevel_consts_70_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.pop", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -_collections_abc_toplevel_consts_70_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x0d\x11\x90\x15\x8c\x4b\x88\x01\xd8\x0c\x10\x90\x15\x88\x4b\xd8\x0f\x10\x88\x08", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_index._ascii.ob_base, - & const_str_v._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(28) -_collections_abc_toplevel_consts_70_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 14, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts_11_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1101, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_pop._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_70_consts_11_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x7c\x01\x3d\x00\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[119]; - } -_collections_abc_toplevel_consts_70_consts_12_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 118, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x2e\x72\x65\x6d\x6f\x76\x65\x28\x76\x61\x6c\x75\x65\x29\x20\x2d\x2d\x20\x72\x65\x6d\x6f\x76\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x63\x63\x75\x72\x72\x65\x6e\x63\x65\x20\x6f\x66\x20\x76\x61\x6c\x75\x65\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x52\x61\x69\x73\x65\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x70\x72\x65\x73\x65\x6e\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & _collections_abc_toplevel_consts_70_consts_12_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_index._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_collections_abc_toplevel_consts_70_consts_12_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.remove", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[31]; - } -_collections_abc_toplevel_consts_70_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 30, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x0d\x11\x90\x14\x97\x1a\x92\x1a\x98\x45\xd1\x11\x22\xd4\x11\x22\xd0\x0c\x23\xd0\x0c\x23\xd0\x0c\x23", -}; -static - struct _PyCode_DEF(50) -_collections_abc_toplevel_consts_70_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts_12_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_70_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1109, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_remove._ascii.ob_base, - .co_qualname = & _collections_abc_toplevel_consts_70_consts_12_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(extend), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -_collections_abc_toplevel_consts_70_consts_13_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MutableSequence.__iadd__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -_collections_abc_toplevel_consts_70_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0b\x8a\x0b\x90\x46\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd8\x0f\x13\x88\x0b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_collections_abc_toplevel_consts_70_consts_13_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(values), - }, - }, -}; -static - struct _PyCode_DEF(48) -_collections_abc_toplevel_consts_70_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_70_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1115, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_70_consts_13_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iadd__), - .co_qualname = & _collections_abc_toplevel_consts_70_consts_13_qualname._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -_collections_abc_toplevel_consts_70_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & const_str_MutableSequence._ascii.ob_base, - & _collections_abc_toplevel_consts_70_consts_1._ascii.ob_base, - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_70_consts_3.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_4.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_6.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_7.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_8.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_9.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & _collections_abc_toplevel_consts_70_consts_11.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_12.ob_base.ob_base, - & _collections_abc_toplevel_consts_70_consts_13.ob_base.ob_base, - Py_None, - & codecs_toplevel_consts_28_consts_22._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -_collections_abc_toplevel_consts_70_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__slots__), - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__setitem__), - &_Py_ID(__delitem__), - & const_str_insert._ascii.ob_base, - &_Py_ID(append), - &_Py_ID(clear), - & const_str_reverse._ascii.ob_base, - &_Py_ID(extend), - & const_str_pop._ascii.ob_base, - & const_str_remove._ascii.ob_base, - &_Py_ID(__iadd__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[227]; - } -_collections_abc_toplevel_consts_70_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 226, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x04\x05\x08\xf0\x00\x04\x05\x08\xf0\x0c\x00\x11\x13\x80\x49\xe0\x05\x13\xf0\x02\x01\x05\x19\xf0\x00\x01\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x19\xf0\x06\x00\x06\x14\xf0\x02\x01\x05\x19\xf0\x00\x01\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x01\x05\x19\xf0\x06\x00\x06\x14\xf0\x02\x02\x05\x19\xf0\x00\x02\x05\x19\xf1\x03\x00\x06\x14\x84\x5e\xf0\x02\x02\x05\x19\xf0\x08\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x00\x02\x05\x26\xf0\x08\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x04\x05\x38\xf0\x00\x04\x05\x38\xf0\x00\x04\x05\x38\xf0\x0c\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x00\x05\x05\x1b\xf0\x0e\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x00\x06\x05\x11\xf0\x10\x04\x05\x24\xf0\x00\x04\x05\x24\xf0\x00\x04\x05\x24\xf0\x0c\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14", -}; -static - struct _PyCode_DEF(132) -_collections_abc_toplevel_consts_70 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 66, - }, - .co_consts = & _collections_abc_toplevel_consts_70_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_consts_70_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1054, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_MutableSequence._ascii.ob_base, - .co_qualname = & const_str_MutableSequence._ascii.ob_base, - .co_linetable = & _collections_abc_toplevel_consts_70_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x65\x05\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x05\x64\x04\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x65\x05\x64\x05\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x64\x06\x84\x00\x5a\x09\x64\x07\x84\x00\x5a\x0a\x64\x08\x84\x00\x5a\x0b\x64\x09\x84\x00\x5a\x0c\x64\x0f\x64\x0b\x84\x01\x5a\x0d\x64\x0c\x84\x00\x5a\x0e\x64\x0d\x84\x00\x5a\x0f\x64\x0e\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[72]; - }_object; - } -_collections_abc_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 72, - }, - .ob_item = { - & _collections_abc_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & _collections_abc_toplevel_consts_2._object.ob_base.ob_base, - Py_None, - Py_Ellipsis, - & _collections_abc_toplevel_consts_5.ob_base.ob_base, - & _collections_abc_toplevel_consts_6._object.ob_base.ob_base, - & _collections_abc_toplevel_consts_7._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_empty), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & const_int_1000.ob_base.ob_base, - &_Py_STR(empty), - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _collections_abc_toplevel_consts_13.ob_base.ob_base, - & _collections_abc_toplevel_consts_14.ob_base.ob_base, - & _collections_abc_toplevel_consts_15.ob_base.ob_base, - & _collections_abc_toplevel_consts_16.ob_base.ob_base, - & _collections_abc_toplevel_consts_17.ob_base.ob_base, - & const_str_Hashable._ascii.ob_base, - & abc_toplevel_consts_17._object.ob_base.ob_base, - & _collections_abc_toplevel_consts_20.ob_base.ob_base, - & const_str_Awaitable._ascii.ob_base, - & _collections_abc_toplevel_consts_22.ob_base.ob_base, - & const_str_Coroutine._ascii.ob_base, - & _collections_abc_toplevel_consts_24.ob_base.ob_base, - & const_str_AsyncIterable._ascii.ob_base, - & _collections_abc_toplevel_consts_26.ob_base.ob_base, - & const_str_AsyncIterator._ascii.ob_base, - & _collections_abc_toplevel_consts_28.ob_base.ob_base, - & const_str_AsyncGenerator._ascii.ob_base, - & _collections_abc_toplevel_consts_30.ob_base.ob_base, - & const_str_Iterable._ascii.ob_base, - & _collections_abc_toplevel_consts_32.ob_base.ob_base, - & const_str_Iterator._ascii.ob_base, - & _collections_abc_toplevel_consts_34.ob_base.ob_base, - & const_str_Reversible._ascii.ob_base, - & _collections_abc_toplevel_consts_36.ob_base.ob_base, - & const_str_Generator._ascii.ob_base, - & _collections_abc_toplevel_consts_38.ob_base.ob_base, - & const_str_Sized._ascii.ob_base, - & _collections_abc_toplevel_consts_40.ob_base.ob_base, - & const_str_Container._ascii.ob_base, - & _collections_abc_toplevel_consts_42.ob_base.ob_base, - & const_str_Collection._ascii.ob_base, - & _collections_abc_toplevel_consts_44.ob_base.ob_base, - & const_str__CallableGenericAlias._ascii.ob_base, - & _collections_abc_toplevel_consts_46.ob_base.ob_base, - & _collections_abc_toplevel_consts_47.ob_base.ob_base, - & _collections_abc_toplevel_consts_48.ob_base.ob_base, - & const_str_Callable._ascii.ob_base, - & _collections_abc_toplevel_consts_50.ob_base.ob_base, - & const_str_Set._ascii.ob_base, - & _collections_abc_toplevel_consts_52.ob_base.ob_base, - & const_str_MutableSet._ascii.ob_base, - & _collections_abc_toplevel_consts_54.ob_base.ob_base, - & const_str_Mapping._ascii.ob_base, - & _collections_abc_toplevel_consts_56.ob_base.ob_base, - & const_str_MappingView._ascii.ob_base, - & _collections_abc_toplevel_consts_58.ob_base.ob_base, - & const_str_KeysView._ascii.ob_base, - & _collections_abc_toplevel_consts_60.ob_base.ob_base, - & const_str_ItemsView._ascii.ob_base, - & _collections_abc_toplevel_consts_62.ob_base.ob_base, - & const_str_ValuesView._ascii.ob_base, - & _collections_abc_toplevel_consts_64.ob_base.ob_base, - & const_str_MutableMapping._ascii.ob_base, - & _collections_abc_toplevel_consts_66.ob_base.ob_base, - & const_str_Sequence._ascii.ob_base, - & _collections_abc_toplevel_consts_68.ob_base.ob_base, - & const_str_ByteString._ascii.ob_base, - & _collections_abc_toplevel_consts_70.ob_base.ob_base, - & const_str_MutableSequence._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_EllipsisType = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "EllipsisType", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_bytes_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bytes_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_bytearray_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bytearray_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_dict_keyiterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dict_keyiterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_dict_valueiterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dict_valueiterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_dict_itemiterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dict_itemiterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_list_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "list_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str_list_reverseiterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "list_reverseiterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_range_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "range_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_longrange_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "longrange_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_set_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_str_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "str_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_tuple_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "tuple_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_zip = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zip", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_zip_iterator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "zip_iterator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_dict_keys = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dict_keys", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_dict_values = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dict_values", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_dict_items = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dict_items", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_mappingproxy = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mappingproxy", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_generator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "generator", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_coroutine = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "coroutine", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_async_generator = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "async_generator", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[83]; - }_object; - } -_collections_abc_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 83, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_abc._ascii.ob_base, - & const_str_ABCMeta._ascii.ob_base, - & const_str_abstractmethod._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_type._ascii.ob_base, - & const_str_list._ascii.ob_base, - & const_str_int._ascii.ob_base, - & const_str_GenericAlias._ascii.ob_base, - & const_str_EllipsisType._ascii.ob_base, - & const_str__f._ascii.ob_base, - & const_str_FunctionType._ascii.ob_base, - &_Py_ID(__all__), - &_Py_ID(__name__), - &_Py_ID(iter), - & const_str_bytes_iterator._ascii.ob_base, - & const_str_bytearray._ascii.ob_base, - & const_str_bytearray_iterator._ascii.ob_base, - &_Py_ID(keys), - & const_str_dict_keyiterator._ascii.ob_base, - &_Py_ID(values), - & const_str_dict_valueiterator._ascii.ob_base, - &_Py_ID(items), - & const_str_dict_itemiterator._ascii.ob_base, - & const_str_list_iterator._ascii.ob_base, - &_Py_ID(reversed), - & const_str_list_reverseiterator._ascii.ob_base, - & const_str_range._ascii.ob_base, - & const_str_range_iterator._ascii.ob_base, - & const_str_longrange_iterator._ascii.ob_base, - & const_str_set._ascii.ob_base, - & const_str_set_iterator._ascii.ob_base, - & const_str_str_iterator._ascii.ob_base, - & const_str_tuple_iterator._ascii.ob_base, - & const_str_zip._ascii.ob_base, - & const_str_zip_iterator._ascii.ob_base, - & const_str_dict_keys._ascii.ob_base, - & const_str_dict_values._ascii.ob_base, - & const_str_dict_items._ascii.ob_base, - &_Py_ID(__dict__), - & const_str_mappingproxy._ascii.ob_base, - & const_str_generator._ascii.ob_base, - & const_str__coro._ascii.ob_base, - & const_str_coroutine._ascii.ob_base, - &_Py_ID(close), - & const_str__ag._ascii.ob_base, - & const_str_async_generator._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_Hashable._ascii.ob_base, - & const_str_Awaitable._ascii.ob_base, - & const_str_Coroutine._ascii.ob_base, - & const_str_register._ascii.ob_base, - & const_str_AsyncIterable._ascii.ob_base, - & const_str_AsyncIterator._ascii.ob_base, - & const_str_AsyncGenerator._ascii.ob_base, - & const_str_Iterable._ascii.ob_base, - & const_str_Iterator._ascii.ob_base, - & const_str_Reversible._ascii.ob_base, - & const_str_Generator._ascii.ob_base, - & const_str_Sized._ascii.ob_base, - & const_str_Container._ascii.ob_base, - & const_str_Collection._ascii.ob_base, - & const_str__CallableGenericAlias._ascii.ob_base, - & const_str__is_param_expr._ascii.ob_base, - & const_str__type_repr._ascii.ob_base, - & const_str_Callable._ascii.ob_base, - & const_str_Set._ascii.ob_base, - & const_str_frozenset._ascii.ob_base, - & const_str_MutableSet._ascii.ob_base, - & const_str_Mapping._ascii.ob_base, - & const_str_MappingView._ascii.ob_base, - & const_str_KeysView._ascii.ob_base, - & const_str_ItemsView._ascii.ob_base, - & const_str_ValuesView._ascii.ob_base, - & const_str_MutableMapping._ascii.ob_base, - & const_str_dict._ascii.ob_base, - & const_str_Sequence._ascii.ob_base, - & const_str_tuple._ascii.ob_base, - & const_str_str._ascii.ob_base, - & const_str_memoryview._ascii.ob_base, - & const_str_ByteString._ascii.ob_base, - & const_str_bytes._ascii.ob_base, - & const_str_MutableSequence._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[2598]; - } -_collections_abc_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2597, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x08\x03\x01\x04\xf0\x00\x03\x01\x04\xf0\x0a\x00\x01\x28\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xe0\x0f\x13\x88\x74\x90\x44\x98\x13\x94\x49\x89\x7f\x8c\x7f\x80\x0c\xd8\x0f\x13\x88\x74\x90\x43\x89\x79\x8c\x79\x80\x0c\xd8\x00\x0e\x80\x0e\x80\x0e\xd8\x0f\x13\x88\x74\x90\x42\x89\x78\x8c\x78\x80\x0c\xd8\x04\x06\xf0\x04\x09\x0b\x0d\xf0\x00\x09\x0b\x0d\xf0\x00\x09\x0b\x0d\x80\x07\xf0\x1e\x00\x0c\x1d\x80\x08\xf0\x12\x00\x12\x16\x90\x14\x90\x64\x90\x64\x98\x33\x91\x69\x94\x69\x91\x1f\x94\x1f\x80\x0e\xd8\x15\x19\x90\x54\x98\x24\x98\x24\x98\x79\x98\x79\x99\x7b\x9c\x7b\xd1\x1a\x2b\xd4\x1a\x2b\xd1\x15\x2c\xd4\x15\x2c\xd0\x00\x12\xe0\x13\x17\x90\x34\x98\x04\x98\x04\x98\x52\x9f\x57\x9a\x57\x99\x59\x9c\x59\x99\x0f\x9c\x0f\xd1\x13\x28\xd4\x13\x28\xd0\x00\x10\xd8\x15\x19\x90\x54\x98\x24\x98\x24\x98\x72\x9f\x79\x9a\x79\x99\x7b\x9c\x7b\xd1\x1a\x2b\xd4\x1a\x2b\xd1\x15\x2c\xd4\x15\x2c\xd0\x00\x12\xd8\x14\x18\x90\x44\x98\x14\x98\x14\x98\x62\x9f\x68\x9a\x68\x99\x6a\x9c\x6a\xd1\x19\x29\xd4\x19\x29\xd1\x14\x2a\xd4\x14\x2a\xd0\x00\x11\xd8\x10\x14\x90\x04\x90\x54\x90\x54\x98\x22\x91\x58\x94\x58\x91\x0e\x94\x0e\x80\x0d\xd8\x17\x1b\x90\x74\x98\x44\x98\x44\xa0\x18\xa0\x18\xa8\x22\xa1\x1c\xa4\x1c\xd1\x1c\x2e\xd4\x1c\x2e\xd1\x17\x2f\xd4\x17\x2f\xd0\x00\x14\xd8\x11\x15\x90\x14\x90\x64\x90\x64\x98\x35\x98\x35\xa0\x11\x99\x38\x9c\x38\x91\x6e\x94\x6e\xd1\x11\x25\xd4\x11\x25\x80\x0e\xd8\x15\x19\x90\x54\x98\x24\x98\x24\x98\x75\x98\x75\xa0\x51\xa8\x24\xa1\x59\xd1\x1f\x2f\xd4\x1f\x2f\xd1\x1a\x30\xd4\x1a\x30\xd1\x15\x31\xd4\x15\x31\xd0\x00\x12\xd8\x0f\x13\x88\x74\x90\x44\x90\x44\x98\x13\x98\x13\x99\x15\x9c\x15\x91\x4b\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\x80\x0c\xd8\x0f\x13\x88\x74\x90\x44\x90\x44\x98\x12\x91\x48\x94\x48\x89\x7e\x8c\x7e\x80\x0c\xd8\x11\x15\x90\x14\x90\x64\x90\x64\x98\x32\x91\x68\x94\x68\x91\x1e\x94\x1e\x80\x0e\xd8\x0f\x13\x88\x74\x90\x44\x90\x44\x98\x13\x98\x13\x99\x15\x9c\x15\x91\x4b\x94\x4b\xd1\x0f\x20\xd4\x0f\x20\x80\x0c\xe0\x0c\x10\x88\x44\x90\x12\x97\x17\x92\x17\x91\x19\x94\x19\x89\x4f\x8c\x4f\x80\x09\xd8\x0e\x12\x88\x64\x90\x32\x97\x39\x92\x39\x91\x3b\x94\x3b\xd1\x0e\x1f\xd4\x0e\x1f\x80\x0b\xd8\x0d\x11\x88\x54\x90\x22\x97\x28\x92\x28\x91\x2a\x94\x2a\xd1\x0d\x1d\xd4\x0d\x1d\x80\x0a\xe0\x0f\x13\x88\x74\x90\x44\x94\x4d\xd1\x0f\x22\xd4\x0f\x22\x80\x0c\xd8\x0c\x10\x88\x44\x90\x2f\x90\x2f\x90\x2f\xd1\x11\x24\xd4\x11\x24\xd1\x0c\x25\xd4\x0c\x25\x80\x09\xe0\x00\x17\xd0\x00\x17\xd0\x00\x17\xd8\x08\x0d\x88\x05\x89\x07\x8c\x07\x80\x05\xd8\x0c\x10\x88\x44\x90\x15\x89\x4b\x8c\x4b\x80\x09\xd8\x00\x05\x87\x0b\x82\x0b\x81\x0d\x84\x0d\x80\x0d\xd8\x04\x09\xe0\x00\x16\xd0\x00\x16\xd0\x00\x16\xd8\x06\x09\x80\x63\x81\x65\x84\x65\x80\x03\xd8\x12\x16\x90\x24\x90\x73\x91\x29\x94\x29\x80\x0f\xd8\x04\x07\xf0\x0a\x0a\x01\x10\xf0\x00\x0a\x01\x10\xf0\x00\x0a\x01\x10\xf0\x18\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\x98\x17\xf0\x00\x0c\x01\x1e\xf1\x00\x0c\x01\x1e\xf4\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x1e\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\x98\x27\xf0\x00\x0e\x01\x32\xf1\x00\x0e\x01\x32\xf4\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x22\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\x90\x09\xf1\x00\x26\x01\x1e\xf4\x00\x26\x01\x1e\xf0\x00\x26\x01\x1e\xf0\x52\x01\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x39\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x06\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\x98\x67\xf0\x00\x0e\x01\x32\xf1\x00\x0e\x01\x32\xf4\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x22\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\x90\x4d\xf1\x00\x10\x01\x1e\xf4\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x26\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\x90\x5d\xf1\x00\x2d\x01\x1e\xf4\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x60\x01\x00\x01\x0f\xd7\x00\x17\xd2\x00\x17\x98\x0f\xd1\x00\x28\xd4\x00\x28\xd0\x00\x28\xf0\x06\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\x98\x17\xf0\x00\x0f\x01\x32\xf1\x00\x0f\x01\x32\xf4\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x24\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\x88\x78\xf1\x00\x10\x01\x1e\xf4\x00\x10\x01\x1e\xf0\x00\x10\x01\x1e\xf0\x26\x00\x01\x09\xd7\x00\x11\xd2\x00\x11\x90\x2e\xd1\x00\x21\xd4\x00\x21\xd0\x00\x21\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x24\xd1\x00\x25\xd4\x00\x25\xd0\x00\x25\xe0\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x22\xd1\x00\x23\xd4\x00\x23\xd0\x00\x23\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x24\xd1\x00\x25\xd4\x00\x25\xd0\x00\x25\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x23\xd1\x00\x24\xd4\x00\x24\xd0\x00\x24\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2d\xd1\x00\x20\xd4\x00\x20\xd0\x00\x20\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x26\xd1\x00\x27\xd4\x00\x27\xd0\x00\x27\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2e\xd1\x00\x21\xd4\x00\x21\xd0\x00\x21\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\xd0\x12\x24\xd1\x00\x25\xd4\x00\x25\xd0\x00\x25\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2c\xd1\x00\x1f\xd4\x00\x1f\xd0\x00\x1f\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2c\xd1\x00\x1f\xd4\x00\x1f\xd0\x00\x1f\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2e\xd1\x00\x21\xd4\x00\x21\xd0\x00\x21\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2c\xd1\x00\x1f\xd4\x00\x1f\xd0\x00\x1f\xf0\x06\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\x90\x18\xf1\x00\x0d\x01\x1e\xf4\x00\x0d\x01\x1e\xf0\x00\x0d\x01\x1e\xf0\x20\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\x90\x08\xf1\x00\x2d\x01\x1e\xf4\x00\x2d\x01\x1e\xf0\x00\x2d\x01\x1e\xf0\x60\x01\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x39\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x06\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\x90\x67\xf0\x00\x0c\x01\x1e\xf1\x00\x0c\x01\x1e\xf4\x00\x0c\x01\x1e\xf0\x00\x0c\x01\x1e\xf0\x1e\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\x98\x27\xf0\x00\x0e\x01\x32\xf1\x00\x0e\x01\x32\xf4\x00\x0e\x01\x32\xf0\x00\x0e\x01\x32\xf0\x22\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\x90\x15\x98\x08\xa0\x29\xf1\x00\x08\x01\x1e\xf4\x00\x08\x01\x1e\xf0\x00\x08\x01\x1e\xf0\x16\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\x98\x4c\xf1\x00\x3b\x01\x40\x01\xf4\x00\x3b\x01\x40\x01\xf0\x00\x3b\x01\x40\x01\xf0\x7a\x01\x0a\x01\x56\x01\xf0\x00\x0a\x01\x56\x01\xf0\x00\x0a\x01\x56\x01\xf0\x18\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x00\x10\x01\x15\xf0\x26\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\x98\x17\xf0\x00\x0e\x01\x3b\xf1\x00\x0e\x01\x3b\xf4\x00\x0e\x01\x3b\xf0\x00\x0e\x01\x3b\xf0\x28\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\x88\x2a\xf1\x00\x47\x02\x01\x11\xf4\x00\x47\x02\x01\x11\xf0\x00\x47\x02\x01\x11\xf0\x54\x04\x00\x01\x04\x87\x0c\x82\x0c\x88\x59\xd1\x00\x17\xd4\x00\x17\xd0\x00\x17\xf0\x06\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\x90\x13\xf1\x00\x4d\x01\x01\x14\xf4\x00\x4d\x01\x01\x14\xf0\x00\x4d\x01\x01\x14\xf0\x60\x02\x00\x01\x0b\xd7\x00\x13\xd2\x00\x13\x90\x43\xd1\x00\x18\xd4\x00\x18\xd0\x00\x18\xf0\x0a\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x00\x31\x01\x18\x88\x6a\xf1\x00\x31\x01\x18\xf4\x00\x31\x01\x18\xf0\x00\x31\x01\x18\xf0\x66\x01\x00\x01\x08\xd7\x00\x10\xd2\x00\x10\x90\x1c\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xf0\x06\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\x90\x25\xf1\x00\x0d\x01\x32\xf4\x00\x0d\x01\x32\xf0\x00\x0d\x01\x32\xf0\x20\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\x88\x7b\x98\x43\xf1\x00\x0c\x01\x21\xf4\x00\x0c\x01\x21\xf0\x00\x0c\x01\x21\xf0\x1e\x00\x01\x09\xd7\x00\x11\xd2\x00\x11\x90\x29\xd1\x00\x1c\xd4\x00\x1c\xd0\x00\x1c\xf0\x06\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\x90\x0b\x98\x53\xf1\x00\x13\x01\x2c\xf4\x00\x13\x01\x2c\xf0\x00\x13\x01\x2c\xf0\x2c\x00\x01\x0a\xd7\x00\x12\xd2\x00\x12\x90\x3a\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xf0\x06\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\x90\x1b\x98\x6a\xf1\x00\x0d\x01\x25\xf4\x00\x0d\x01\x25\xf0\x00\x0d\x01\x25\xf0\x20\x00\x01\x0b\xd7\x00\x13\xd2\x00\x13\x90\x4b\xd1\x00\x20\xd4\x00\x20\xd0\x00\x20\xf0\x06\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\x90\x57\xf1\x00\x4f\x01\x01\x17\xf4\x00\x4f\x01\x01\x17\xf0\x00\x4f\x01\x01\x17\xf0\x64\x02\x00\x01\x0f\xd7\x00\x17\xd2\x00\x17\x98\x04\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x0a\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\x88\x7a\x98\x3a\xf1\x00\x3d\x01\x40\x01\xf4\x00\x3d\x01\x40\x01\xf0\x00\x3d\x01\x40\x01\xf0\x7e\x01\x00\x01\x09\xd7\x00\x11\xd2\x00\x11\x90\x25\xd1\x00\x18\xd4\x00\x18\xd0\x00\x18\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x23\xd1\x00\x16\xd4\x00\x16\xd0\x00\x16\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x25\xd1\x00\x18\xd4\x00\x18\xd0\x00\x18\xd8\x00\x08\xd7\x00\x11\xd2\x00\x11\x90\x2a\xd1\x00\x1d\xd4\x00\x1d\xd0\x00\x1d\xf0\x06\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x00\x06\x01\x13\x90\x18\xf1\x00\x06\x01\x13\xf4\x00\x06\x01\x13\xf0\x00\x06\x01\x13\xf0\x10\x00\x01\x0b\xd7\x00\x13\xd2\x00\x13\x90\x45\xd1\x00\x1a\xd4\x00\x1a\xd0\x00\x1a\xd8\x00\x0a\xd7\x00\x13\xd2\x00\x13\x90\x49\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xf0\x06\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\x90\x68\xf1\x00\x3f\x01\x14\xf4\x00\x3f\x01\x14\xf0\x00\x3f\x01\x14\xf0\x44\x02\x00\x01\x10\xd7\x00\x18\xd2\x00\x18\x98\x14\xd1\x00\x1e\xd4\x00\x1e\xd0\x00\x1e\xd8\x00\x0f\xd7\x00\x18\xd2\x00\x18\x98\x19\xd1\x00\x23\xd4\x00\x23\xd0\x00\x23\xd0\x00\x23\xd0\x00\x23", -}; -static - struct _PyCode_DEF(3328) -_collections_abc_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 1664, - }, - .co_consts = & _collections_abc_toplevel_consts._object.ob_base.ob_base, - .co_names = & _collections_abc_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _collections_abc_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & _collections_abc_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x6d\x02\x5a\x02\x6d\x03\x5a\x03\x01\x00\x64\x01\x64\x03\x6c\x04\x5a\x04\x02\x00\x65\x05\x65\x06\x65\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x02\x00\x65\x05\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x64\x05\x84\x00\x5a\x0a\x02\x00\x65\x05\x65\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x5b\x0a\x67\x00\x64\x06\xa2\x01\x5a\x0c\x64\x07\x5a\x0d\x02\x00\x65\x05\x02\x00\x65\x0e\x64\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0f\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x10\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x11\x02\x00\x65\x05\x02\x00\x65\x0e\x69\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x13\x02\x00\x65\x05\x02\x00\x65\x0e\x69\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x15\x02\x00\x65\x05\x02\x00\x65\x0e\x69\x00\xa0\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x17\x02\x00\x65\x05\x02\x00\x65\x0e\x67\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x18\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x19\x67\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1a\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x1b\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1c\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x1b\x64\x09\x64\x0a\x7a\x03\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1d\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x1e\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1f\x02\x00\x65\x05\x02\x00\x65\x0e\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x20\x02\x00\x65\x05\x02\x00\x65\x0e\x64\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x02\x00\x65\x05\x02\x00\x65\x0e\x02\x00\x65\x22\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x23\x02\x00\x65\x05\x69\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x24\x02\x00\x65\x05\x69\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x25\x02\x00\x65\x05\x69\x00\xa0\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x26\x02\x00\x65\x05\x65\x05\x6a\x27\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x28\x02\x00\x65\x05\x02\x00\x64\x0d\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x29\x64\x0e\x84\x00\x5a\x2a\x02\x00\x65\x2a\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x05\x65\x2a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2b\x65\x2a\xa0\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x5b\x2a\x64\x0f\x84\x00\x5a\x2d\x02\x00\x65\x2d\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2d\x02\x00\x65\x05\x65\x2d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2e\x5b\x2d\x64\x10\x84\x00\x5a\x2f\x02\x00\x47\x00\x64\x11\x84\x00\x64\x12\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x30\x02\x00\x47\x00\x64\x14\x84\x00\x64\x15\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x31\x02\x00\x47\x00\x64\x16\x84\x00\x64\x17\x65\x31\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x32\x65\x32\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x2b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x18\x84\x00\x64\x19\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x34\x02\x00\x47\x00\x64\x1a\x84\x00\x64\x1b\x65\x34\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x35\x02\x00\x47\x00\x64\x1c\x84\x00\x64\x1d\x65\x35\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x65\x36\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x2e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x1e\x84\x00\x64\x1f\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x37\x02\x00\x47\x00\x64\x20\x84\x00\x64\x21\x65\x37\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x38\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x13\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x15\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x17\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x18\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x20\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x21\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x23\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x22\x84\x00\x64\x23\x65\x37\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x39\x02\x00\x47\x00\x64\x24\x84\x00\x64\x25\x65\x38\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3a\x65\x3a\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x29\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x26\x84\x00\x64\x27\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3b\x02\x00\x47\x00\x64\x28\x84\x00\x64\x29\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3c\x02\x00\x47\x00\x64\x2a\x84\x00\x64\x2b\x65\x3b\x65\x37\x65\x3c\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3d\x02\x00\x47\x00\x64\x2c\x84\x00\x64\x2d\x65\x08\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x3e\x64\x2e\x84\x00\x5a\x3f\x64\x2f\x84\x00\x5a\x40\x02\x00\x47\x00\x64\x30\x84\x00\x64\x31\x65\x02\xac\x13\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x41\x02\x00\x47\x00\x64\x32\x84\x00\x64\x33\x65\x3d\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x42\x65\x42\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x43\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x34\x84\x00\x64\x35\x65\x42\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x44\x65\x44\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x36\x84\x00\x64\x37\x65\x3d\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x45\x65\x45\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x28\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x38\x84\x00\x64\x39\x65\x3b\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x46\x02\x00\x47\x00\x64\x3a\x84\x00\x64\x3b\x65\x46\x65\x42\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x47\x65\x47\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x24\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x3c\x84\x00\x64\x3d\x65\x46\x65\x42\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x48\x65\x48\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x26\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x3e\x84\x00\x64\x3f\x65\x46\x65\x3d\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x49\x65\x49\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x25\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x40\x84\x00\x64\x41\x65\x45\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x4a\x65\x4a\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x42\x84\x00\x64\x43\x65\x39\x65\x3d\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x4c\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4c\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x44\x84\x00\x64\x45\x65\x4c\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x50\x65\x50\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x51\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x50\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x47\x00\x64\x46\x84\x00\x64\x47\x65\x4c\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x52\x65\x52\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x52\xa0\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static void _collections_abc_do_patchups(void) { -} - -PyObject * -_Py_get__collections_abc_toplevel(void) -{ - _collections_abc_do_patchups(); - return Py_NewRef((PyObject *) &_collections_abc_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[62]; - } -_sitebuiltins_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 61, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x54\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x75\x73\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x73\x69\x74\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x74\x6f\x20\x61\x64\x64\x20\x63\x75\x73\x74\x6f\x6d\x20\x62\x75\x69\x6c\x74\x69\x6e\x73\x2e\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_Quitter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Quitter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_eof = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "eof", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_sitebuiltins_toplevel_consts_3_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(name), - & const_str_eof._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -_sitebuiltins_toplevel_consts_3_consts_1_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -_sitebuiltins_toplevel_consts_3_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Quitter.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -_sitebuiltins_toplevel_consts_3_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x14\x18\x88\x04\x8c\x09\xd8\x13\x16\x88\x04\x8c\x08\x88\x08\x88\x08", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_sitebuiltins_toplevel_consts_3_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(name), - & const_str_eof._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(34) -_sitebuiltins_toplevel_consts_3_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_3_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 14, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _sitebuiltins_toplevel_consts_3_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & _sitebuiltins_toplevel_consts_3_consts_1_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_3_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -_sitebuiltins_toplevel_consts_3_consts_2_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Use ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -_sitebuiltins_toplevel_consts_3_consts_2_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "() or ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -_sitebuiltins_toplevel_consts_3_consts_2_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " to exit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_sitebuiltins_toplevel_consts_3_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - & _sitebuiltins_toplevel_consts_3_consts_2_consts_1._ascii.ob_base, - & _sitebuiltins_toplevel_consts_3_consts_2_consts_2._ascii.ob_base, - & _sitebuiltins_toplevel_consts_3_consts_2_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -_sitebuiltins_toplevel_consts_3_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Quitter.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[28]; - } -_sitebuiltins_toplevel_consts_3_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 27, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\xd8\x2b\x2f\xac\x39\xa8\x39\xa8\x39\xb0\x64\xb4\x68\xb0\x68\xb0\x68\xd0\x0f\x3f\xd0\x08\x3f", -}; -static - struct _PyCode_DEF(40) -_sitebuiltins_toplevel_consts_3_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 20, - }, - .co_consts = & _sitebuiltins_toplevel_consts_3_consts_2_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_3_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 17, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & _sitebuiltins_toplevel_consts_3_consts_2_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_3_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x02\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x03\x9d\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_SystemExit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SystemExit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_sitebuiltins_toplevel_consts_3_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - &_Py_ID(stdin), - &_Py_ID(close), - & const_str_SystemExit._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -_sitebuiltins_toplevel_consts_3_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Quitter.__call__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[57]; - } -_sitebuiltins_toplevel_consts_3_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 56, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x03\x09\x11\xdd\x0c\x0f\x8c\x49\x8f\x4f\x8a\x4f\xd1\x0c\x1d\xd4\x0c\x1d\xd0\x0c\x1d\xd0\x0c\x1d\xf8\xf0\x02\x01\x09\x11\xd8\x0c\x10\x88\x44\xf8\xf8\xf8\xdd\x0e\x18\x98\x14\xd1\x0e\x1e\xd4\x0e\x1e\xd0\x08\x1e", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -_sitebuiltins_toplevel_consts_3_consts_4_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = "\x82\x1e\x21\x00\xa1\x02\x25\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_sitebuiltins_toplevel_consts_3_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(code), - }, - }, -}; -static - struct _PyCode_DEF(110) -_sitebuiltins_toplevel_consts_3_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 55, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_3_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & _sitebuiltins_toplevel_consts_3_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 19, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _sitebuiltins_toplevel_consts_3_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__call__), - .co_qualname = & _sitebuiltins_toplevel_consts_3_consts_4_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_3_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x07\x23\x00\x01\x00\x59\x00\x6e\x03\x78\x03\x59\x00\x77\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_sitebuiltins_toplevel_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_Quitter._ascii.ob_base, - & _sitebuiltins_toplevel_consts_3_consts_1.ob_base.ob_base, - & _sitebuiltins_toplevel_consts_3_consts_2.ob_base.ob_base, - Py_None, - & _sitebuiltins_toplevel_consts_3_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_sitebuiltins_toplevel_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__init__), - &_Py_ID(__repr__), - &_Py_ID(__call__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[74]; - } -_sitebuiltins_toplevel_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 73, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x00\x02\x05\x17\xf0\x06\x01\x05\x40\x01\xf0\x00\x01\x05\x40\x01\xf0\x00\x01\x05\x40\x01\xf0\x04\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f\xf0\x00\x07\x05\x1f", -}; -static - struct _PyCode_DEF(34) -_sitebuiltins_toplevel_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & _sitebuiltins_toplevel_consts_3_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 13, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = & const_str_Quitter._ascii.ob_base, - .co_qualname = & const_str_Quitter._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x05\x64\x04\x84\x01\x5a\x05\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__Printer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[111]; - } -_sitebuiltins_toplevel_consts_5_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 110, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x70\x72\x6f\x6d\x70\x74\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x6c\x69\x63\x65\x6e\x73\x65\x20\x74\x65\x78\x74\x2c\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x63\x6f\x6e\x74\x72\x69\x62\x75\x74\x6f\x72\x73\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x63\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x6e\x6f\x74\x69\x63\x65\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_4_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(path), - &_Py_ID(join), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -_sitebuiltins_toplevel_consts_5_consts_4_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer.__init__..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[79]; - } -_sitebuiltins_toplevel_consts_5_consts_4_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 78, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xd8\x20\x23\xd8\x2c\x31\xf0\x05\x02\x1c\x33\xf0\x00\x02\x1c\x33\xe0\x20\x28\xf0\x05\x00\x1d\x1f\x9c\x47\x9f\x4c\x9a\x4c\xa8\x13\xa8\x68\xd1\x1c\x37\xd4\x1c\x37\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_dir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_os = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "os", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_4_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_dir._ascii.ob_base, - &_Py_ID(filename), - & const_str_files._ascii.ob_base, - & const_str_os._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[6]; - } -_sitebuiltins_toplevel_consts_5_consts_4_consts_2_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 5, - }, - .ob_shash = -1, - .ob_sval = "\x20\x20\x20\x80\x80", -}; -static - struct _PyCode_DEF(80) -_sitebuiltins_toplevel_consts_5_consts_4_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 40, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 40, - .co_nlocalsplus = 5, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 2, - .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_4_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x02\x97\x00\x67\x00\x7c\x00\x5d\x22\x7d\x01\x89\x03\x44\x00\x5d\x1d\x7d\x02\x89\x04\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x91\x03\x8c\x1e\x8c\x23\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & _sitebuiltins_toplevel_consts_5_consts_4_consts_2.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__Printer__name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer__name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__Printer__data = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer__data", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__Printer__lines = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer__lines", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str__Printer__filenames = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer__filenames", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str__Printer__name._ascii.ob_base, - & const_str__Printer__data._ascii.ob_base, - & const_str__Printer__lines._ascii.ob_base, - & const_str__Printer__filenames._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_sitebuiltins_toplevel_consts_5_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[89]; - } -_sitebuiltins_toplevel_consts_5_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 88, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xf8\x80\x00\xd8\x08\x11\x88\x09\x88\x09\x88\x09\xd8\x16\x1a\x88\x04\x8c\x0b\xd8\x16\x1a\x88\x04\x8c\x0b\xd8\x17\x1b\x88\x04\x8c\x0c\xf0\x02\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xf0\x00\x02\x1c\x33\xd8\x27\x2b\xf0\x03\x02\x1c\x33\xf1\x00\x02\x1c\x33\xf4\x00\x02\x1c\x33\x88\x04\xd4\x08\x18\xd0\x08\x18\xd0\x08\x18", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_dirs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dirs", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(name), - & const_str_data._ascii.ob_base, - & const_str_files._ascii.ob_base, - & const_str_dirs._ascii.ob_base, - & const_str_os._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[7]; - } -_sitebuiltins_toplevel_consts_5_consts_4_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 6, - }, - .ob_shash = -1, - .ob_sval = " ` @", -}; -static - struct _PyCode_DEF(100) -_sitebuiltins_toplevel_consts_5_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 50, - }, - .co_consts = & _sitebuiltins_toplevel_consts_5_consts_4_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_5_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 5, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 35, - .co_nlocalsplus = 6, - .co_nlocals = 5, - .co_nplaincellvars = 1, - .co_ncellvars = 2, - .co_nfreevars = 0, - .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _sitebuiltins_toplevel_consts_5_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_4_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x03\x87\x05\x97\x00\x64\x01\x64\x00\x6c\x00\x8a\x05\x7c\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x88\x03\x88\x05\x66\x02\x64\x02\x84\x08\x7c\x04\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -_sitebuiltins_toplevel_consts_5_consts_5_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - &_Py_STR(utf_8), - & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_split = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "split", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__Printer__linecnt = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer__linecnt", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str__Printer__lines._ascii.ob_base, - & const_str__Printer__filenames._ascii.ob_base, - &_Py_ID(open), - &_Py_ID(read), - & const_str_OSError._ascii.ob_base, - & const_str__Printer__data._ascii.ob_base, - & const_str_split._ascii.ob_base, - &_Py_ID(len), - & const_str__Printer__linecnt._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str___setup = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__setup", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -_sitebuiltins_toplevel_consts_5_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer.__setup", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[252]; - } -_sitebuiltins_toplevel_consts_5_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 251, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0f\x8c\x3c\xf0\x00\x01\x09\x13\xd8\x0c\x12\x88\x46\xd8\x0f\x13\x88\x04\xd8\x18\x1c\xd4\x18\x28\xf0\x00\x06\x09\x15\xf0\x00\x06\x09\x15\x88\x48\xf0\x02\x05\x0d\x15\xdd\x15\x19\x98\x28\xa8\x57\xd0\x15\x35\xd1\x15\x35\xd4\x15\x35\xf0\x00\x01\x11\x25\xb8\x12\xd8\x1b\x1d\x9f\x37\x9a\x37\x99\x39\x9c\x39\x90\x44\xf0\x03\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf1\x00\x01\x11\x25\xf4\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf8\xf8\xf8\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xf0\x00\x01\x11\x25\xe0\x10\x15\x90\x05\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xe0\x0f\x13\xf0\x00\x01\x09\x1f\xd8\x13\x17\x94\x3b\x88\x44\xd8\x17\x1b\x97\x7a\x92\x7a\xa0\x24\xd1\x17\x27\xd4\x17\x27\x88\x04\x8c\x0c\xdd\x19\x1c\x98\x54\x9c\x5c\xd1\x19\x2a\xd4\x19\x2a\x88\x04\x8c\x0e\x88\x0e\x88\x0e", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[52]; - } -_sitebuiltins_toplevel_consts_5_consts_5_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 51, - }, - .ob_shash = -1, - .ob_sval = "\x96\x11\x41\x15\x02\xa7\x15\x41\x08\x05\xbc\x0c\x41\x15\x02\xc1\x08\x04\x41\x0c\x09\xc1\x0c\x03\x41\x15\x02\xc1\x0f\x01\x41\x0c\x09\xc1\x10\x03\x41\x15\x02\xc1\x15\x0a\x41\x22\x05\xc1\x21\x01\x41\x22\x05", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_data._ascii.ob_base, - &_Py_ID(filename), - & const_str_fp._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(326) -_sitebuiltins_toplevel_consts_5_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 163, - }, - .co_consts = & _sitebuiltins_toplevel_consts_5_consts_5_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_5_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = & _sitebuiltins_toplevel_consts_5_consts_5_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 44, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = & const_str___setup._ascii.ob_base, - .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_5_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x00\x53\x00\x64\x00\x7d\x01\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x51\x7d\x02\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\xac\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x03\x7c\x03\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x01\x00\x6e\x10\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x8c\x4e\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x73\x07\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -_sitebuiltins_toplevel_consts_5_consts_6_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Type %s() to see the full %s text", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_6_consts_2._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__Printer__setup = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer__setup", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_MAXLINES = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MAXLINES", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str__Printer__setup._ascii.ob_base, - &_Py_ID(len), - & const_str__Printer__lines._ascii.ob_base, - & const_str_MAXLINES._ascii.ob_base, - &_Py_ID(join), - & const_str__Printer__name._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_sitebuiltins_toplevel_consts_5_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[79]; - } -_sitebuiltins_toplevel_consts_5_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 78, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\xdd\x0b\x0e\x88\x74\x8c\x7c\xd1\x0b\x1c\xd4\x0b\x1c\xa0\x04\xa4\x0d\xd2\x0b\x2d\xd0\x0b\x2d\xd8\x13\x17\x97\x39\x92\x39\x98\x54\x9c\x5c\xd1\x13\x2a\xd4\x13\x2a\xd0\x0c\x2a\xe0\x13\x36\xb8\x34\xbc\x3b\xb8\x2e\xc8\x11\xd1\x3a\x4a\xd1\x13\x4b\xd0\x0c\x4b", -}; -static - struct _PyCode_DEF(180) -_sitebuiltins_toplevel_consts_5_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 90, - }, - .co_consts = & _sitebuiltins_toplevel_consts_5_consts_6_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_5_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 60, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_6_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x01\x00\x00\x00\x00\x72\x1a\x64\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x02\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x66\x01\x64\x03\x7a\x05\x00\x00\x7a\x06\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[49]; - } -_sitebuiltins_toplevel_consts_5_consts_7_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 48, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Hit Return for more, or q (and Return) to quit: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_q = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "q", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_7_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_STR(empty), - & const_str_q._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - Py_None, - & _sitebuiltins_toplevel_consts_5_consts_7_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & _sitebuiltins_toplevel_consts_5_consts_7_consts_4._object.ob_base.ob_base, - & const_str_q._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__Printer__setup._ascii.ob_base, - & const_str_range._ascii.ob_base, - & const_str_MAXLINES._ascii.ob_base, - & const_str_print._ascii.ob_base, - & const_str__Printer__lines._ascii.ob_base, - & const_str_input._ascii.ob_base, - & const_str_IndexError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -_sitebuiltins_toplevel_consts_5_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Printer.__call__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[216]; - } -_sitebuiltins_toplevel_consts_5_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 215, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0c\x8a\x0c\x89\x0e\x8c\x0e\x88\x0e\xd8\x11\x43\x88\x06\xd8\x11\x12\x88\x06\xf0\x02\x0e\x09\x1a\xf0\x02\x0d\x0d\x1a\xdd\x19\x1e\x98\x76\xa0\x76\xb0\x04\xb4\x0d\xd1\x27\x3d\xd1\x19\x3e\xd4\x19\x3e\xf0\x00\x01\x11\x2b\xf0\x00\x01\x11\x2b\x90\x41\xdd\x14\x19\x98\x24\x9c\x2c\xa0\x71\x9c\x2f\xd1\x14\x2a\xd4\x14\x2a\xd0\x14\x2a\xd0\x14\x2a\xf0\x03\x01\x11\x2b\xf0\x0a\x00\x11\x17\x98\x24\x9c\x2d\xd1\x10\x27\x90\x06\xd8\x16\x1a\x90\x03\xd8\x16\x19\x90\x6b\xdd\x1a\x1f\xa0\x06\x99\x2d\x9c\x2d\x90\x43\xd8\x17\x1a\xa0\x29\xd0\x17\x2b\xd0\x17\x2b\xd8\x1e\x22\x98\x03\xf0\x07\x00\x17\x1a\x90\x6b\xf0\x08\x00\x14\x17\x98\x23\x92\x3a\x90\x3a\xd8\x14\x19\x90\x45\xf0\x03\x00\x14\x1e\xf8\xf5\x13\x00\x14\x1e\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xf0\x00\x01\x0d\x16\xd8\x10\x15\x90\x05\x90\x05\xf0\x03\x01\x0d\x16\xf8\xf8\xf8\xf0\x09\x0e\x09\x1a", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -_sitebuiltins_toplevel_consts_5_consts_7_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\x9b\x35\x41\x3f\x00\xc1\x3f\x0a\x42\x0d\x03\xc2\x0c\x01\x42\x0d\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_prompt = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "prompt", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_7_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_prompt._ascii.ob_base, - &_Py_ID(lineno), - & const_str_i._ascii.ob_base, - & const_str_key._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(290) -_sitebuiltins_toplevel_consts_5_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 145, - }, - .co_consts = & _sitebuiltins_toplevel_consts_5_consts_7_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_5_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = & _sitebuiltins_toplevel_consts_5_consts_7_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 67, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _sitebuiltins_toplevel_consts_5_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__call__), - .co_qualname = & _sitebuiltins_toplevel_consts_5_consts_7_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_5_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x7d\x01\x64\x02\x7d\x02\x09\x00\x09\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1c\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x1d\x09\x00\x7c\x02\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x0d\x00\x00\x7d\x02\x64\x00\x7d\x04\x7c\x04\x80\x17\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x64\x04\x76\x01\x72\x02\x64\x00\x7d\x04\x7c\x04\xae\x17\x7c\x04\x64\x05\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x00\x53\x00\x6e\x11\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x8c\x77", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts_9 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - (PyObject *)& _Py_SINGLETON(tuple_empty), - (PyObject *)& _Py_SINGLETON(tuple_empty), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -_sitebuiltins_toplevel_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & const_str__Printer._ascii.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 23], - (PyObject *)& _Py_SINGLETON(tuple_empty), - & _sitebuiltins_toplevel_consts_5_consts_4.ob_base.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_5.ob_base.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_6.ob_base.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_7.ob_base.ob_base, - Py_None, - & _sitebuiltins_toplevel_consts_5_consts_9._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_sitebuiltins_toplevel_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - & const_str_MAXLINES._ascii.ob_base, - &_Py_ID(__init__), - & const_str__Printer__setup._ascii.ob_base, - &_Py_ID(__repr__), - &_Py_ID(__call__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[106]; - } -_sitebuiltins_toplevel_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 105, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x01\x05\x2e\xf0\x00\x01\x05\x2e\xf0\x06\x00\x10\x12\x80\x48\xf0\x04\x07\x05\x33\xf0\x00\x07\x05\x33\xf0\x00\x07\x05\x33\xf0\x00\x07\x05\x33\xf0\x12\x0e\x05\x2b\xf0\x00\x0e\x05\x2b\xf0\x00\x0e\x05\x2b\xf0\x20\x05\x05\x4c\x01\xf0\x00\x05\x05\x4c\x01\xf0\x00\x05\x05\x4c\x01\xf0\x0e\x12\x05\x1a\xf0\x00\x12\x05\x1a\xf0\x00\x12\x05\x1a\xf0\x00\x12\x05\x1a\xf0\x00\x12\x05\x1a", -}; -static - struct _PyCode_DEF(48) -_sitebuiltins_toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & _sitebuiltins_toplevel_consts_5_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 29, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = & const_str__Printer._ascii.ob_base, - .co_qualname = & const_str__Printer._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x5a\x04\x64\x09\x64\x04\x84\x01\x5a\x05\x64\x05\x84\x00\x5a\x06\x64\x06\x84\x00\x5a\x07\x64\x07\x84\x00\x5a\x08\x64\x08\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__Helper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Helper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[308]; - } -_sitebuiltins_toplevel_consts_7_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 307, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x65\x66\x69\x6e\x65\x20\x74\x68\x65\x20\x62\x75\x69\x6c\x74\x69\x6e\x20\x27\x68\x65\x6c\x70\x27\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x61\x20\x77\x72\x61\x70\x70\x65\x72\x20\x61\x72\x6f\x75\x6e\x64\x20\x70\x79\x64\x6f\x63\x2e\x68\x65\x6c\x70\x20\x74\x68\x61\x74\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x61\x20\x68\x65\x6c\x70\x66\x75\x6c\x20\x6d\x65\x73\x73\x61\x67\x65\x0a\x20\x20\x20\x20\x77\x68\x65\x6e\x20\x27\x68\x65\x6c\x70\x27\x20\x69\x73\x20\x74\x79\x70\x65\x64\x20\x61\x74\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x70\x72\x6f\x6d\x70\x74\x2e\x0a\x0a\x20\x20\x20\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x68\x65\x6c\x70\x28\x29\x20\x61\x74\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x20\x70\x72\x6f\x6d\x70\x74\x20\x73\x74\x61\x72\x74\x73\x20\x61\x6e\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x68\x65\x6c\x70\x20\x73\x65\x73\x73\x69\x6f\x6e\x2e\x0a\x20\x20\x20\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x68\x65\x6c\x70\x28\x74\x68\x69\x6e\x67\x29\x20\x70\x72\x69\x6e\x74\x73\x20\x68\x65\x6c\x70\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x70\x79\x74\x68\x6f\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x27\x74\x68\x69\x6e\x67\x27\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[73]; - } -_sitebuiltins_toplevel_consts_7_consts_2_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 72, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Type help() for interactive help, or help(object) for help about object.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_sitebuiltins_toplevel_consts_7_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & _sitebuiltins_toplevel_consts_7_consts_2_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -_sitebuiltins_toplevel_consts_7_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Helper.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -_sitebuiltins_toplevel_consts_7_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x01\x10\x38\xf0\x00\x01\x10\x38", -}; -static - struct _PyCode_DEF(6) -_sitebuiltins_toplevel_consts_7_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & _sitebuiltins_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 98, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & _sitebuiltins_toplevel_consts_7_consts_2_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_7_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_pydoc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pydoc", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_help = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "help", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -_sitebuiltins_toplevel_consts_7_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_pydoc._ascii.ob_base, - & const_str_help._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -_sitebuiltins_toplevel_consts_7_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Helper.__call__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[35]; - } -_sitebuiltins_toplevel_consts_7_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 34, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x14\x88\x0c\x88\x0c\x88\x0c\xd8\x0f\x19\x88\x75\x8c\x7a\x98\x34\xd0\x0f\x28\xa0\x34\xd0\x0f\x28\xd0\x0f\x28\xd0\x08\x28", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -_sitebuiltins_toplevel_consts_7_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_kwds._ascii.ob_base, - & const_str_pydoc._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(36) -_sitebuiltins_toplevel_consts_7_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_7_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 15, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 101, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _sitebuiltins_toplevel_consts_7_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_ID(__call__), - .co_qualname = & _sitebuiltins_toplevel_consts_7_consts_3_qualname._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_7_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x64\x00\x6c\x00\x7d\x03\x02\x00\x7c\x03\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x69\x00\x7c\x02\xa4\x01\x8e\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -_sitebuiltins_toplevel_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__Helper._ascii.ob_base, - & _sitebuiltins_toplevel_consts_7_consts_1._ascii.ob_base, - & _sitebuiltins_toplevel_consts_7_consts_2.ob_base.ob_base, - & _sitebuiltins_toplevel_consts_7_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_sitebuiltins_toplevel_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__repr__), - &_Py_ID(__call__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[61]; - } -_sitebuiltins_toplevel_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 60, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x07\x05\x08\xf0\x00\x07\x05\x08\xf0\x12\x02\x05\x38\xf0\x00\x02\x05\x38\xf0\x00\x02\x05\x38\xf0\x06\x02\x05\x29\xf0\x00\x02\x05\x29\xf0\x00\x02\x05\x29\xf0\x00\x02\x05\x29\xf0\x00\x02\x05\x29", -}; -static - struct _PyCode_DEF(30) -_sitebuiltins_toplevel_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 15, - }, - .co_consts = & _sitebuiltins_toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 88, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = & const_str__Helper._ascii.ob_base, - .co_qualname = & const_str__Helper._ascii.ob_base, - .co_linetable = & _sitebuiltins_toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -_sitebuiltins_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & _sitebuiltins_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & _sitebuiltins_toplevel_consts_3.ob_base.ob_base, - & const_str_Quitter._ascii.ob_base, - & _sitebuiltins_toplevel_consts_5.ob_base.ob_base, - & const_str__Printer._ascii.ob_base, - & _sitebuiltins_toplevel_consts_7.ob_base.ob_base, - & const_str__Helper._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -_sitebuiltins_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_sys._ascii.ob_base, - & const_str_object._ascii.ob_base, - & const_str_Quitter._ascii.ob_base, - & const_str__Printer._ascii.ob_base, - & const_str__Helper._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[164]; - } -_sitebuiltins_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 163, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x02\x01\x04\xf0\x00\x02\x01\x04\xf0\x14\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xf0\x04\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\x88\x66\xf1\x00\x0d\x01\x1f\xf4\x00\x0d\x01\x1f\xf0\x00\x0d\x01\x1f\xf0\x20\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\x88\x76\xf1\x00\x38\x01\x1a\xf4\x00\x38\x01\x1a\xf0\x00\x38\x01\x1a\xf0\x76\x01\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\x88\x66\xf1\x00\x0f\x01\x29\xf4\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29\xf0\x00\x0f\x01\x29", -}; -static - struct _PyCode_DEF(102) -_sitebuiltins_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 51, - }, - .co_consts = & _sitebuiltins_toplevel_consts._object.ob_base.ob_base, - .co_names = & _sitebuiltins_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & _sitebuiltins_toplevel_consts_3_consts_1_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & _sitebuiltins_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x02\x00\x47\x00\x64\x03\x84\x00\x64\x04\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x03\x02\x00\x47\x00\x64\x05\x84\x00\x64\x06\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x04\x02\x00\x47\x00\x64\x07\x84\x00\x64\x08\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void _sitebuiltins_do_patchups(void) { -} - -PyObject * -_Py_get__sitebuiltins_toplevel(void) -{ - _sitebuiltins_do_patchups(); - return Py_NewRef((PyObject *) &_sitebuiltins_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[153]; - } -genericpath_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 152, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x50\x61\x74\x68\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x63\x6f\x6d\x6d\x6f\x6e\x20\x74\x6f\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x6f\x6e\x65\x20\x4f\x53\x0a\x44\x6f\x20\x6e\x6f\x74\x20\x75\x73\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2e\x20\x20\x54\x68\x65\x20\x4f\x53\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x6d\x70\x6f\x72\x74\x20\x74\x68\x65\x20\x61\x70\x70\x72\x6f\x70\x72\x69\x61\x74\x65\x0a\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x74\x68\x65\x6d\x73\x65\x6c\x76\x65\x73\x2e\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_commonprefix = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "commonprefix", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_exists = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exists", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_getatime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getatime", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_getctime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getctime", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_getmtime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getmtime", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_getsize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getsize", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_isdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "isdir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_isfile = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "isfile", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_samefile = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "samefile", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_sameopenfile = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sameopenfile", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_samestat = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "samestat", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -genericpath_toplevel_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_commonprefix._ascii.ob_base, - & const_str_exists._ascii.ob_base, - & const_str_getatime._ascii.ob_base, - & const_str_getctime._ascii.ob_base, - & const_str_getmtime._ascii.ob_base, - & const_str_getsize._ascii.ob_base, - & const_str_isdir._ascii.ob_base, - & const_str_isfile._ascii.ob_base, - & const_str_samefile._ascii.ob_base, - & const_str_sameopenfile._ascii.ob_base, - & const_str_samestat._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[69]; - } -genericpath_toplevel_consts_4_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 68, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether a path exists. Returns False for broken symbolic links", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -genericpath_toplevel_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & genericpath_toplevel_consts_4_consts_0._ascii.ob_base, - Py_False, - Py_True, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -genericpath_toplevel_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -genericpath_toplevel_consts_4_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[67]; - } -genericpath_toplevel_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 66, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x08\x0a\x8c\x07\x90\x04\x89\x0d\x8c\x0d\x88\x0d\x88\x0d\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe0\x0b\x0f\x88\x34", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -genericpath_toplevel_consts_4_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x14\x17\x00\x97\x11\x2c\x03\xab\x01\x2c\x03", -}; -static - struct _PyCode_DEF(98) -genericpath_toplevel_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & genericpath_toplevel_consts_4_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 16, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_exists._ascii.ob_base, - .co_qualname = & const_str_exists._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -genericpath_toplevel_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether a path is a regular file", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -genericpath_toplevel_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & genericpath_toplevel_consts_5_consts_0._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISREG = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISREG", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -genericpath_toplevel_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_S_ISREG._ascii.ob_base, - & const_str_st_mode._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[80]; - } -genericpath_toplevel_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 79, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x57\x90\x54\x89\x5d\x8c\x5d\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -genericpath_toplevel_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(path), - & const_str_st._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(144) -genericpath_toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 72, - }, - .co_consts = & genericpath_toplevel_consts_5_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 27, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_isfile._ascii.ob_base, - .co_qualname = & const_str_isfile._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[61]; - } -genericpath_toplevel_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 60, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return true if the pathname refers to an existing directory.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -genericpath_toplevel_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & genericpath_toplevel_consts_6_consts_0._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISDIR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISDIR", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -genericpath_toplevel_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_S_ISDIR._ascii.ob_base, - & const_str_st_mode._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[80]; - } -genericpath_toplevel_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 79, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x57\x90\x51\x89\x5a\x8c\x5a\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -genericpath_toplevel_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_s._ascii.ob_base, - & const_str_st._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(144) -genericpath_toplevel_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 72, - }, - .co_consts = & genericpath_toplevel_consts_6_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 39, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_isdir._ascii.ob_base, - .co_qualname = & const_str_isdir._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[50]; - } -genericpath_toplevel_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 49, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the size of a file, reported by os.stat().", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -genericpath_toplevel_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & genericpath_toplevel_consts_7_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -genericpath_toplevel_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_st_size._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[22]; - } -genericpath_toplevel_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 21, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x37\x90\x38\xd1\x0b\x1c\xd4\x0b\x1c\xd4\x0b\x24\xd0\x04\x24", -}; -static - struct _PyCode_DEF(52) -genericpath_toplevel_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & genericpath_toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 48, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_getsize._ascii.ob_base, - .co_qualname = & const_str_getsize._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[68]; - } -genericpath_toplevel_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 67, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the last modification time of a file, reported by os.stat().", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -genericpath_toplevel_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & genericpath_toplevel_consts_8_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -genericpath_toplevel_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_st_mtime._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[22]; - } -genericpath_toplevel_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 21, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x37\x90\x38\xd1\x0b\x1c\xd4\x0b\x1c\xd4\x0b\x25\xd0\x04\x25", -}; -static - struct _PyCode_DEF(52) -genericpath_toplevel_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & genericpath_toplevel_consts_8_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 53, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_getmtime._ascii.ob_base, - .co_qualname = & const_str_getmtime._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[62]; - } -genericpath_toplevel_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 61, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the last access time of a file, reported by os.stat().", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -genericpath_toplevel_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & genericpath_toplevel_consts_9_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_st_atime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "st_atime", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -genericpath_toplevel_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_st_atime._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(52) -genericpath_toplevel_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & genericpath_toplevel_consts_9_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 58, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_getatime._ascii.ob_base, - .co_qualname = & const_str_getatime._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[66]; - } -genericpath_toplevel_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 65, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the metadata change time of a file, reported by os.stat().", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -genericpath_toplevel_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & genericpath_toplevel_consts_10_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_st_ctime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "st_ctime", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -genericpath_toplevel_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_st_ctime._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(52) -genericpath_toplevel_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & genericpath_toplevel_consts_10_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 63, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_39_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_getctime._ascii.ob_base, - .co_qualname = & const_str_getctime._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[72]; - } -genericpath_toplevel_consts_11_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 71, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Given a list of pathnames, returns the longest common leading component", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -genericpath_toplevel_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & genericpath_toplevel_consts_11_consts_0._ascii.ob_base, - &_Py_STR(empty), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_min = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "min", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_enumerate = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "enumerate", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -genericpath_toplevel_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_list._ascii.ob_base, - & const_str_tuple._ascii.ob_base, - & const_str_map._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str_min._ascii.ob_base, - & const_str_max._ascii.ob_base, - & const_str_enumerate._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[153]; - } -genericpath_toplevel_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 152, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0c\xd0\x04\x17\x90\x52\x90\x52\xf5\x0a\x00\x0c\x16\x90\x61\x98\x01\x94\x64\x9d\x54\xa5\x35\x98\x4d\xd1\x0b\x2a\xd4\x0b\x2a\xf0\x00\x01\x05\x25\xdd\x0c\x11\x95\x23\x95\x62\x94\x69\xa0\x11\xd1\x12\x23\xd4\x12\x23\xd1\x0c\x24\xd4\x0c\x24\x88\x01\xdd\x09\x0c\x88\x51\x89\x16\x8c\x16\x80\x42\xdd\x09\x0c\x88\x51\x89\x16\x8c\x16\x80\x42\xdd\x10\x19\x98\x22\x91\x0d\x94\x0d\xf0\x00\x02\x05\x1a\xf0\x00\x02\x05\x1a\x89\x04\x88\x01\x88\x31\xd8\x0b\x0c\x90\x02\x90\x31\x94\x05\x8a\x3a\x88\x3a\xd8\x13\x15\x90\x62\x90\x71\x90\x62\x94\x36\x88\x4d\x88\x4d\x88\x4d\xf0\x03\x00\x0c\x16\xe0\x0b\x0d\x80\x49", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_s1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "s1", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_s2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "s2", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -genericpath_toplevel_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_m._ascii.ob_base, - & const_str_s1._ascii.ob_base, - & const_str_s2._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_c._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(310) -genericpath_toplevel_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 155, - }, - .co_consts = & genericpath_toplevel_consts_11_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 69, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_commonprefix._ascii.ob_base, - .co_qualname = & const_str_commonprefix._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x73\x02\x64\x01\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x27\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1d\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x7c\x02\x7c\x03\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0c\x7c\x01\x64\x03\x7c\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x01\x00\x53\x00\x8c\x1e\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[54]; - } -genericpath_toplevel_consts_12_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 53, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether two stat buffers reference the same file", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -genericpath_toplevel_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & genericpath_toplevel_consts_12_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_st_ino = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "st_ino", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_st_dev = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "st_dev", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -genericpath_toplevel_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_st_ino._ascii.ob_base, - & const_str_st_dev._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[37]; - } -genericpath_toplevel_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 36, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0c\x0e\x8c\x49\x98\x12\x9c\x19\xd2\x0c\x22\xf0\x00\x01\x0d\x23\xd8\x0c\x0e\x8c\x49\x98\x12\x9c\x19\xd2\x0c\x22\xf0\x03\x01\x05\x24", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -genericpath_toplevel_consts_12_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_s1._ascii.ob_base, - & const_str_s2._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(66) -genericpath_toplevel_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & genericpath_toplevel_consts_12_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 87, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_12_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_samestat._ascii.ob_base, - .co_qualname = & const_str_samestat._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x6f\x0f\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[214]; - } -genericpath_toplevel_consts_13_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 213, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x54\x65\x73\x74\x20\x77\x68\x65\x74\x68\x65\x72\x20\x74\x77\x6f\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x73\x20\x72\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x61\x63\x74\x75\x61\x6c\x20\x66\x69\x6c\x65\x20\x6f\x72\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x64\x65\x74\x65\x72\x6d\x69\x6e\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x64\x65\x76\x69\x63\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x61\x6e\x64\x20\x69\x2d\x6e\x6f\x64\x65\x20\x6e\x75\x6d\x62\x65\x72\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x72\x61\x69\x73\x65\x73\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x66\x20\x61\x6e\x20\x6f\x73\x2e\x73\x74\x61\x74\x28\x29\x20\x63\x61\x6c\x6c\x20\x6f\x6e\x20\x65\x69\x74\x68\x65\x72\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x66\x61\x69\x6c\x73\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -genericpath_toplevel_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & genericpath_toplevel_consts_13_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -genericpath_toplevel_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_samestat._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[47]; - } -genericpath_toplevel_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 46, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0c\x00\x0a\x0c\x8c\x17\x90\x12\x89\x1b\x8c\x1b\x80\x42\xdd\x09\x0b\x8c\x17\x90\x12\x89\x1b\x8c\x1b\x80\x42\xdd\x0b\x13\x90\x42\x98\x02\xd1\x0b\x1b\xd4\x0b\x1b\xd0\x04\x1b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_f1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "f1", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_f2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "f2", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -genericpath_toplevel_consts_13_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_f1._ascii.ob_base, - & const_str_f2._ascii.ob_base, - & const_str_s1._ascii.ob_base, - & const_str_s2._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(114) -genericpath_toplevel_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 57, - }, - .co_consts = & genericpath_toplevel_consts_13_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 94, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_13_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_samefile._ascii.ob_base, - .co_qualname = & const_str_samefile._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[59]; - } -genericpath_toplevel_consts_14_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 58, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether two open file objects reference the same file", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -genericpath_toplevel_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & genericpath_toplevel_consts_14_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_fstat = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fstat", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -genericpath_toplevel_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fstat._ascii.ob_base, - & const_str_samestat._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[45]; - } -genericpath_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 44, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x09\x0b\x8c\x18\x90\x23\x89\x1d\x8c\x1d\x80\x42\xdd\x09\x0b\x8c\x18\x90\x23\x89\x1d\x8c\x1d\x80\x42\xdd\x0b\x13\x90\x42\x98\x02\xd1\x0b\x1b\xd4\x0b\x1b\xd0\x04\x1b", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_fp1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fp1", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_fp2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fp2", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -genericpath_toplevel_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_fp1._ascii.ob_base, - & const_str_fp2._ascii.ob_base, - & const_str_s1._ascii.ob_base, - & const_str_s2._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(114) -genericpath_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 57, - }, - .co_consts = & genericpath_toplevel_consts_14_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 107, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str_sameopenfile._ascii.ob_base, - .co_qualname = & const_str_sameopenfile._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[165]; - } -genericpath_toplevel_consts_15_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 164, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x70\x6c\x69\x74\x20\x74\x68\x65\x20\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x66\x72\x6f\x6d\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x69\x73\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x64\x6f\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x65\x6e\x64\x2c\x20\x69\x67\x6e\x6f\x72\x69\x6e\x67\x0a\x20\x20\x20\x20\x6c\x65\x61\x64\x69\x6e\x67\x20\x64\x6f\x74\x73\x2e\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x22\x28\x72\x6f\x6f\x74\x2c\x20\x65\x78\x74\x29\x22\x3b\x20\x65\x78\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -genericpath_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & genericpath_toplevel_consts_15_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -genericpath_toplevel_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_rfind._ascii.ob_base, - & const_str_max._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__splitext = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_splitext", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[198]; - } -genericpath_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 197, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0e\x00\x10\x11\x8f\x77\x8a\x77\x90\x73\x89\x7c\x8c\x7c\x80\x48\xd8\x07\x0d\xf0\x00\x02\x05\x2e\xd8\x16\x17\x97\x67\x92\x67\x98\x66\x91\x6f\x94\x6f\x88\x0b\xdd\x13\x16\x90\x78\xa0\x1b\xd1\x13\x2d\xd4\x13\x2d\x88\x08\xe0\x0f\x10\x8f\x77\x8a\x77\x90\x76\x89\x7f\x8c\x7f\x80\x48\xd8\x07\x0f\x90\x28\xd2\x07\x1a\xd0\x07\x1a\xe0\x18\x20\xa0\x31\x99\x0c\x88\x0d\xd8\x0e\x1b\x98\x68\xd2\x0e\x26\xd0\x0e\x26\xd8\x0f\x10\x90\x1d\x98\x7d\xa8\x51\x99\x7f\xd0\x11\x2e\xd4\x0f\x2f\xb0\x36\xd2\x0f\x39\xd0\x0f\x39\xd8\x17\x18\x98\x19\x98\x28\x98\x19\x94\x7c\xa0\x51\xa0\x78\xa0\x79\xa0\x79\xa4\x5c\xd0\x17\x31\xd0\x10\x31\xd8\x0c\x19\x98\x51\xd1\x0c\x1e\x88\x4d\xf0\x07\x00\x0f\x1c\x98\x68\xd2\x0e\x26\xd0\x0e\x26\xf0\x0a\x00\x0c\x0d\x88\x61\x90\x02\x90\x11\x90\x02\x8c\x65\x88\x38\x80\x4f", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_altsep = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "altsep", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_extsep = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "extsep", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_sepIndex = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sepIndex", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_altsepIndex = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "altsepIndex", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_dotIndex = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dotIndex", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_filenameIndex = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "filenameIndex", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -genericpath_toplevel_consts_15_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - & const_str_sepIndex._ascii.ob_base, - & const_str_altsepIndex._ascii.ob_base, - & const_str_dotIndex._ascii.ob_base, - & const_str_filenameIndex._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(318) -genericpath_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 159, - }, - .co_consts = & genericpath_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 121, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str__splitext._ascii.ob_base, - .co_qualname = & const_str__splitext._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x72\x25\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x7c\x04\x6b\x04\x00\x00\x00\x00\x72\x3b\x7c\x04\x64\x01\x7a\x00\x00\x00\x7d\x07\x7c\x07\x7c\x06\x6b\x00\x00\x00\x00\x00\x72\x30\x7c\x00\x7c\x07\x7c\x07\x64\x01\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x6b\x03\x00\x00\x00\x00\x72\x14\x7c\x00\x64\x02\x7c\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x06\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x07\x64\x01\x7a\x0d\x00\x00\x7d\x07\x7c\x07\x7c\x06\x6b\x00\x00\x00\x00\x00\xb0\x30\x7c\x00\x7c\x00\x64\x02\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[60]; - } -genericpath_toplevel_consts_16_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 59, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "() argument must be str, bytes, or os.PathLike object, not ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[47]; - } -genericpath_toplevel_consts_16_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 46, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Can't mix strings and bytes in path components", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -genericpath_toplevel_consts_16_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - Py_False, - Py_True, - & genericpath_toplevel_consts_16_consts_3._ascii.ob_base, - & genericpath_toplevel_consts_16_consts_4._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -genericpath_toplevel_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_str._ascii.ob_base, - & const_str_bytes._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - &_Py_ID(__class__), - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__check_arg_types = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_check_arg_types", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[198]; - } -genericpath_toplevel_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 197, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x18\x1d\xd0\x04\x1d\x80\x46\x88\x58\xd8\x0d\x11\xf0\x00\x07\x05\x5b\x01\xf0\x00\x07\x05\x5b\x01\x88\x01\xdd\x0b\x15\x90\x61\x9d\x13\xd1\x0b\x1d\xd4\x0b\x1d\xf0\x00\x06\x09\x5b\x01\xd8\x15\x19\x88\x46\x88\x46\xdd\x0d\x17\x98\x01\x9d\x35\xd1\x0d\x21\xd4\x0d\x21\xf0\x00\x04\x09\x5b\x01\xd8\x17\x1b\x88\x48\x88\x48\xe5\x12\x1b\x98\x78\xf0\x00\x01\x1d\x50\x01\xf0\x00\x01\x1d\x50\x01\xd8\x37\x38\xb4\x7b\xd4\x37\x4b\xf0\x03\x01\x1d\x50\x01\xf0\x00\x01\x1d\x50\x01\xf1\x00\x01\x13\x51\x01\xf4\x00\x01\x13\x51\x01\xd8\x56\x5a\xf0\x03\x01\x0d\x5b\x01\xe0\x07\x0d\xf0\x00\x01\x05\x54\x01\x90\x28\xf0\x00\x01\x05\x54\x01\xdd\x0e\x17\xd0\x18\x48\xd1\x0e\x49\xd4\x0e\x49\xc8\x74\xd0\x08\x53\xf0\x03\x01\x05\x54\x01\xf0\x00\x01\x05\x54\x01\xf0\x00\x01\x05\x54\x01\xf0\x00\x01\x05\x54\x01", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_funcname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "funcname", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_hasstr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "hasstr", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_hasbytes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "hasbytes", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -genericpath_toplevel_consts_16_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_funcname._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_hasstr._ascii.ob_base, - & const_str_hasbytes._ascii.ob_base, - & const_str_s._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(224) -genericpath_toplevel_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 112, - }, - .co_consts = & genericpath_toplevel_consts_16_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 144, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = & const_str__check_arg_types._ascii.ob_base, - .co_qualname = & const_str__check_arg_types._ascii.ob_base, - .co_linetable = & genericpath_toplevel_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x78\x01\x7d\x02\x7d\x03\x7c\x01\x44\x00\x5d\x50\x7d\x04\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x02\x7d\x02\x8c\x1a\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x02\x7d\x03\x8c\x32\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x9b\x00\x64\x03\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x7c\x02\x72\x12\x7c\x03\x72\x12\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x64\x00\x53\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -genericpath_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - & genericpath_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & genericpath_toplevel_consts_3._object.ob_base.ob_base, - & genericpath_toplevel_consts_4.ob_base.ob_base, - & genericpath_toplevel_consts_5.ob_base.ob_base, - & genericpath_toplevel_consts_6.ob_base.ob_base, - & genericpath_toplevel_consts_7.ob_base.ob_base, - & genericpath_toplevel_consts_8.ob_base.ob_base, - & genericpath_toplevel_consts_9.ob_base.ob_base, - & genericpath_toplevel_consts_10.ob_base.ob_base, - & genericpath_toplevel_consts_11.ob_base.ob_base, - & genericpath_toplevel_consts_12.ob_base.ob_base, - & genericpath_toplevel_consts_13.ob_base.ob_base, - & genericpath_toplevel_consts_14.ob_base.ob_base, - & genericpath_toplevel_consts_15.ob_base.ob_base, - & genericpath_toplevel_consts_16.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -genericpath_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_os._ascii.ob_base, - & const_str_stat._ascii.ob_base, - &_Py_ID(__all__), - & const_str_exists._ascii.ob_base, - & const_str_isfile._ascii.ob_base, - & const_str_isdir._ascii.ob_base, - & const_str_getsize._ascii.ob_base, - & const_str_getmtime._ascii.ob_base, - & const_str_getatime._ascii.ob_base, - & const_str_getctime._ascii.ob_base, - & const_str_commonprefix._ascii.ob_base, - & const_str_samestat._ascii.ob_base, - & const_str_samefile._ascii.ob_base, - & const_str_sameopenfile._ascii.ob_base, - & const_str__splitext._ascii.ob_base, - & const_str__check_arg_types._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[263]; - } -genericpath_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 262, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x04\x01\x04\xf0\x00\x04\x01\x04\xf0\x0a\x00\x01\x0a\x80\x09\x80\x09\x80\x09\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xf0\x04\x02\x0b\x17\xf0\x00\x02\x0b\x17\xf0\x00\x02\x0b\x17\x80\x07\xf0\x0e\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x16\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x18\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x12\x02\x01\x25\xf0\x00\x02\x01\x25\xf0\x00\x02\x01\x25\xf0\x0a\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x0a\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x0a\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x00\x02\x01\x26\xf0\x0c\x0e\x01\x0e\xf0\x00\x0e\x01\x0e\xf0\x00\x0e\x01\x0e\xf0\x24\x03\x01\x24\xf0\x00\x03\x01\x24\xf0\x00\x03\x01\x24\xf0\x0e\x08\x01\x1c\xf0\x00\x08\x01\x1c\xf0\x00\x08\x01\x1c\xf0\x1a\x04\x01\x1c\xf0\x00\x04\x01\x1c\xf0\x00\x04\x01\x1c\xf0\x1c\x15\x01\x14\xf0\x00\x15\x01\x14\xf0\x00\x15\x01\x14\xf0\x2e\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01\xf0\x00\x0b\x01\x54\x01", -}; -static - struct _PyCode_DEF(112) -genericpath_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 56, - }, - .co_consts = & genericpath_toplevel_consts._object.ob_base.ob_base, - .co_names = & genericpath_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & genericpath_toplevel_consts_4_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & genericpath_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x67\x00\x64\x03\xa2\x01\x5a\x03\x64\x04\x84\x00\x5a\x04\x64\x05\x84\x00\x5a\x05\x64\x06\x84\x00\x5a\x06\x64\x07\x84\x00\x5a\x07\x64\x08\x84\x00\x5a\x08\x64\x09\x84\x00\x5a\x09\x64\x0a\x84\x00\x5a\x0a\x64\x0b\x84\x00\x5a\x0b\x64\x0c\x84\x00\x5a\x0c\x64\x0d\x84\x00\x5a\x0d\x64\x0e\x84\x00\x5a\x0e\x64\x0f\x84\x00\x5a\x0f\x64\x10\x84\x00\x5a\x10\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void genericpath_do_patchups(void) { -} - -PyObject * -_Py_get_genericpath_toplevel(void) -{ - genericpath_do_patchups(); - return Py_NewRef((PyObject *) &genericpath_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[145]; - } -ntpath_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 144, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x6f\x6d\x6d\x6f\x6e\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x6d\x61\x6e\x69\x70\x75\x6c\x61\x74\x69\x6f\x6e\x73\x2c\x20\x57\x69\x6e\x64\x6f\x77\x73\x4e\x54\x2f\x39\x35\x20\x76\x65\x72\x73\x69\x6f\x6e\x2e\x0a\x0a\x49\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x20\x61\x6e\x64\x20\x72\x65\x66\x65\x72\x20\x74\x6f\x20\x74\x68\x69\x73\x0a\x6d\x6f\x64\x75\x6c\x65\x20\x61\x73\x20\x6f\x73\x2e\x70\x61\x74\x68\x2e\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -ntpath_toplevel_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "..", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -ntpath_toplevel_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ";", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -ntpath_toplevel_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ".;C:\\bin", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_nul = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "nul", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_normcase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "normcase", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_isabs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "isabs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_splitdrive = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "splitdrive", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_splitext = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "splitext", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_islink = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "islink", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_lexists = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lexists", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_ismount = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ismount", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_expanduser = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "expanduser", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_expandvars = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "expandvars", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_normpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "normpath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_abspath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abspath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_curdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "curdir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_pardir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pardir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_pathsep = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pathsep", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_defpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "defpath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_devnull = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "devnull", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_realpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "realpath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -const_str_supports_unicode_filenames = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "supports_unicode_filenames", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_relpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "relpath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_commonpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "commonpath", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[38]; - }_object; - } -ntpath_toplevel_consts_11 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 38, - }, - .ob_item = { - & const_str_normcase._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - &_Py_ID(join), - & const_str_splitdrive._ascii.ob_base, - & const_str_split._ascii.ob_base, - & const_str_splitext._ascii.ob_base, - & const_str_basename._ascii.ob_base, - & const_str_dirname._ascii.ob_base, - & const_str_commonprefix._ascii.ob_base, - & const_str_getsize._ascii.ob_base, - & const_str_getmtime._ascii.ob_base, - & const_str_getatime._ascii.ob_base, - & const_str_getctime._ascii.ob_base, - & const_str_islink._ascii.ob_base, - & const_str_exists._ascii.ob_base, - & const_str_lexists._ascii.ob_base, - & const_str_isdir._ascii.ob_base, - & const_str_isfile._ascii.ob_base, - & const_str_ismount._ascii.ob_base, - & const_str_expanduser._ascii.ob_base, - & const_str_expandvars._ascii.ob_base, - & const_str_normpath._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - & const_str_devnull._ascii.ob_base, - & const_str_realpath._ascii.ob_base, - & const_str_supports_unicode_filenames._ascii.ob_base, - & const_str_relpath._ascii.ob_base, - & const_str_samefile._ascii.ob_base, - & const_str_sameopenfile._ascii.ob_base, - & const_str_samestat._ascii.ob_base, - & const_str_commonpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -ntpath_toplevel_consts_12_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "\\/", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -ntpath_toplevel_consts_12_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\\/", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & ntpath_toplevel_consts_12_consts_1.ob_base.ob_base, - & ntpath_toplevel_consts_12_consts_2._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -ntpath_toplevel_consts_12_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__get_bothseps = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_bothseps", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[31]; - } -ntpath_toplevel_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 30, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x15\xd8\x0f\x15\x88\x76\xe0\x0f\x14\x88\x75", -}; -static - struct _PyCode_DEF(52) -ntpath_toplevel_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & ntpath_toplevel_consts_12_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 35, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str__get_bothseps._ascii.ob_base, - .co_qualname = & const_str__get_bothseps._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_LCMapStringEx = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LCMapStringEx", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_LOCALE_NAME_INVARIANT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LOCALE_NAME_INVARIANT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_LCMAP_LOWERCASE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LCMAP_LOWERCASE", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_13 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_LCMapStringEx._ascii.ob_base, - & const_str_LOCALE_NAME_INVARIANT._ascii.ob_base, - & const_str_LCMAP_LOWERCASE._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[111]; - } -ntpath_toplevel_consts_14_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 110, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x4e\x6f\x72\x6d\x61\x6c\x69\x7a\x65\x20\x63\x61\x73\x65\x20\x6f\x66\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4d\x61\x6b\x65\x73\x20\x61\x6c\x6c\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x73\x20\x6c\x6f\x77\x65\x72\x63\x61\x73\x65\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x73\x6c\x61\x73\x68\x65\x73\x20\x69\x6e\x74\x6f\x20\x62\x61\x63\x6b\x73\x6c\x61\x73\x68\x65\x73\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_surrogateescape = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "surrogateescape", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -ntpath_toplevel_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & ntpath_toplevel_consts_14_consts_0._ascii.ob_base, - & const_str_surrogateescape._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_getfilesystemencoding = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getfilesystemencoding", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__LCMapStringEx = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_LCMapStringEx", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str__LOCALE_NAME_INVARIANT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_LOCALE_NAME_INVARIANT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__LCMAP_LOWERCASE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_LCMAP_LOWERCASE", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -ntpath_toplevel_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_getfilesystemencoding._ascii.ob_base, - &_Py_ID(decode), - &_Py_ID(replace), - & const_str__LCMapStringEx._ascii.ob_base, - & const_str__LOCALE_NAME_INVARIANT._ascii.ob_base, - & const_str__LCMAP_LOWERCASE._ascii.ob_base, - &_Py_ID(encode), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[184]; - } -ntpath_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 183, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x0d\x0f\x8c\x49\x90\x61\x89\x4c\x8c\x4c\x88\x01\xd8\x0f\x10\xf0\x00\x01\x09\x15\xd8\x13\x14\x88\x48\xdd\x0b\x15\x90\x61\x9d\x15\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x09\x09\x38\xdd\x17\x1a\xd4\x17\x30\xd1\x17\x32\xd4\x17\x32\x88\x48\xd8\x10\x11\x97\x08\x92\x08\x98\x18\xd0\x23\x34\xd1\x10\x35\xd4\x10\x35\xd7\x10\x3d\xd2\x10\x3d\xb8\x63\xc0\x34\xd1\x10\x48\xd4\x10\x48\x88\x41\xdd\x10\x1e\xd5\x1f\x35\xdd\x1f\x2f\xb0\x11\xf1\x03\x01\x11\x34\xf4\x00\x01\x11\x34\x88\x41\xe0\x13\x14\x97\x38\x92\x38\x98\x48\xd0\x26\x37\xd1\x13\x38\xd4\x13\x38\xd0\x0c\x38\xe5\x13\x21\xd5\x22\x38\xdd\x22\x32\xd8\x22\x23\xa7\x29\xa2\x29\xa8\x43\xb0\x14\xd1\x22\x36\xd4\x22\x36\xf1\x05\x02\x14\x38\xf4\x00\x02\x14\x38\xf0\x00\x02\x0d\x38", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_s._ascii.ob_base, - &_Py_ID(encoding), - }, - }, -}; -static - struct _PyCode_DEF(406) -ntpath_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 203, - }, - .co_consts = & ntpath_toplevel_consts_14_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 51, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_normcase._ascii.ob_base, - .co_qualname = & const_str_normcase._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x73\x02\x7c\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x6e\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & ntpath_toplevel_consts_14_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_fsencode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fsencode", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_fsdecode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fsdecode", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -ntpath_toplevel_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - &_Py_ID(replace), - & const_str_lower._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[121]; - } -ntpath_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 120, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x0d\x0f\x8c\x49\x90\x61\x89\x4c\x8c\x4c\x88\x01\xdd\x0b\x15\x90\x61\x9d\x15\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x01\x09\x4a\x01\xdd\x13\x15\x94\x3b\x9d\x72\x9c\x7b\xa8\x31\x99\x7e\x9c\x7e\xd7\x1f\x35\xd2\x1f\x35\xb0\x63\xb8\x34\xd1\x1f\x40\xd4\x1f\x40\xd7\x1f\x46\xd2\x1f\x46\xd1\x1f\x48\xd4\x1f\x48\xd1\x13\x49\xd4\x13\x49\xd0\x0c\x49\xd8\x0f\x10\x8f\x79\x8a\x79\x98\x13\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xd7\x0f\x29\xd2\x0f\x29\xd1\x0f\x2b\xd4\x0f\x2b\xd0\x08\x2b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_15_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_s._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(316) -ntpath_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 158, - }, - .co_consts = & ntpath_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 70, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_normcase._ascii.ob_base, - .co_qualname = & const_str_normcase._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x4c\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -ntpath_toplevel_consts_16_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether a path is absolute", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -ntpath_toplevel_consts_16_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = ":\\", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -ntpath_toplevel_consts_16_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ":\\", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -ntpath_toplevel_consts_16_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & ntpath_toplevel_consts_16_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[92]), - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - & ntpath_toplevel_consts_16_consts_3.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & ntpath_toplevel_consts_16_consts_6._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_True, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -ntpath_toplevel_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - &_Py_ID(replace), - & const_str_startswith._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[146]; - } -ntpath_toplevel_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 145, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x11\x90\x21\x95\x55\xd1\x07\x1b\xd4\x07\x1b\xf0\x00\x07\x05\x1a\xd8\x0e\x13\x88\x03\xd8\x11\x15\x88\x06\xd8\x14\x1a\x88\x09\x88\x09\xe0\x0e\x12\x88\x03\xd8\x11\x14\x88\x06\xd8\x14\x19\x88\x09\xd8\x08\x09\x88\x22\x88\x31\x88\x22\x8c\x05\x8f\x0d\x8a\x0d\x90\x66\x98\x63\xd1\x08\x22\xd4\x08\x22\x80\x41\xf0\x06\x00\x08\x09\x87\x7c\x82\x7c\x90\x43\xd1\x07\x18\xd4\x07\x18\xf0\x00\x01\x05\x14\x98\x41\x9f\x4c\x9a\x4c\xa8\x19\xb0\x41\xd1\x1c\x36\xd4\x1c\x36\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x74\xd8\x0b\x10\x88\x35", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_colon_sep = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "colon_sep", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -ntpath_toplevel_consts_16_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_s._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_colon_sep._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(264) -ntpath_toplevel_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 132, - }, - .co_consts = & ntpath_toplevel_consts_16_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 87, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_isabs._ascii.ob_base, - .co_qualname = & const_str_isabs._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x01\x64\x02\x7d\x02\x64\x03\x7d\x03\x6e\x06\x64\x04\x7d\x01\x64\x05\x7d\x02\x64\x06\x7d\x03\x7c\x00\x64\x07\x64\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x16\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x0a\x53\x00\x64\x0b\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -ntpath_toplevel_consts_17_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - Py_None, - (PyObject *)&_Py_SINGLETON(bytes_characters[92]), - & ntpath_toplevel_consts_12_consts_1.ob_base.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[58]), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & ntpath_toplevel_consts_12_consts_2._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_8_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - &_Py_ID(join), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_BytesWarning = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "BytesWarning", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_genericpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "genericpath", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -ntpath_toplevel_consts_17_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_splitdrive._ascii.ob_base, - & const_str_map._ascii.ob_base, - & const_str_lower._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_BytesWarning._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - & const_str__check_arg_types._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[458]; - } -ntpath_toplevel_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 457, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x14\xd8\x0e\x13\x88\x03\xd8\x0f\x15\x88\x04\xd8\x10\x14\x88\x05\x88\x05\xe0\x0e\x12\x88\x03\xd8\x0f\x14\x88\x04\xd8\x10\x13\x88\x05\xf0\x02\x1f\x05\x0e\xd8\x0f\x14\xf0\x00\x01\x09\x1b\xd8\x0c\x10\x90\x12\x90\x21\x90\x12\x8c\x48\x90\x73\x89\x4e\x88\x4e\xdd\x24\x2e\xa8\x74\xd1\x24\x34\xd4\x24\x34\xd1\x08\x21\x88\x0c\x90\x6b\xdd\x11\x14\x95\x52\x94\x59\xa0\x05\xd1\x11\x26\xd4\x11\x26\xf0\x00\x13\x09\x2f\xf0\x00\x13\x09\x2f\x88\x41\xdd\x1e\x28\xa8\x11\x99\x6d\x9c\x6d\x89\x4f\x88\x47\x90\x56\xd8\x0f\x15\xf0\x00\x0d\x0d\x27\x98\x26\xa0\x11\x9c\x29\xa0\x74\xd0\x1a\x2b\xd0\x1a\x2b\xe0\x13\x1a\xf0\x00\x01\x11\x2b\xa0\x2c\xf0\x00\x01\x11\x2b\xd8\x23\x2a\x90\x4c\xd8\x1e\x24\x90\x0b\xd8\x10\x18\xd8\x11\x18\xf0\x00\x07\x0d\x27\x98\x57\xa8\x0c\xd2\x1d\x34\xd0\x1d\x34\xd8\x13\x1a\x97\x3d\x92\x3d\x91\x3f\x94\x3f\xa0\x6c\xd7\x26\x38\xd2\x26\x38\xd1\x26\x3a\xd4\x26\x3a\xd2\x13\x3a\xd0\x13\x3a\xe0\x23\x2a\x90\x4c\xd8\x22\x28\x90\x4b\xd8\x14\x1c\xe0\x1f\x26\x90\x0c\xe0\x0f\x1a\xf0\x00\x01\x0d\x30\x98\x7b\xa8\x32\x9c\x7f\xb0\x64\xd0\x1f\x3a\xd0\x1f\x3a\xd8\x1e\x29\xa8\x43\xd1\x1e\x2f\x90\x0b\xd8\x1a\x25\xa8\x06\xd1\x1a\x2e\x88\x4b\x88\x4b\xe0\x0c\x17\xf0\x00\x02\x09\x34\x98\x4b\xa8\x01\x9c\x4e\xb0\x24\xd0\x1c\x36\xd0\x1c\x36\xd8\x0c\x18\xf0\x03\x00\x1d\x37\xd8\x1d\x29\xa8\x22\xa8\x23\xa8\x23\xd4\x1d\x2e\xb0\x25\xd2\x1d\x37\xd0\x1d\x37\xd8\x13\x1f\xa0\x23\xd1\x13\x25\xa8\x0b\xd1\x13\x33\xd0\x0c\x33\xd8\x0f\x1b\x98\x6b\xd1\x0f\x29\xd0\x08\x29\xf8\xdd\x0c\x15\x95\x7e\xa5\x7c\xd0\x0b\x34\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x56\xa8\x54\xd0\x08\x3a\xb0\x45\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -ntpath_toplevel_consts_17_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xb8\x43\x17\x44\x15\x00\xc4\x10\x04\x44\x15\x00\xc4\x15\x2c\x45\x01\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_paths = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "paths", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_seps = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "seps", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_colon = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "colon", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_result_drive = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "result_drive", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_result_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "result_path", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_p_drive = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "p_drive", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_p_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "p_path", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -ntpath_toplevel_consts_17_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(path), - & const_str_paths._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_seps._ascii.ob_base, - & const_str_colon._ascii.ob_base, - & const_str_result_drive._ascii.ob_base, - & const_str_result_path._ascii.ob_base, - & const_str_p._ascii.ob_base, - & const_str_p_drive._ascii.ob_base, - & const_str_p_path._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(648) -ntpath_toplevel_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 324, - }, - .co_consts = & ntpath_toplevel_consts_17_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_17_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_17_exceptiontable.ob_base.ob_base, - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 107, - .co_nlocalsplus = 10, - .co_nlocals = 10, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_ID(join), - .co_qualname = &_Py_ID(join), - .co_linetable = & ntpath_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x02\x64\x02\x7d\x03\x64\x03\x7d\x04\x6e\x06\x64\x04\x7d\x02\x64\x05\x7d\x03\x64\x06\x7d\x04\x09\x00\x7c\x01\x73\x0d\x7c\x00\x64\x00\x64\x07\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7a\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x05\x7d\x06\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x78\x7d\x07\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x08\x7d\x09\x7c\x09\x72\x13\x7c\x09\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x76\x00\x72\x09\x7c\x08\x73\x02\x7c\x05\x73\x02\x7c\x08\x7d\x05\x7c\x09\x7d\x06\x8c\x29\x7c\x08\x72\x37\x7c\x08\x7c\x05\x6b\x03\x00\x00\x00\x00\x72\x31\x7c\x08\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x05\x7c\x08\x7d\x05\x7c\x09\x7d\x06\x8c\x60\x7c\x08\x7d\x05\x7c\x06\x72\x0f\x7c\x06\x64\x08\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x76\x01\x72\x05\x7c\x06\x7c\x02\x7a\x00\x00\x00\x7d\x06\x7c\x06\x7c\x09\x7a\x00\x00\x00\x7d\x06\x8c\x79\x7c\x06\x72\x22\x7c\x06\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x76\x01\x72\x18\x7c\x05\x72\x16\x7c\x05\x64\x08\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x03\x00\x00\x00\x00\x72\x08\x7c\x05\x7c\x02\x7a\x00\x00\x00\x7c\x06\x7a\x00\x00\x00\x53\x00\x7c\x05\x7c\x06\x7a\x00\x00\x00\x53\x00\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x15\x01\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x00\x67\x02\x7c\x01\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[731]; - } -ntpath_toplevel_consts_18_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 730, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x69\x6e\x74\x6f\x20\x64\x72\x69\x76\x65\x2f\x55\x4e\x43\x20\x73\x68\x61\x72\x65\x70\x6f\x69\x6e\x74\x20\x61\x6e\x64\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x70\x61\x74\x68\x20\x73\x70\x65\x63\x69\x66\x69\x65\x72\x73\x2e\x0a\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x32\x2d\x74\x75\x70\x6c\x65\x20\x28\x64\x72\x69\x76\x65\x5f\x6f\x72\x5f\x75\x6e\x63\x2c\x20\x70\x61\x74\x68\x29\x3b\x20\x65\x69\x74\x68\x65\x72\x20\x70\x61\x72\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x79\x6f\x75\x20\x61\x73\x73\x69\x67\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x73\x75\x6c\x74\x20\x3d\x20\x73\x70\x6c\x69\x74\x64\x72\x69\x76\x65\x28\x70\x29\x0a\x20\x20\x20\x20\x49\x74\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x74\x72\x75\x65\x20\x74\x68\x61\x74\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x65\x73\x75\x6c\x74\x5b\x30\x5d\x20\x2b\x20\x72\x65\x73\x75\x6c\x74\x5b\x31\x5d\x20\x3d\x3d\x20\x70\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x64\x20\x61\x20\x64\x72\x69\x76\x65\x20\x6c\x65\x74\x74\x65\x72\x2c\x20\x64\x72\x69\x76\x65\x5f\x6f\x72\x5f\x75\x6e\x63\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x0a\x20\x20\x20\x20\x75\x70\x20\x74\x6f\x20\x61\x6e\x64\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x6e\x2e\x20\x20\x65\x2e\x67\x2e\x20\x73\x70\x6c\x69\x74\x64\x72\x69\x76\x65\x28\x22\x63\x3a\x2f\x64\x69\x72\x22\x29\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x28\x22\x63\x3a\x22\x2c\x20\x22\x2f\x64\x69\x72\x22\x29\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x64\x20\x61\x20\x55\x4e\x43\x20\x70\x61\x74\x68\x2c\x20\x74\x68\x65\x20\x64\x72\x69\x76\x65\x5f\x6f\x72\x5f\x75\x6e\x63\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x74\x68\x65\x20\x68\x6f\x73\x74\x20\x6e\x61\x6d\x65\x0a\x20\x20\x20\x20\x61\x6e\x64\x20\x73\x68\x61\x72\x65\x20\x75\x70\x20\x74\x6f\x20\x62\x75\x74\x20\x6e\x6f\x74\x20\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x66\x6f\x75\x72\x74\x68\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x63\x68\x61\x72\x61\x63\x74\x65\x72\x2e\x0a\x20\x20\x20\x20\x65\x2e\x67\x2e\x20\x73\x70\x6c\x69\x74\x64\x72\x69\x76\x65\x28\x22\x2f\x2f\x68\x6f\x73\x74\x2f\x63\x6f\x6d\x70\x75\x74\x65\x72\x2f\x64\x69\x72\x22\x29\x20\x72\x65\x74\x75\x72\x6e\x73\x20\x28\x22\x2f\x2f\x68\x6f\x73\x74\x2f\x63\x6f\x6d\x70\x75\x74\x65\x72\x22\x2c\x20\x22\x2f\x64\x69\x72\x22\x29\x0a\x0a\x20\x20\x20\x20\x50\x61\x74\x68\x73\x20\x63\x61\x6e\x6e\x6f\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x20\x62\x6f\x74\x68\x20\x61\x20\x64\x72\x69\x76\x65\x20\x6c\x65\x74\x74\x65\x72\x20\x61\x6e\x64\x20\x61\x20\x55\x4e\x43\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -ntpath_toplevel_consts_18_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = "\\\\?\\UNC\\", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -ntpath_toplevel_consts_18_consts_9 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\\\\?\\UNC\\", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -ntpath_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & ntpath_toplevel_consts_18_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_Py_SINGLETON(bytes_characters[92]), - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_characters[58]), - & ntpath_toplevel_consts_18_consts_5.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_8_consts_0._ascii.ob_base, - & ntpath_toplevel_consts_18_consts_9._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_upper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "upper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_find = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "find", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -ntpath_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(len), - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - &_Py_ID(replace), - & const_str_upper._ascii.ob_base, - & const_str_find._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[357]; - } -ntpath_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 356, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x26\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x0a\x88\x31\x81\x76\x84\x76\x90\x11\x82\x7b\x80\x7b\xdd\x0b\x15\x90\x61\x9d\x15\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x09\x09\x28\xd8\x12\x17\x88\x43\xd8\x15\x19\x88\x46\xd8\x14\x18\x88\x45\xd8\x19\x28\x88\x4a\x88\x4a\xe0\x12\x16\x88\x43\xd8\x15\x18\x88\x46\xd8\x14\x17\x88\x45\xd8\x19\x27\x88\x4a\xd8\x10\x11\x97\x09\x92\x09\x98\x26\xa0\x23\xd1\x10\x26\xd4\x10\x26\x88\x05\xd8\x0b\x10\x90\x11\x90\x31\x90\x13\x8c\x3a\x98\x13\x98\x71\x99\x17\xd2\x0b\x20\xd0\x0b\x20\xf0\x06\x00\x1a\x1f\x98\x72\xa0\x01\x98\x72\x9c\x19\x9f\x1f\x9a\x1f\xd1\x19\x2a\xd4\x19\x2a\xa8\x6a\xd2\x19\x38\xd0\x19\x38\x90\x41\x90\x41\xb8\x61\x88\x45\xd8\x14\x19\x97\x4a\x92\x4a\x98\x73\xa0\x45\xd1\x14\x2a\xd4\x14\x2a\x88\x45\xd8\x0f\x14\x98\x02\x8a\x7b\x88\x7b\xd8\x17\x18\x98\x21\x98\x42\x98\x51\x98\x42\x9c\x25\x90\x78\x90\x0f\xd8\x15\x1a\x97\x5a\x92\x5a\xa0\x03\xa0\x55\xa8\x51\xa1\x59\xd1\x15\x2f\xd4\x15\x2f\x88\x46\xd8\x0f\x15\x98\x12\x8a\x7c\x88\x7c\xd8\x17\x18\x98\x21\x98\x42\x98\x51\x98\x42\x9c\x25\x90\x78\x90\x0f\xd8\x13\x14\x90\x57\x90\x66\x90\x57\x94\x3a\x98\x71\xa0\x16\xa0\x17\xa0\x17\x9c\x7a\xd0\x13\x29\xd0\x0c\x29\xd8\x0b\x10\x90\x11\x90\x31\x90\x13\x8c\x3a\x98\x15\xd2\x0b\x1e\xd0\x0b\x1e\xe0\x13\x14\x90\x52\x90\x61\x90\x52\x94\x35\x98\x21\x98\x41\x98\x42\x98\x42\x9c\x25\x90\x3c\xd0\x0c\x1f\xd8\x0b\x0c\x88\x52\x88\x61\x88\x52\x8c\x35\x90\x21\x88\x38\x80\x4f", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_unc_prefix = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "unc_prefix", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_normp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "normp", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_index2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "index2", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -ntpath_toplevel_consts_18_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_colon._ascii.ob_base, - & const_str_unc_prefix._ascii.ob_base, - & const_str_normp._ascii.ob_base, - & const_str_start._ascii.ob_base, - & const_str_index._ascii.ob_base, - & const_str_index2._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(604) -ntpath_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 302, - }, - .co_consts = & ntpath_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 154, - .co_nlocalsplus = 9, - .co_nlocals = 9, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_splitdrive._ascii.ob_base, - .co_qualname = & const_str_splitdrive._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x05\x00\x00\x00\x00\x72\xfa\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x09\x64\x02\x7d\x01\x64\x03\x7d\x02\x64\x04\x7d\x03\x64\x05\x7d\x04\x6e\x08\x64\x06\x7d\x01\x64\x07\x7d\x02\x64\x08\x7d\x03\x64\x09\x7d\x04\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x64\x0a\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\x7a\x05\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x8b\x7c\x05\x64\x0b\x64\x0c\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x0c\x6e\x01\x64\x01\x7d\x06\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x64\x0d\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x00\x7c\x00\x64\x0b\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x07\x64\x0e\x7a\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x64\x0d\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x00\x7c\x00\x64\x0b\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x00\x64\x0b\x7c\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x08\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x05\x64\x0e\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x14\x7c\x00\x64\x0b\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00\x7c\x00\x64\x0b\x64\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[127]; - } -ntpath_toplevel_consts_19_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 126, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x0a\x0a\x20\x20\x20\x20\x52\x65\x74\x75\x72\x6e\x20\x74\x75\x70\x6c\x65\x20\x28\x68\x65\x61\x64\x2c\x20\x74\x61\x69\x6c\x29\x20\x77\x68\x65\x72\x65\x20\x74\x61\x69\x6c\x20\x69\x73\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x66\x69\x6e\x61\x6c\x20\x73\x6c\x61\x73\x68\x2e\x0a\x20\x20\x20\x20\x45\x69\x74\x68\x65\x72\x20\x70\x61\x72\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_19_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & ntpath_toplevel_consts_19_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -ntpath_toplevel_consts_19_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str__get_bothseps._ascii.ob_base, - & const_str_splitdrive._ascii.ob_base, - &_Py_ID(len), - & const_str_rstrip._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[181]; - } -ntpath_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 180, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0b\x18\x98\x11\xd1\x0b\x1b\xd4\x0b\x1b\x80\x44\xdd\x0b\x15\x90\x61\x89\x3d\x8c\x3d\x81\x44\x80\x41\x80\x71\xe5\x08\x0b\x88\x41\x89\x06\x8c\x06\x80\x41\xd8\x0a\x0b\xf0\x00\x01\x05\x0f\x90\x01\x90\x21\x90\x41\x91\x23\x94\x06\x98\x64\xd0\x10\x22\xd0\x10\x22\xd8\x08\x09\x88\x51\x89\x06\x88\x01\xf0\x03\x00\x0b\x0c\xf0\x00\x01\x05\x0f\x90\x01\x90\x21\x90\x41\x91\x23\x94\x06\x98\x64\xd0\x10\x22\xd0\x10\x22\xe0\x11\x12\x90\x32\x90\x41\x90\x32\x94\x15\x98\x01\x98\x21\x98\x22\x98\x22\x9c\x05\x88\x24\x80\x44\xe0\x0b\x0f\x8f\x3b\x8a\x3b\x90\x74\xd1\x0b\x1c\xd4\x0b\x1c\xd0\x0b\x24\xa0\x04\x80\x44\xd8\x0b\x0c\x88\x74\x89\x38\x90\x54\x88\x3e\xd0\x04\x19", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -ntpath_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - & const_str_seps._ascii.ob_base, - & const_str_d._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_head._ascii.ob_base, - & const_str_tail._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(308) -ntpath_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 154, - }, - .co_consts = & ntpath_toplevel_consts_19_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 208, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_split._ascii.ob_base, - .co_qualname = & const_str_split._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x72\x21\x7c\x00\x7c\x03\x64\x01\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x01\x72\x14\x7c\x03\x64\x01\x7a\x17\x00\x00\x7d\x03\x7c\x03\x72\x0d\x7c\x00\x7c\x03\x64\x01\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x01\xb0\x14\x7c\x00\x64\x02\x7c\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x03\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7d\x04\x7c\x04\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x7c\x04\x7d\x04\x7c\x02\x7c\x04\x7a\x00\x00\x00\x7c\x05\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -ntpath_toplevel_consts_20_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - Py_None, - (PyObject *)&_Py_SINGLETON(bytes_characters[92]), - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - &_Py_STR(dot), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -ntpath_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - & const_str__splitext._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[80]; - } -ntpath_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 79, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x11\x90\x21\x95\x55\xd1\x07\x1b\xd4\x07\x1b\xf0\x00\x03\x05\x38\xdd\x0f\x1a\xd4\x0f\x24\xa0\x51\xa8\x05\xa8\x74\xb0\x54\xd1\x0f\x3a\xd4\x0f\x3a\xd0\x08\x3a\xe5\x0f\x1a\xd4\x0f\x24\xa0\x51\xa8\x04\xa8\x63\xb0\x33\xd1\x0f\x37\xd4\x0f\x37\xd0\x08\x37", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_20_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(176) -ntpath_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 88, - }, - .co_consts = & ntpath_toplevel_consts_20_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 231, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_splitext._ascii.ob_base, - .co_qualname = & const_str_splitext._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x17\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x02\x64\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x04\x64\x05\x64\x06\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[42]; - } -ntpath_toplevel_consts_21_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 41, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Returns the final component of a pathname", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_21_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & ntpath_toplevel_consts_21_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_21_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_split._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -ntpath_toplevel_consts_21_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x10\x90\x11\x89\x38\x8c\x38\x90\x41\x8c\x3b\xd0\x04\x16", -}; -static - struct _PyCode_DEF(44) -ntpath_toplevel_consts_21 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & ntpath_toplevel_consts_21_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 242, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_basename._ascii.ob_base, - .co_qualname = & const_str_basename._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_21_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[46]; - } -ntpath_toplevel_consts_22_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 45, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Returns the directory component of a pathname", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & ntpath_toplevel_consts_22_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct _PyCode_DEF(44) -ntpath_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & ntpath_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 249, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_dirname._ascii.ob_base, - .co_qualname = & const_str_dirname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_21_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[105]; - } -ntpath_toplevel_consts_23_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 104, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x54\x65\x73\x74\x20\x77\x68\x65\x74\x68\x65\x72\x20\x61\x20\x70\x61\x74\x68\x20\x69\x73\x20\x61\x20\x73\x79\x6d\x62\x6f\x6c\x69\x63\x20\x6c\x69\x6e\x6b\x2e\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x72\x65\x74\x75\x72\x6e\x20\x66\x61\x6c\x73\x65\x20\x66\x6f\x72\x20\x57\x69\x6e\x64\x6f\x77\x73\x20\x70\x72\x69\x6f\x72\x20\x74\x6f\x20\x36\x2e\x30\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_23_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & ntpath_toplevel_consts_23_consts_0._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_lstat = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lstat", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISLNK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISLNK", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -ntpath_toplevel_consts_23_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_lstat._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_S_ISLNK._ascii.ob_base, - & const_str_st_mode._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[82]; - } -ntpath_toplevel_consts_23_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 81, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xa5\x1e\xd0\x0b\x30\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -ntpath_toplevel_consts_23_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x14\x17\x00\x97\x17\x32\x03\xb1\x01\x32\x03", -}; -static - struct _PyCode_DEF(156) -ntpath_toplevel_consts_23 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 78, - }, - .co_consts = & ntpath_toplevel_consts_23_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_23_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 256, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_islink._ascii.ob_base, - .co_qualname = & const_str_islink._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_23_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x1e\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[68]; - } -ntpath_toplevel_consts_24_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 67, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether a path exists. Returns True for broken symbolic links", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & ntpath_toplevel_consts_24_consts_0._ascii.ob_base, - Py_False, - Py_True, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -ntpath_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_lstat._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[67]; - } -ntpath_toplevel_consts_24_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 66, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe0\x0b\x0f\x88\x34", -}; -static - struct _PyCode_DEF(98) -ntpath_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & ntpath_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 268, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_lexists._ascii.ob_base, - .co_qualname = & const_str_lexists._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_24_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str__getvolumepathname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_getvolumepathname", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_25 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__getvolumepathname._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[98]; - } -ntpath_toplevel_consts_26_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 97, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x54\x65\x73\x74\x20\x77\x68\x65\x74\x68\x65\x72\x20\x61\x20\x70\x61\x74\x68\x20\x69\x73\x20\x61\x20\x6d\x6f\x75\x6e\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x61\x20\x64\x72\x69\x76\x65\x20\x72\x6f\x6f\x74\x2c\x20\x74\x68\x65\x20\x72\x6f\x6f\x74\x20\x6f\x66\x20\x61\x0a\x20\x20\x20\x20\x73\x68\x61\x72\x65\x2c\x20\x6f\x72\x20\x61\x20\x6d\x6f\x75\x6e\x74\x65\x64\x20\x76\x6f\x6c\x75\x6d\x65\x29", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -ntpath_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & ntpath_toplevel_consts_26_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_True, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -ntpath_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str__get_bothseps._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str_splitdrive._ascii.ob_base, - & const_str__getvolumepathname._ascii.ob_base, - & const_str_rstrip._ascii.ob_base, - & const_str_casefold._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[201]; - } -ntpath_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 200, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x0b\x18\x98\x14\xd1\x0b\x1e\xd4\x0b\x1e\x80\x44\xdd\x0b\x12\x90\x34\x89\x3d\x8c\x3d\x80\x44\xdd\x11\x1b\x98\x44\xd1\x11\x21\xd4\x11\x21\x81\x4a\x80\x44\x88\x24\xd8\x07\x0b\xf0\x00\x01\x05\x2c\x90\x04\x90\x51\x94\x07\x98\x34\x90\x0f\x90\x0f\xd8\x14\x18\x90\x08\xd0\x0f\x2b\x98\x64\xa0\x64\x98\x6c\xd0\x08\x2b\xd8\x07\x0b\xf0\x00\x01\x05\x14\x90\x04\x98\x04\x90\x0c\x90\x0c\xd8\x0f\x13\x88\x74\xe5\x07\x19\xf0\x00\x05\x05\x15\xd8\x0c\x10\x8f\x4b\x8a\x4b\x98\x04\xd1\x0c\x1d\xd4\x0c\x1d\x88\x01\xdd\x0b\x1d\x98\x64\xd1\x0b\x23\xd4\x0b\x23\xd7\x0b\x2a\xd2\x0b\x2a\xa8\x34\xd1\x0b\x30\xd4\x0b\x30\x88\x01\xd8\x0f\x10\x8f\x7a\x8a\x7a\x89\x7c\x8c\x7c\x98\x71\x9f\x7a\x9a\x7a\x99\x7c\x9c\x7c\xd2\x0f\x2b\xd0\x08\x2b\xe0\x0f\x14\x88\x75", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_y = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "y", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -ntpath_toplevel_consts_26_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(path), - & const_str_seps._ascii.ob_base, - & const_str_root._ascii.ob_base, - & const_str_rest._ascii.ob_base, - & const_str_x._ascii.ob_base, - & const_str_y._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(404) -ntpath_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 202, - }, - .co_consts = & ntpath_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 290, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_ismount._ascii.ob_base, - .co_qualname = & const_str_ismount._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x72\x11\x7c\x02\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x00\x72\x07\x7c\x03\x0c\x00\x70\x03\x7c\x03\x7c\x01\x76\x00\x53\x00\x7c\x03\x72\x06\x7c\x03\x7c\x01\x76\x00\x72\x02\x64\x02\x53\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x61\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x04\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[77]; - } -ntpath_toplevel_consts_27_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 76, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x78\x70\x61\x6e\x64\x20\x7e\x20\x61\x6e\x64\x20\x7e\x75\x73\x65\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x73\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x75\x73\x65\x72\x20\x6f\x72\x20\x24\x48\x4f\x4d\x45\x20\x69\x73\x20\x75\x6e\x6b\x6e\x6f\x77\x6e\x2c\x20\x64\x6f\x20\x6e\x6f\x74\x68\x69\x6e\x67\x2e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -ntpath_toplevel_consts_27_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "~", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_USERPROFILE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "USERPROFILE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_HOMEPATH = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HOMEPATH", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_HOMEDRIVE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HOMEDRIVE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_USERNAME = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "USERNAME", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -ntpath_toplevel_consts_27_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & ntpath_toplevel_consts_27_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[126]), - & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & const_str_USERPROFILE._ascii.ob_base, - & const_str_HOMEPATH._ascii.ob_base, - & const_str_HOMEDRIVE._ascii.ob_base, - &_Py_STR(empty), - & const_str_USERNAME._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -ntpath_toplevel_consts_27_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - &_Py_ID(len), - & const_str__get_bothseps._ascii.ob_base, - & const_str_environ._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - &_Py_ID(join), - & const_str_fsdecode._ascii.ob_base, - &_Py_ID(get), - & const_str_basename._ascii.ob_base, - & const_str_dirname._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[471]; - } -ntpath_toplevel_consts_27_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 470, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x08\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x14\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x13\x88\x05\xd8\x0b\x0f\x8f\x3f\x8a\x3f\x98\x35\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x0b\xd8\x0b\x0c\x8d\x63\x90\x24\x89\x69\x8c\x69\x80\x71\x80\x41\xd8\x0a\x0b\x88\x61\x8a\x25\x88\x25\x90\x44\x98\x11\x94\x47\xa5\x3d\xb0\x14\xd1\x23\x36\xd4\x23\x36\xd0\x14\x36\xd0\x14\x36\xd8\x08\x09\x88\x51\x89\x06\x88\x01\xf0\x03\x00\x0b\x0c\x88\x61\x8a\x25\x88\x25\x90\x44\x98\x11\x94\x47\xa5\x3d\xb0\x14\xd1\x23\x36\xd4\x23\x36\xd0\x14\x36\xd0\x14\x36\xf0\x06\x00\x08\x15\x9d\x02\x9c\x0a\xd0\x07\x22\xd0\x07\x22\xdd\x13\x15\x94\x3a\x98\x6d\xd4\x13\x2c\x88\x08\x88\x08\xd8\x0d\x17\x9d\x32\x9c\x3a\xd0\x0d\x25\xd0\x0d\x25\xd8\x0f\x13\x88\x0b\xf0\x04\x03\x09\x17\xdd\x14\x16\x94\x4a\x98\x7b\xd4\x14\x2b\x88\x45\x88\x45\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x17\xf0\x00\x01\x09\x17\xf0\x00\x01\x09\x17\xd8\x14\x16\x88\x45\x88\x45\x88\x45\xf0\x03\x01\x09\x17\xf8\xf8\xf8\xe5\x13\x17\x98\x05\x9d\x72\x9c\x7a\xa8\x2a\xd4\x1f\x35\xd1\x13\x36\xd4\x13\x36\x88\x08\xe0\x07\x08\x88\x41\x82\x76\x80\x76\xd8\x16\x1a\x98\x31\x98\x51\x98\x33\x94\x69\x88\x0b\xdd\x0b\x15\x90\x6b\xa5\x35\xd1\x0b\x29\xd4\x0b\x29\xf0\x00\x01\x09\x33\xdd\x1a\x1c\x9c\x2b\xa0\x6b\xd1\x1a\x32\xd4\x1a\x32\x88\x4b\xdd\x17\x19\x94\x7a\x97\x7e\x92\x7e\xa0\x6a\xd1\x17\x31\xd4\x17\x31\x88\x0c\xe0\x0b\x16\x98\x2c\xd2\x0b\x26\xd0\x0b\x26\xf0\x0c\x00\x10\x1c\x9d\x78\xa8\x08\xd1\x1f\x31\xd4\x1f\x31\xd2\x0f\x31\xd0\x0f\x31\xd8\x17\x1b\x90\x0b\xdd\x17\x1b\x9d\x47\xa0\x48\xd1\x1c\x2d\xd4\x1c\x2d\xa8\x7b\xd1\x17\x3b\xd4\x17\x3b\x88\x48\xe5\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x01\x05\x29\xdd\x13\x15\x94\x3b\x98\x78\xd1\x13\x28\xd4\x13\x28\x88\x08\xe0\x0b\x13\x90\x64\x98\x31\x98\x32\x98\x32\x94\x68\xd1\x0b\x1e\xd0\x04\x1e", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -ntpath_toplevel_consts_27_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc3\x08\x12\x43\x1b\x00\xc3\x1b\x0c\x43\x2a\x03\xc3\x29\x01\x43\x2a\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_tilde = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "tilde", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_userhome = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "userhome", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_drive = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "drive", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_target_user = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "target_user", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_current_user = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "current_user", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -ntpath_toplevel_consts_27_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(path), - & const_str_tilde._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_n._ascii.ob_base, - & const_str_userhome._ascii.ob_base, - & const_str_drive._ascii.ob_base, - & const_str_target_user._ascii.ob_base, - & const_str_current_user._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(934) -ntpath_toplevel_consts_27 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 467, - }, - .co_consts = & ntpath_toplevel_consts_27_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_27_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_27_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 319, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_expanduser._ascii.ob_base, - .co_qualname = & const_str_expanduser._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_27_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x01\x7d\x01\x6e\x02\x64\x02\x7d\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x64\x03\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7d\x02\x7c\x02\x7c\x03\x6b\x00\x00\x00\x00\x00\x72\x39\x7c\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x22\x7c\x02\x64\x03\x7a\x0d\x00\x00\x7d\x02\x7c\x02\x7c\x03\x6b\x00\x00\x00\x00\x00\x72\x17\x7c\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\xb0\x22\x64\x04\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x13\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x56\x64\x05\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x12\x23\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x07\x7d\x05\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x64\x03\x6b\x03\x00\x00\x00\x00\x72\x8a\x7c\x00\x64\x03\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x06\x7c\x07\x6b\x03\x00\x00\x00\x00\x72\x32\x7c\x07\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x7c\x00\x53\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x00\x7c\x02\x64\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[103]; - } -ntpath_toplevel_consts_28_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 102, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x78\x70\x61\x6e\x64\x20\x73\x68\x65\x6c\x6c\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x66\x6f\x72\x6d\x73\x20\x24\x76\x61\x72\x2c\x20\x24\x7b\x76\x61\x72\x7d\x20\x61\x6e\x64\x20\x25\x76\x61\x72\x25\x2e\x0a\x0a\x20\x20\x20\x20\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x61\x72\x65\x20\x6c\x65\x66\x74\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -ntpath_toplevel_consts_28_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_-", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_environb = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "environb", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -ntpath_toplevel_consts_28_consts_11 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "$", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -ntpath_toplevel_consts_28_consts_13 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "'", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[18]; - }_object; - } -ntpath_toplevel_consts_28_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 18, - }, - .ob_item = { - & ntpath_toplevel_consts_28_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[36]), - (PyObject *)&_Py_SINGLETON(bytes_characters[37]), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & ntpath_toplevel_consts_28_consts_5._ascii.ob_base, - & const_str_ascii._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[39]), - (PyObject *)&_Py_SINGLETON(bytes_characters[123]), - (PyObject *)&_Py_SINGLETON(bytes_characters[125]), - & const_str_environb._ascii.ob_base, - & ntpath_toplevel_consts_28_consts_11._ascii.ob_base, - &_Py_STR(percent), - & ntpath_toplevel_consts_28_consts_13._ascii.ob_base, - &_Py_STR(open_br), - &_Py_STR(close_br), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_string = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "string", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_ascii_letters = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ascii_letters", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_digits = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "digits", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -ntpath_toplevel_consts_28_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_string._ascii.ob_base, - & const_str_ascii_letters._ascii.ob_base, - & const_str_digits._ascii.ob_base, - &_Py_ID(getattr), - & const_str_environ._ascii.ob_base, - &_Py_ID(len), - & const_str_index._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[1317]; - } -ntpath_toplevel_consts_28_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 1316, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x08\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x15\x05\x1d\xd8\x0b\x0f\x90\x74\xd0\x0b\x1b\xd0\x0b\x1b\xa0\x04\xa8\x44\xd0\x20\x30\xd0\x20\x30\xd8\x13\x17\x88\x4b\xd8\x08\x15\x88\x0d\x88\x0d\x88\x0d\xdd\x13\x18\x98\x16\xd4\x19\x2d\xb0\x06\xb4\x0d\xd1\x19\x3d\xc0\x04\xd1\x19\x44\xc0\x67\xd1\x13\x4e\xd4\x13\x4e\x88\x08\xd8\x10\x15\x88\x05\xd8\x12\x16\x88\x07\xd8\x10\x14\x88\x05\xd8\x11\x15\x88\x06\xd8\x11\x15\x88\x06\xdd\x12\x19\x9d\x22\x98\x6a\xa8\x24\xd1\x12\x2f\xd4\x12\x2f\x88\x07\x88\x07\xe0\x0b\x0e\x90\x64\x88\x3f\x88\x3f\x98\x73\xa8\x24\x98\x7f\x98\x7f\xd8\x13\x17\x88\x4b\xd8\x08\x15\x88\x0d\x88\x0d\x88\x0d\xd8\x13\x19\xd4\x13\x27\xa8\x26\xac\x2d\xd1\x13\x37\xb8\x24\xd1\x13\x3e\x88\x08\xd8\x10\x14\x88\x05\xd8\x12\x15\x88\x07\xd8\x10\x13\x88\x05\xd8\x11\x14\x88\x06\xd8\x11\x14\x88\x06\xdd\x12\x14\x94\x2a\x88\x07\xd8\x0a\x0e\x88\x72\x90\x01\x88\x72\x8c\x28\x80\x43\xd8\x0c\x0d\x80\x45\xdd\x0e\x11\x90\x24\x89\x69\x8c\x69\x80\x47\xd8\x0a\x0f\x90\x27\x8a\x2f\x89\x2f\xd8\x0c\x10\x90\x15\x90\x75\x98\x51\x91\x77\x90\x1d\xd4\x0c\x1f\x88\x01\xd8\x0b\x0c\x90\x05\x8a\x3a\x88\x3a\xd8\x13\x17\x98\x05\xa0\x01\x99\x09\x98\x0a\x98\x0a\xd4\x13\x23\x88\x44\xdd\x16\x19\x98\x24\x91\x69\x94\x69\x88\x47\xf0\x02\x05\x0d\x24\xd8\x18\x1c\x9f\x0a\x9a\x0a\xa0\x31\x99\x0d\x9c\x0d\x90\x05\xd8\x10\x13\x90\x71\x98\x34\xa0\x0a\xa0\x15\xa8\x11\xa1\x19\xa0\x0a\xd4\x1b\x2b\xd1\x17\x2b\xd1\x10\x2b\x90\x03\x91\x03\xf8\xdd\x13\x1d\xf0\x00\x02\x0d\x24\xf0\x00\x02\x0d\x24\xf0\x00\x02\x0d\x24\xd8\x10\x13\x90\x71\x98\x34\x91\x78\x91\x0f\x90\x03\xd8\x18\x1f\xa0\x21\x99\x0b\x90\x05\x90\x05\x91\x05\xf0\x05\x02\x0d\x24\xf8\xf8\xf8\xf0\x06\x00\x0e\x0f\x90\x27\x8a\x5c\x88\x5c\xd8\x0f\x13\x90\x45\x98\x41\x91\x49\x98\x65\xa0\x61\x99\x69\xd0\x14\x27\xd4\x0f\x28\xa8\x47\xd2\x0f\x33\xd0\x0f\x33\xd8\x10\x13\x90\x71\x91\x08\x90\x03\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\x91\x05\xe0\x17\x1b\x98\x45\xa0\x21\x99\x47\x98\x48\x98\x48\x94\x7e\x90\x04\xdd\x1a\x1d\x98\x64\x99\x29\x9c\x29\x90\x07\xf0\x02\x0e\x11\x21\xd8\x1c\x20\x9f\x4a\x9a\x4a\xa0\x77\xd1\x1c\x2f\xd4\x1c\x2f\x90\x45\xf0\x0a\x00\x1b\x1f\x98\x76\xa0\x05\x98\x76\x9c\x2c\x90\x43\xf0\x02\x06\x15\x38\xd8\x1b\x22\x98\x3f\xdd\x24\x26\xa4\x4b\xb5\x02\xb4\x0a\xbd\x32\xbc\x3b\xc0\x73\xd1\x3b\x4b\xd4\x3b\x4b\xd4\x30\x4c\xd1\x24\x4d\xd4\x24\x4d\x98\x45\x98\x45\xe0\x24\x2b\xa8\x43\xa4\x4c\x98\x45\xf8\xf8\xdd\x1b\x23\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xd8\x20\x27\xa8\x23\xa1\x0d\xb0\x07\xd1\x20\x37\x98\x05\x98\x05\x98\x05\xf0\x03\x01\x15\x38\xf8\xf8\xf8\xe0\x14\x17\x98\x35\x91\x4c\x90\x43\x91\x43\xf8\xf5\x19\x00\x18\x22\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xd8\x14\x17\x98\x37\xa0\x54\x99\x3e\xd1\x14\x29\x90\x43\xd8\x1c\x23\xa0\x61\x99\x4b\x90\x45\x90\x45\x91\x45\xf0\x05\x02\x11\x28\xf8\xf8\xf8\xf0\x1a\x00\x0e\x0f\x90\x26\x8a\x5b\x89\x5b\xd8\x0f\x13\x90\x45\x98\x41\x91\x49\x98\x65\xa0\x61\x99\x69\xd0\x14\x27\xd4\x0f\x28\xa8\x46\xd2\x0f\x32\xd0\x0f\x32\xd8\x10\x13\x90\x71\x91\x08\x90\x03\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\x91\x05\xd8\x11\x15\x90\x65\x98\x61\x91\x69\xa0\x05\xa8\x01\xa1\x09\xd0\x16\x29\xd4\x11\x2a\xa8\x65\xd2\x11\x33\xd0\x11\x33\xd8\x17\x1b\x98\x45\xa0\x21\x99\x47\x98\x48\x98\x48\x94\x7e\x90\x04\xdd\x1a\x1d\x98\x64\x99\x29\x9c\x29\x90\x07\xf0\x02\x0e\x11\x21\xd8\x1c\x20\x9f\x4a\x9a\x4a\xa0\x76\xd1\x1c\x2e\xd4\x1c\x2e\x90\x45\xf0\x0a\x00\x1b\x1f\x98\x76\xa0\x05\x98\x76\x9c\x2c\x90\x43\xf0\x02\x06\x15\x3e\xd8\x1b\x22\x98\x3f\xdd\x24\x26\xa4\x4b\xb5\x02\xb4\x0a\xbd\x32\xbc\x3b\xc0\x73\xd1\x3b\x4b\xd4\x3b\x4b\xd4\x30\x4c\xd1\x24\x4d\xd4\x24\x4d\x98\x45\x98\x45\xe0\x24\x2b\xa8\x43\xa4\x4c\x98\x45\xf8\xf8\xdd\x1b\x23\xf0\x00\x01\x15\x3e\xf0\x00\x01\x15\x3e\xf0\x00\x01\x15\x3e\xd8\x20\x26\xa8\x15\xa1\x0e\xb0\x13\xd1\x20\x34\xb0\x76\xd1\x20\x3d\x98\x05\x98\x05\x98\x05\xf0\x03\x01\x15\x3e\xf8\xf8\xf8\xe0\x14\x17\x98\x35\x91\x4c\x90\x43\x90\x43\xf8\xf5\x19\x00\x18\x22\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xf0\x00\x02\x11\x28\xd8\x14\x17\x98\x36\xa0\x45\x99\x3e\xa8\x44\xd1\x1b\x30\xd1\x14\x30\x90\x43\xd8\x1c\x23\xa0\x61\x99\x4b\x90\x45\x90\x45\x90\x45\xf0\x05\x02\x11\x28\xf8\xf8\xf8\xf0\x1c\x00\x17\x1b\x98\x32\x98\x41\x98\x32\x94\x68\x90\x03\xd8\x10\x15\x98\x11\x91\x0a\x90\x05\xd8\x14\x18\x98\x15\x98\x75\xa0\x71\x99\x79\x98\x1f\xd4\x14\x29\x90\x01\xd8\x16\x17\xf0\x00\x03\x11\x2e\x98\x41\xa0\x18\x98\x4d\x98\x4d\xd8\x14\x17\x98\x31\x91\x48\x90\x43\xd8\x14\x19\x98\x51\x91\x4a\x90\x45\xd8\x18\x1c\x98\x55\xa0\x35\xa8\x31\xa1\x39\x98\x5f\xd4\x18\x2d\x90\x41\xf0\x07\x00\x17\x18\xf0\x00\x03\x11\x2e\x98\x41\xa0\x18\x98\x4d\x98\x4d\xf0\x08\x06\x11\x29\xd8\x17\x1e\x90\x7f\xdd\x20\x22\xa4\x0b\xad\x42\xac\x4a\xb5\x72\xb4\x7b\xc0\x33\xd1\x37\x47\xd4\x37\x47\xd4\x2c\x48\xd1\x20\x49\xd4\x20\x49\x98\x05\x98\x05\xe0\x20\x27\xa8\x03\xa4\x0c\x98\x05\xf8\xf8\xdd\x17\x1f\xf0\x00\x01\x11\x29\xf0\x00\x01\x11\x29\xf0\x00\x01\x11\x29\xd8\x1c\x22\xa0\x53\x99\x4c\x90\x45\x90\x45\x90\x45\xf0\x03\x01\x11\x29\xf8\xf8\xf8\xe0\x10\x13\x90\x75\x91\x0c\x90\x03\xd8\x13\x14\xf0\x00\x01\x11\x1f\xd8\x14\x19\x98\x51\x91\x4a\x90\x45\xf8\xe0\x0c\x0f\x90\x31\x89\x48\x88\x43\xd8\x08\x0d\x90\x11\x89\x0a\x88\x05\xf0\x57\x02\x00\x0b\x10\x90\x27\x8a\x2f\x89\x2f\xf0\x58\x02\x00\x0c\x0f\x80\x4a", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[112]; - } -ntpath_toplevel_consts_28_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 111, - }, - .ob_shash = -1, - .ob_sval = "\xc4\x01\x28\x44\x2b\x00\xc4\x2b\x17\x45\x06\x03\xc5\x05\x01\x45\x06\x03\xc6\x0c\x15\x48\x0d\x00\xc6\x2c\x41\x01\x47\x2e\x00\xc7\x2e\x12\x48\x03\x03\xc8\x02\x01\x48\x03\x03\xc8\x0d\x17\x48\x28\x03\xc8\x27\x01\x48\x28\x03\xca\x03\x15\x4c\x06\x00\xca\x23\x41\x01\x4b\x25\x00\xcb\x25\x15\x4b\x3d\x03\xcb\x3c\x01\x4b\x3d\x03\xcc\x06\x1a\x4c\x23\x03\xcc\x22\x01\x4c\x23\x03\xcd\x26\x41\x01\x4e\x28\x00\xce\x28\x0f\x4e\x3a\x03\xce\x39\x01\x4e\x3a\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_varchars = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "varchars", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_quote = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "quote", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_percent = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "percent", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_brace = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "brace", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_rbrace = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "rbrace", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_dollar = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dollar", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_res = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "res", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_pathlen = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pathlen", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_var = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "var", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -ntpath_toplevel_consts_28_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - &_Py_ID(path), - & const_str_string._ascii.ob_base, - & const_str_varchars._ascii.ob_base, - & const_str_quote._ascii.ob_base, - & const_str_percent._ascii.ob_base, - & const_str_brace._ascii.ob_base, - & const_str_rbrace._ascii.ob_base, - & const_str_dollar._ascii.ob_base, - & const_str_environ._ascii.ob_base, - & const_str_res._ascii.ob_base, - & const_str_index._ascii.ob_base, - & const_str_pathlen._ascii.ob_base, - & const_str_c._ascii.ob_base, - & const_str_var._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(1978) -ntpath_toplevel_consts_28 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 989, - }, - .co_consts = & ntpath_toplevel_consts_28_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_28_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_28_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 380, - .co_nlocalsplus = 15, - .co_nlocals = 15, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_28_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_57_consts_9_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_expandvars._ascii.ob_base, - .co_qualname = & const_str_expandvars._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_28_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x4f\x64\x01\x7c\x00\x76\x01\x72\x06\x64\x02\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x64\x03\x64\x04\x6c\x04\x7d\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x64\x05\x7a\x00\x00\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x07\x7d\x03\x64\x02\x7d\x04\x64\x08\x7d\x05\x64\x09\x7d\x06\x64\x01\x7d\x07\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x64\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x6e\x36\x64\x0b\x7c\x00\x76\x01\x72\x06\x64\x0c\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x64\x03\x64\x04\x6c\x04\x7d\x01\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x64\x05\x7a\x00\x00\x00\x7d\x02\x64\x0d\x7d\x03\x64\x0c\x7d\x04\x64\x0e\x7d\x05\x64\x0f\x7d\x06\x64\x0b\x7d\x07\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x00\x64\x04\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x64\x03\x7d\x0a\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x0a\x7c\x0b\x6b\x00\x00\x00\x00\x00\x90\x03\x72\x0a\x7c\x00\x7c\x0a\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0c\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x65\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x64\x04\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x09\x7c\x0c\x7c\x00\x64\x04\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x90\x02\x6e\xa4\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x7c\x09\x7c\x0c\x7c\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x7c\x0b\x64\x10\x7a\x0a\x00\x00\x7d\x0a\x59\x00\x90\x02\x6e\x8a\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\xdc\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x09\x7c\x0c\x7a\x0d\x00\x00\x7d\x09\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x90\x02\x6e\x60\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x64\x04\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x64\x04\x7c\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x09\x00\x7c\x08\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x08\x7c\x08\x7c\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x18\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0b\x01\x00\x7c\x04\x7c\x0d\x7a\x00\x00\x00\x7c\x04\x7a\x00\x00\x00\x7d\x0e\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x09\x7c\x0e\x7a\x0d\x00\x00\x7d\x09\x90\x01\x6e\xc2\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x7c\x09\x7c\x04\x7c\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x7c\x0b\x64\x10\x7a\x0a\x00\x00\x7d\x0a\x59\x00\x90\x01\x6e\xa8\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x7c\x07\x6b\x02\x00\x00\x00\x00\x90\x01\x72\x98\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x09\x7c\x0c\x7a\x0d\x00\x00\x7d\x09\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x90\x01\x6e\x7d\x7c\x00\x7c\x0a\x64\x10\x7a\x00\x00\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6b\x02\x00\x00\x00\x00\x72\xc0\x7c\x00\x7c\x0a\x64\x11\x7a\x00\x00\x00\x64\x04\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x64\x04\x7c\x0a\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x09\x00\x7c\x08\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x08\x7c\x08\x7c\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x1b\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0e\x01\x00\x7c\x07\x7c\x05\x7a\x00\x00\x00\x7c\x0d\x7a\x00\x00\x00\x7c\x06\x7a\x00\x00\x00\x7d\x0e\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x09\x7c\x0e\x7a\x0d\x00\x00\x7d\x09\x6e\xc9\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x13\x01\x00\x7c\x09\x7c\x07\x7c\x05\x7a\x00\x00\x00\x7c\x00\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x09\x7c\x0b\x64\x10\x7a\x0a\x00\x00\x7d\x0a\x59\x00\x6e\xad\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x64\x04\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x7c\x00\x7c\x0a\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0c\x72\x21\x7c\x0c\x7c\x02\x76\x00\x72\x1d\x7c\x0d\x7c\x0c\x7a\x0d\x00\x00\x7d\x0d\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x7c\x00\x7c\x0a\x7c\x0a\x64\x10\x7a\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0c\x72\x04\x7c\x0c\x7c\x02\x76\x00\xb0\x1d\x09\x00\x7c\x08\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x08\x7c\x08\x7c\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x6e\x15\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x08\x01\x00\x7c\x07\x7c\x0d\x7a\x00\x00\x00\x7d\x0e\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x09\x7c\x0e\x7a\x0d\x00\x00\x7d\x09\x7c\x0c\x72\x05\x7c\x0a\x64\x10\x7a\x17\x00\x00\x7d\x0a\x6e\x05\x7c\x09\x7c\x0c\x7a\x0d\x00\x00\x7d\x09\x7c\x0a\x64\x10\x7a\x0d\x00\x00\x7d\x0a\x7c\x0a\x7c\x0b\x6b\x00\x00\x00\x00\x00\x90\x03\xb0\x0a\x7c\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__path_normpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_path_normpath", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_29 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__path_normpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[49]; - } -ntpath_toplevel_consts_30_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 48, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Normalize path, eliminating double slashes, etc.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_30_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & ntpath_toplevel_consts_30_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - &_Py_STR(dot), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -ntpath_toplevel_consts_30_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str__path_normpath._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[93]; - } -ntpath_toplevel_consts_30_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 92, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x11\x8c\x79\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x01\x09\x4a\x01\xdd\x13\x15\x94\x3b\x9d\x7e\xad\x62\xac\x6b\xb8\x24\xd1\x2e\x3f\xd4\x2e\x3f\xd1\x1f\x40\xd4\x1f\x40\xd1\x13\x41\xd4\x13\x41\xd0\x13\x49\xc0\x54\xd0\x0c\x49\xdd\x0f\x1d\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xd0\x0f\x2a\xa0\x73\xd0\x08\x2a", -}; -static - struct _PyCode_DEF(224) -ntpath_toplevel_consts_30 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 112, - }, - .co_consts = & ntpath_toplevel_consts_30_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_30_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 538, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_normpath._ascii.ob_base, - .co_qualname = & const_str_normpath._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_30_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x35\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x01\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -ntpath_toplevel_consts_31_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "..", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -ntpath_toplevel_consts_31_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & ntpath_toplevel_consts_30_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[92]), - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - &_Py_STR(dot), - & ntpath_toplevel_consts_2._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -ntpath_toplevel_consts_31_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - &_Py_ID(replace), - & const_str_splitdrive._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str_lstrip._ascii.ob_base, - & const_str_split._ascii.ob_base, - &_Py_ID(len), - & const_str_endswith._ascii.ob_base, - &_Py_ID(append), - &_Py_ID(join), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[429]; - } -ntpath_toplevel_consts_31_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 428, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x11\x8c\x79\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x09\x09\x1a\xd8\x12\x17\x88\x43\xd8\x15\x19\x88\x46\xd8\x15\x19\x88\x46\xd8\x15\x1a\x88\x46\x88\x46\xe0\x12\x16\x88\x43\xd8\x15\x18\x88\x46\xd8\x15\x18\x88\x46\xd8\x15\x19\x88\x46\xd8\x0f\x13\x8f\x7c\x8a\x7c\x98\x46\xa0\x43\xd1\x0f\x28\xd4\x0f\x28\x88\x04\xdd\x17\x21\xa0\x24\xd1\x17\x27\xd4\x17\x27\x89\x0c\x88\x06\x90\x04\xf0\x06\x00\x0c\x10\x8f\x3f\x8a\x3f\x98\x33\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x02\x09\x24\xd8\x0c\x12\x90\x63\x89\x4d\x88\x46\xd8\x13\x17\x97\x3b\x92\x3b\x98\x73\xd1\x13\x23\xd4\x13\x23\x88\x44\xe0\x10\x14\x97\x0a\x92\x0a\x98\x33\x91\x0f\x94\x0f\x88\x05\xd8\x0c\x0d\x88\x01\xd8\x0e\x0f\x95\x23\x90\x65\x91\x2a\x94\x2a\x8a\x6e\x88\x6e\xd8\x13\x18\x98\x11\x94\x38\xf0\x00\x0b\x0d\x17\x98\x75\xa0\x51\x9c\x78\xa8\x36\xd2\x1f\x31\xd0\x1f\x31\xd8\x14\x19\x98\x21\x90\x48\x90\x48\xd8\x11\x16\x90\x71\x94\x18\x98\x56\xd2\x11\x23\xd0\x11\x23\xd8\x13\x14\x90\x71\x92\x35\x90\x35\x98\x55\xa0\x31\xa0\x51\xa1\x33\x9c\x5a\xa8\x36\xd2\x1d\x31\xd0\x1d\x31\xd8\x18\x1d\x98\x61\xa0\x01\x99\x63\xa0\x21\xa0\x41\xa1\x23\x98\x67\x98\x0e\xd8\x14\x15\x98\x11\x91\x46\x90\x41\x90\x41\xd8\x15\x16\x98\x21\x92\x56\x90\x56\xa0\x06\xa7\x0f\xa2\x0f\xb0\x03\xd1\x20\x34\xd4\x20\x34\x90\x56\xd8\x18\x1d\x98\x61\x98\x08\x98\x08\xe0\x14\x15\x98\x11\x91\x46\x90\x41\x90\x41\xe0\x10\x11\x90\x51\x91\x06\x90\x01\xf0\x19\x00\x0f\x10\x95\x23\x90\x65\x91\x2a\x94\x2a\x8a\x6e\x88\x6e\xf0\x1c\x00\x10\x16\xf0\x00\x01\x09\x21\x98\x65\xf0\x00\x01\x09\x21\xd8\x0c\x11\x8f\x4c\x8a\x4c\x98\x16\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd8\x0f\x15\x98\x03\x9f\x08\x9a\x08\xa0\x15\x99\x0f\x9c\x0f\xd1\x0f\x27\xd0\x08\x27", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_comps = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "comps", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -ntpath_toplevel_consts_31_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(path), - & const_str_sep._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_prefix._ascii.ob_base, - & const_str_comps._ascii.ob_base, - & const_str_i._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(744) -ntpath_toplevel_consts_31 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 372, - }, - .co_consts = & ntpath_toplevel_consts_31_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_31_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 496, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_normpath._ascii.ob_base, - .co_qualname = & const_str_normpath._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_31_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x09\x64\x01\x7d\x01\x64\x02\x7d\x02\x64\x03\x7d\x03\x64\x04\x7d\x04\x6e\x08\x64\x05\x7d\x01\x64\x06\x7d\x02\x64\x07\x7d\x03\x64\x08\x7d\x04\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x05\x7d\x00\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x05\x7c\x01\x7a\x0d\x00\x00\x7d\x05\x7c\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x64\x09\x7d\x07\x7c\x07\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\x72\x87\x7c\x06\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x7c\x06\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x04\x7c\x06\x7c\x07\x3d\x00\x6e\x5c\x7c\x06\x7c\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x4b\x7c\x07\x64\x09\x6b\x04\x00\x00\x00\x00\x72\x20\x7c\x06\x7c\x07\x64\x0a\x7a\x0a\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x03\x00\x00\x00\x00\x72\x11\x7c\x06\x7c\x07\x64\x0a\x7a\x0a\x00\x00\x7c\x07\x64\x0a\x7a\x00\x00\x00\x85\x02\x3d\x00\x7c\x07\x64\x0a\x7a\x17\x00\x00\x7d\x07\x6e\x2a\x7c\x07\x64\x09\x6b\x02\x00\x00\x00\x00\x72\x19\x7c\x05\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x04\x7c\x06\x7c\x07\x3d\x00\x6e\x0b\x7c\x07\x64\x0a\x7a\x0d\x00\x00\x7d\x07\x6e\x05\x7c\x07\x64\x0a\x7a\x0d\x00\x00\x7d\x07\x7c\x07\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x00\x00\x00\x00\x00\xb0\x87\x7c\x05\x73\x17\x7c\x06\x73\x15\x7c\x06\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x05\x7c\x01\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[165]; - } -ntpath_toplevel_consts_32_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 164, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x6f\x66\x20\x61\x20\x70\x61\x74\x68\x20\x61\x73\x20\x61\x20\x66\x61\x6c\x6c\x62\x61\x63\x6b\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x6e\x20\x63\x61\x73\x65\x0a\x20\x20\x20\x20\x60\x6e\x74\x2e\x5f\x67\x65\x74\x66\x75\x6c\x6c\x70\x61\x74\x68\x6e\x61\x6d\x65\x60\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x73\x20\x4f\x53\x45\x72\x72\x6f\x72\x2e\x20\x53\x65\x65\x20\x62\x70\x6f\x2d\x33\x31\x30\x34\x37\x20\x66\x6f\x72\x0a\x20\x20\x20\x20\x6d\x6f\x72\x65\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_32_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & ntpath_toplevel_consts_32_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_getcwdb = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getcwdb", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -ntpath_toplevel_consts_32_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_getcwdb._ascii.ob_base, - & const_str_getcwd._ascii.ob_base, - &_Py_ID(join), - & const_str_normpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__abspath_fallback = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_abspath_fallback", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[99]; - } -ntpath_toplevel_consts_32_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 98, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0e\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x0b\x10\x90\x14\x89\x3b\x8c\x3b\xf0\x00\x05\x05\x1f\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x03\x09\x1e\xdd\x12\x14\x94\x2a\x91\x2c\x94\x2c\x88\x43\x88\x43\xe5\x12\x14\x94\x29\x91\x2b\x94\x2b\x88\x43\xdd\x0f\x13\x90\x43\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x13\x90\x44\x89\x3e\x8c\x3e\xd0\x04\x19", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_cwd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cwd", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_32_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(path), - & const_str_cwd._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(254) -ntpath_toplevel_consts_32 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 127, - }, - .co_consts = & ntpath_toplevel_consts_32_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_32_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 546, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str__abspath_fallback._ascii.ob_base, - .co_qualname = & const_str__abspath_fallback._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_32_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x4c\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x13\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__getfullpathname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_getfullpathname", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_33 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__getfullpathname._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -ntpath_toplevel_consts_34_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the absolute version of a path.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_34_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & ntpath_toplevel_consts_34_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -ntpath_toplevel_consts_34_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__getfullpathname._ascii.ob_base, - & const_str_normpath._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str__abspath_fallback._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[80]; - } -ntpath_toplevel_consts_34_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 79, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x09\x2b\xdd\x13\x23\xa5\x48\xa8\x54\xa1\x4e\xa4\x4e\xd1\x13\x33\xd4\x13\x33\xd0\x0c\x33\xf8\xdd\x10\x17\x9d\x1a\xd0\x0f\x24\xf0\x00\x01\x09\x2b\xf0\x00\x01\x09\x2b\xf0\x00\x01\x09\x2b\xdd\x13\x24\xa0\x54\xd1\x13\x2a\xd4\x13\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xf0\x03\x01\x09\x2b\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -ntpath_toplevel_consts_34_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x82\x1b\x1e\x00\x9e\x20\x41\x01\x03\xc1\x00\x01\x41\x01\x03", -}; -static - struct _PyCode_DEF(136) -ntpath_toplevel_consts_34 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 68, - }, - .co_consts = & ntpath_toplevel_consts_34_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_34_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_34_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 570, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_abspath._ascii.ob_base, - .co_qualname = & const_str_abspath._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_34_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x12\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__getfinalpathname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_getfinalpathname", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_readlink = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "readlink", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_35 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__getfinalpathname._ascii.ob_base, - & const_str_readlink._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_4390 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 4390 }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_4392 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 4392 }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_4393 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 4393 }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -ntpath_toplevel_consts_36_consts_1 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 21], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 50], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 67], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 87], - & const_int_4390.ob_base.ob_base, - & const_int_4392.ob_base.ob_base, - & const_int_4393.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_36_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & ntpath_toplevel_consts_36_consts_1._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str__nt_readlink = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_nt_readlink", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_winerror = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "winerror", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -ntpath_toplevel_consts_36_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str_set._ascii.ob_base, - & const_str_normcase._ascii.ob_base, - &_Py_ID(add), - & const_str__nt_readlink._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - & const_str_islink._ascii.ob_base, - & const_str_normpath._ascii.ob_base, - &_Py_ID(join), - & const_str_dirname._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_winerror._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__readlink_deep = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_readlink_deep", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[268]; - } -ntpath_toplevel_consts_36_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 267, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x1e\x00\x1c\x4c\x01\xd0\x08\x18\xe5\x0f\x12\x89\x75\x8c\x75\x88\x04\xdd\x0e\x16\x90\x74\x89\x6e\x8c\x6e\xa0\x44\xd0\x0e\x28\xd0\x0e\x28\xd8\x0c\x10\x8f\x48\x8a\x48\x95\x58\x98\x64\x91\x5e\x94\x5e\xd1\x0c\x24\xd4\x0c\x24\xd0\x0c\x24\xf0\x02\x13\x0d\x16\xd8\x1b\x1f\x90\x08\xdd\x17\x23\xa0\x44\xd1\x17\x29\xd4\x17\x29\x90\x04\xf5\x06\x00\x18\x1d\x98\x54\x91\x7b\x94\x7b\xf0\x00\x07\x11\x43\x01\xf5\x08\x00\x1c\x22\xa0\x28\xd1\x1b\x2b\xd4\x1b\x2b\xf0\x00\x02\x15\x1e\xd8\x1f\x27\x98\x04\xd8\x18\x1d\xdd\x1b\x23\xa5\x44\xad\x17\xb0\x18\xd1\x29\x3a\xd4\x29\x3a\xb8\x44\xd1\x24\x41\xd4\x24\x41\xd1\x1b\x42\xd4\x1b\x42\x90\x44\xf8\xf8\xdd\x13\x1a\xf0\x00\x03\x0d\x16\xf0\x00\x03\x0d\x16\xf0\x00\x03\x0d\x16\xd8\x13\x15\x94\x3b\xd0\x22\x32\xd0\x13\x32\xd0\x13\x32\xd8\x14\x19\x90\x45\x90\x45\x90\x45\x90\x45\xd8\x10\x15\xf8\xf8\xf8\xf8\xdd\x13\x1d\xf0\x00\x02\x0d\x16\xf0\x00\x02\x0d\x16\xf0\x00\x02\x0d\x16\xe0\x10\x15\x90\x05\xf0\x05\x02\x0d\x16\xf8\xf8\xf8\xf5\x27\x00\x0f\x17\x90\x74\x89\x6e\x8c\x6e\xa0\x44\xd0\x0e\x28\xd0\x0e\x28\xf0\x2c\x00\x10\x14\x88\x0b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[43]; - } -ntpath_toplevel_consts_36_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 42, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x05\x31\x42\x22\x00\xc1\x37\x2a\x42\x22\x00\xc2\x22\x0a\x43\x0b\x03\xc2\x2c\x09\x42\x3b\x03\xc2\x3a\x01\x42\x3b\x03\xc2\x3b\x0d\x43\x0b\x03\xc3\x0a\x01\x43\x0b\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_allowed_winerror = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "allowed_winerror", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_old_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "old_path", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_ex = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ex", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -ntpath_toplevel_consts_36_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(path), - & const_str_allowed_winerror._ascii.ob_base, - & const_str_seen._ascii.ob_base, - & const_str_old_path._ascii.ob_base, - & const_str_ex._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(450) -ntpath_toplevel_consts_36 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 225, - }, - .co_consts = & ntpath_toplevel_consts_36_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_36_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_36_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 583, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_36_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str__readlink_deep._ascii.ob_base, - .co_qualname = & const_str__readlink_deep._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_36_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x76\x01\x72\xbd\x7c\x02\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x3c\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x03\x7c\x03\x7d\x00\x6e\x68\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x6e\x2c\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x14\x7d\x04\x7c\x04\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x00\x72\x05\x59\x00\x64\x00\x7d\x04\x7e\x04\x6e\x25\x82\x00\x64\x00\x7d\x04\x7e\x04\x77\x01\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x15\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x76\x01\xb0\xbd\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_1920 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 1920 }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_1921 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 1921 }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -ntpath_toplevel_consts_37_consts_1 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 21], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 50], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 53], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 65], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 67], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 87], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 123], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 161], - & const_int_1920.ob_base.ob_base, - & const_int_1921.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_37_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & ntpath_toplevel_consts_37_consts_1._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -ntpath_toplevel_consts_37_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str__getfinalpathname._ascii.ob_base, - &_Py_ID(join), - & const_str_OSError._ascii.ob_base, - & const_str_winerror._ascii.ob_base, - & const_str__readlink_deep._ascii.ob_base, - & const_str_split._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -const_str__getfinalpathname_nonstrict = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_getfinalpathname_nonstrict", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[347]; - } -ntpath_toplevel_consts_37_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 346, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x24\x00\x1c\x58\x01\xd0\x08\x18\xf0\x08\x00\x10\x14\x90\x42\x90\x51\x90\x42\x8c\x78\x88\x04\xd8\x0e\x12\xf0\x00\x17\x09\x3a\xf0\x02\x16\x0d\x3a\xdd\x17\x28\xa8\x14\xd1\x17\x2e\xd4\x17\x2e\x90\x04\xd8\x2b\x2f\xd0\x17\x39\x95\x74\x98\x44\xa0\x24\xd1\x17\x27\xd4\x17\x27\xd0\x17\x27\xb0\x54\xd0\x10\x39\xf8\xdd\x13\x1a\xf0\x00\x13\x0d\x3a\xf0\x00\x13\x0d\x3a\xf0\x00\x13\x0d\x3a\xd8\x13\x15\x94\x3b\xd0\x26\x36\xd0\x13\x36\xd0\x13\x36\xd8\x14\x19\xf0\x02\x09\x11\x19\xf5\x08\x00\x20\x2e\xa8\x64\xd1\x1f\x33\xd4\x1f\x33\x90\x48\xd8\x17\x1f\xa0\x34\xd2\x17\x27\xd0\x17\x27\xd8\x37\x3b\xd0\x1f\x49\x9d\x74\xa0\x48\xa8\x64\xd1\x1f\x33\xd4\x1f\x33\xd0\x1f\x33\xc0\x18\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xd0\x18\x49\xf0\x03\x00\x18\x28\xf8\xe5\x17\x1e\xf0\x00\x02\x11\x19\xf0\x00\x02\x11\x19\xf0\x00\x02\x11\x19\xe0\x14\x18\x90\x44\xf0\x05\x02\x11\x19\xf8\xf8\xf8\xf5\x06\x00\x1e\x23\xa0\x34\x99\x5b\x9c\x5b\x91\x0a\x90\x04\x90\x64\xf0\x08\x00\x14\x18\xf0\x00\x01\x11\x27\xa0\x04\xf0\x00\x01\x11\x27\xd8\x1b\x1f\xa0\x24\x99\x3b\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd0\x14\x26\xd8\x2b\x2f\xd0\x17\x39\x95\x74\x98\x44\xa0\x24\xd1\x17\x27\xd4\x17\x27\xd0\x17\x27\xb0\x54\x90\x04\x90\x04\x90\x04\x90\x04\x90\x04\x90\x04\xf8\xf8\xf8\xf8\xf0\x27\x13\x0d\x3a\xf8\xf8\xf8\xf0\x09\x00\x0f\x13\xf0\x00\x17\x09\x3a\xf0\x30\x00\x10\x14\x88\x0b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[75]; - } -ntpath_toplevel_consts_37_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 74, - }, - .ob_shash = -1, - .ob_sval = "\x90\x22\x33\x00\xb3\x0a\x43\x05\x03\xbd\x0a\x43\x00\x03\xc1\x08\x28\x41\x37\x02\xc1\x30\x01\x43\x05\x03\xc1\x36\x01\x43\x00\x03\xc1\x37\x0a\x42\x04\x05\xc2\x01\x02\x43\x00\x03\xc2\x03\x01\x42\x04\x05\xc2\x04\x1d\x43\x00\x03\xc2\x21\x01\x43\x05\x03\xc2\x27\x14\x43\x00\x03\xc3\x00\x05\x43\x05\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_new_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "new_path", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -ntpath_toplevel_consts_37_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(path), - & const_str_allowed_winerror._ascii.ob_base, - & const_str_tail._ascii.ob_base, - & const_str_ex._ascii.ob_base, - & const_str_new_path._ascii.ob_base, - &_Py_ID(name), - }, - }, -}; -static - struct _PyCode_DEF(408) -ntpath_toplevel_consts_37 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 204, - }, - .co_consts = & ntpath_toplevel_consts_37_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_37_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_37_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 625, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str__getfinalpathname_nonstrict._ascii.ob_base, - .co_qualname = & const_str__getfinalpathname_nonstrict._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_37_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x7c\x00\x64\x00\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x72\xbb\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x02\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x00\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x88\x7d\x03\x7c\x03\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x76\x01\x72\x01\x82\x00\x09\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x04\x7c\x00\x6b\x03\x00\x00\x00\x00\x72\x19\x7c\x02\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x04\x63\x02\x59\x00\x64\x00\x7d\x03\x7e\x03\x53\x00\x6e\x10\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x05\x7c\x00\x72\x0c\x7c\x05\x73\x0a\x7c\x00\x7c\x02\x7a\x00\x00\x00\x63\x02\x59\x00\x64\x00\x7d\x03\x7e\x03\x53\x00\x7c\x02\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x05\x7d\x02\x59\x00\x64\x00\x7d\x03\x7e\x03\x6e\x08\x64\x00\x7d\x03\x7e\x03\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\xb0\xbb\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -ntpath_toplevel_consts_40_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "\\\\?\\", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -ntpath_toplevel_consts_40_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "\\\\", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -ntpath_toplevel_consts_40_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\\\\.\\NUL", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -ntpath_toplevel_consts_40_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\\\\?\\", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -ntpath_toplevel_consts_40_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\\\\.\\NUL", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -ntpath_toplevel_consts_40_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - Py_None, - & ntpath_toplevel_consts_40_consts_1.ob_base.ob_base, - & ntpath_toplevel_consts_18_consts_5.ob_base.ob_base, - & ntpath_toplevel_consts_40_consts_3.ob_base.ob_base, - & ntpath_toplevel_consts_40_consts_4.ob_base.ob_base, - & ntpath_toplevel_consts_40_consts_5._ascii.ob_base, - & ntpath_toplevel_consts_18_consts_9._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_22_consts_6._ascii.ob_base, - & ntpath_toplevel_consts_40_consts_8._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[19]; - }_object; - } -ntpath_toplevel_consts_40_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 19, - }, - .ob_item = { - & const_str_normpath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_getcwdb._ascii.ob_base, - & const_str_normcase._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str_devnull._ascii.ob_base, - & const_str_getcwd._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - &_Py_ID(join), - & const_str__getfinalpathname._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_str._ascii.ob_base, - & const_str_winerror._ascii.ob_base, - & const_str__getfinalpathname_nonstrict._ascii.ob_base, - &_Py_ID(len), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[617]; - } -ntpath_toplevel_consts_40_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 616, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x17\x98\x04\x89\x7e\x8c\x7e\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x0f\x09\x24\xd8\x15\x1f\x88\x46\xd8\x19\x28\x88\x4a\xd8\x1d\x24\x88\x4e\xdd\x12\x14\x94\x2a\x91\x2c\x94\x2c\x88\x43\xe5\x0f\x17\x98\x04\x89\x7e\x8c\x7e\xa5\x18\xad\x22\xac\x2b\xb5\x67\xd1\x2a\x3e\xd4\x2a\x3e\xd1\x21\x3f\xd4\x21\x3f\xd2\x0f\x3f\xd0\x0f\x3f\xd8\x17\x24\x90\x7d\xf0\x03\x00\x10\x40\x01\xf0\x06\x00\x16\x1f\x88\x46\xd8\x19\x27\x88\x4a\xd8\x1d\x23\x88\x4e\xdd\x12\x14\x94\x29\x91\x2b\x94\x2b\x88\x43\xe5\x0f\x17\x98\x04\x89\x7e\x8c\x7e\xa5\x18\xad\x27\xd1\x21\x32\xd4\x21\x32\xd2\x0f\x32\xd0\x0f\x32\xd8\x17\x23\x90\x7c\xd8\x15\x19\x97\x5f\x92\x5f\xa0\x56\xd1\x15\x2c\xd4\x15\x2c\x88\x0a\xd8\x0f\x19\xf0\x00\x01\x09\x23\xa5\x25\xa8\x04\xa1\x2b\xa4\x2b\xf0\x00\x01\x09\x23\xdd\x13\x17\x98\x03\x98\x54\x91\x3f\x94\x3f\x88\x44\xf0\x02\x0f\x09\x35\xdd\x13\x24\xa0\x54\xd1\x13\x2a\xd4\x13\x2a\x88\x44\xd8\x1f\x20\xd0\x0c\x1c\xd0\x0c\x1c\xf8\xdd\x0f\x19\xf0\x00\x07\x09\x22\xf0\x00\x07\x09\x22\xf0\x00\x07\x09\x22\xf0\x0a\x00\x10\x16\xf0\x00\x01\x0d\x31\xdd\x16\x1d\x9d\x63\xa0\x22\x99\x67\x9c\x67\xd1\x16\x26\xd4\x16\x26\xa8\x44\xd0\x10\x30\xdd\x13\x1b\x98\x44\x91\x3e\x94\x3e\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\xf8\xf8\xf8\xf8\xdd\x0f\x16\xf0\x00\x04\x09\x35\xf0\x00\x04\x09\x35\xf0\x00\x04\x09\x35\xd8\x0f\x15\xf0\x00\x01\x0d\x16\xd8\x10\x15\xd8\x1f\x21\x9c\x7b\xd0\x0c\x1c\xdd\x13\x2e\xa8\x74\xd1\x13\x34\xd4\x13\x34\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\x88\x44\xf8\xf8\xf8\xf8\xf0\x09\x04\x09\x35\xf8\xf8\xf8\xf0\x10\x00\x10\x1a\xf0\x00\x13\x09\x21\x98\x64\x9f\x6f\x9a\x6f\xa8\x66\xd1\x1e\x35\xd4\x1e\x35\xf0\x00\x13\x09\x21\xf0\x06\x00\x10\x14\x8f\x7f\x8a\x7f\x98\x7a\xd1\x0f\x2a\xd4\x0f\x2a\xf0\x00\x03\x0d\x2b\xd8\x18\x26\xa8\x14\xad\x63\xb0\x2a\xa9\x6f\xac\x6f\xd0\x2e\x3e\xd0\x2e\x3e\xd4\x29\x3f\xd1\x18\x3f\x90\x05\x90\x05\xe0\x18\x1c\x9d\x53\xa0\x16\x99\x5b\x9c\x5b\x98\x5c\x98\x5c\xd4\x18\x2a\x90\x05\xf0\x04\x0b\x0d\x21\xdd\x13\x24\xa0\x55\xd1\x13\x2b\xd4\x13\x2b\xa8\x74\xd2\x13\x33\xd0\x13\x33\xd8\x1b\x20\x90\x44\xf8\xf8\xdd\x13\x1d\xf0\x00\x03\x0d\x15\xf0\x00\x03\x0d\x15\xf0\x00\x03\x0d\x15\xf0\x06\x00\x11\x15\x90\x04\x90\x04\x90\x04\x90\x04\xf8\xf8\xf8\xf8\xdd\x13\x1a\xf0\x00\x04\x0d\x21\xf0\x00\x04\x0d\x21\xf0\x00\x04\x0d\x21\xf0\x06\x00\x14\x16\x94\x3b\xd0\x22\x32\xd2\x13\x32\xd0\x13\x32\xd8\x1b\x20\x90\x44\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf0\x09\x04\x0d\x21\xf8\xf8\xf8\xf0\x0a\x00\x10\x14\x88\x0b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[67]; - } -ntpath_toplevel_consts_40_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 66, - }, - .ob_shash = -1, - .ob_sval = "\xc3\x2f\x11\x44\x01\x00\xc4\x01\x0a\x45\x2e\x03\xc4\x0b\x2e\x44\x3e\x03\xc4\x3e\x0d\x45\x2e\x03\xc5\x0b\x19\x45\x29\x03\xc5\x29\x05\x45\x2e\x03\xc7\x10\x15\x47\x26\x00\xc7\x26\x0a\x48\x19\x03\xc7\x35\x0d\x48\x19\x03\xc8\x02\x0d\x48\x14\x03\xc8\x14\x05\x48\x19\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_new_unc_prefix = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "new_unc_prefix", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_had_prefix = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "had_prefix", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_initial_winerror = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "initial_winerror", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_spath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spath", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -ntpath_toplevel_consts_40_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(path), - &_Py_ID(strict), - & const_str_prefix._ascii.ob_base, - & const_str_unc_prefix._ascii.ob_base, - & const_str_new_unc_prefix._ascii.ob_base, - & const_str_cwd._ascii.ob_base, - & const_str_had_prefix._ascii.ob_base, - & const_str_initial_winerror._ascii.ob_base, - & const_str_ex._ascii.ob_base, - & const_str_spath._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(1084) -ntpath_toplevel_consts_40 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 542, - }, - .co_consts = & ntpath_toplevel_consts_40_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_40_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_40_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 1, - .co_stacksize = 6, - .co_firstlineno = 674, - .co_nlocalsplus = 10, - .co_nlocals = 10, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_40_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_realpath._ascii.ob_base, - .co_qualname = & const_str_realpath._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_40_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x53\x64\x01\x7d\x02\x64\x02\x7d\x03\x64\x03\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x6e\x40\x64\x05\x7d\x02\x64\x06\x7d\x03\x64\x07\x7d\x04\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x08\x53\x00\x7c\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x73\x1f\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x10\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x09\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x64\x09\x7d\x07\x6e\x70\x23\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x38\x7d\x08\x7c\x01\x72\x1d\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x33\x64\x00\x7d\x08\x7e\x08\x77\x01\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x23\x7d\x08\x7c\x01\x72\x01\x82\x00\x7c\x08\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x08\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x06\x73\xa9\x7c\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x94\x7c\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1b\x7c\x04\x7c\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x09\x6e\x17\x7c\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x09\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x09\x7d\x00\x6e\x36\x23\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x0a\x7d\x08\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x27\x64\x00\x7d\x08\x7e\x08\x77\x01\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x17\x7d\x08\x7c\x08\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x09\x7d\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x6e\x08\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_getwindowsversion = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getwindowsversion", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -ntpath_toplevel_consts_44_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return a relative version of a path", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -ntpath_toplevel_consts_44_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "no path specified", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -ntpath_toplevel_consts_44_consts_9 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path is on mount ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -ntpath_toplevel_consts_44_consts_10 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ", start on mount ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -ntpath_toplevel_consts_44_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "relpath..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[30]; - } -ntpath_toplevel_consts_44_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 29, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd0\x15\x3c\xd0\x15\x3c\xd0\x15\x3c\x98\x41\xb8\x21\xd0\x15\x3c\x90\x61\xd0\x15\x3c\xd0\x15\x3c\xd0\x15\x3c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -ntpath_toplevel_consts_44_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_x._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(22) -ntpath_toplevel_consts_44_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 11, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 769, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_44_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[30]; - } -ntpath_toplevel_consts_44_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 29, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd0\x14\x3a\xd0\x14\x3a\xd0\x14\x3a\x98\x31\xb8\x01\xd0\x14\x3a\x90\x51\xd0\x14\x3a\xd0\x14\x3a\xd0\x14\x3a", -}; -static - struct _PyCode_DEF(22) -ntpath_toplevel_consts_44_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 11, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 770, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_44_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -ntpath_toplevel_consts_44_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & ntpath_toplevel_consts_44_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[92]), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - &_Py_STR(dot), - & ntpath_toplevel_consts_2._ascii.ob_base, - Py_None, - & ntpath_toplevel_consts_44_consts_8._ascii.ob_base, - & ntpath_toplevel_consts_44_consts_9._ascii.ob_base, - & ntpath_toplevel_consts_44_consts_10._ascii.ob_base, - & ntpath_toplevel_consts_44_consts_11.ob_base.ob_base, - & ntpath_toplevel_consts_44_consts_12.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & const_str_relpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[19]; - }_object; - } -ntpath_toplevel_consts_44_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 19, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str_normpath._ascii.ob_base, - & const_str_splitdrive._ascii.ob_base, - & const_str_normcase._ascii.ob_base, - & const_str_split._ascii.ob_base, - & const_str_zip._ascii.ob_base, - &_Py_ID(len), - &_Py_ID(join), - & const_str_TypeError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_BytesWarning._ascii.ob_base, - & const_str_DeprecationWarning._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - & const_str__check_arg_types._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[517]; - } -ntpath_toplevel_consts_44_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 516, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x16\xd8\x0e\x13\x88\x03\xd8\x11\x15\x88\x06\xd8\x11\x16\x88\x06\x88\x06\xe0\x0e\x12\x88\x03\xd8\x11\x14\x88\x06\xd8\x11\x15\x88\x06\xe0\x07\x0c\x80\x7d\xd8\x10\x16\x88\x05\xe0\x0b\x0f\xf0\x00\x01\x05\x2e\xdd\x0e\x18\xd0\x19\x2c\xd1\x0e\x2d\xd4\x0e\x2d\xd0\x08\x2d\xe5\x0c\x0e\x8c\x49\x90\x65\xd1\x0c\x1c\xd4\x0c\x1c\x80\x45\xf0\x02\x18\x05\x0e\xdd\x14\x1b\x9d\x48\xa0\x55\x99\x4f\x9c\x4f\xd1\x14\x2c\xd4\x14\x2c\x88\x09\xdd\x13\x1a\x9d\x38\xa0\x44\x99\x3e\x9c\x3e\xd1\x13\x2a\xd4\x13\x2a\x88\x08\xdd\x22\x2c\xa8\x59\xd1\x22\x37\xd4\x22\x37\xd1\x08\x1f\x88\x0b\x90\x5a\xdd\x20\x2a\xa8\x38\xd1\x20\x34\xd4\x20\x34\xd1\x08\x1d\x88\x0a\x90\x49\xdd\x0b\x13\x90\x4b\xd1\x0b\x20\xd4\x0b\x20\xa5\x48\xa8\x5a\xd1\x24\x38\xd4\x24\x38\xd2\x0b\x38\xd0\x0b\x38\xdd\x12\x1c\x90\x2a\xd8\x10\x1a\x90\x0a\x90\x0a\x98\x4b\x98\x4b\xf0\x03\x01\x1e\x29\xf1\x00\x01\x13\x2a\xf4\x00\x01\x13\x2a\xf0\x00\x01\x0d\x2a\xf0\x06\x00\x16\x3d\xd0\x15\x3c\xa0\x1a\xd7\x21\x31\xd2\x21\x31\xb0\x23\xd1\x21\x36\xd4\x21\x36\xd0\x15\x3c\xd1\x15\x3c\xd4\x15\x3c\x88\x0a\xd8\x14\x3a\xd0\x14\x3a\xa0\x09\xa7\x0f\xa2\x0f\xb0\x03\xd1\x20\x34\xd4\x20\x34\xd0\x14\x3a\xd1\x14\x3a\xd4\x14\x3a\x88\x09\xe0\x0c\x0d\x88\x01\xdd\x16\x19\x98\x2a\xa0\x69\xd1\x16\x30\xd4\x16\x30\xf0\x00\x03\x09\x13\xf0\x00\x03\x09\x13\x89\x46\x88\x42\x90\x02\xdd\x0f\x17\x98\x02\x89\x7c\x8c\x7c\x9d\x78\xa8\x02\x99\x7c\x9c\x7c\xd2\x0f\x2b\xd0\x0f\x2b\xd8\x10\x15\x90\x05\xd8\x0c\x0d\x90\x11\x89\x46\x88\x41\x88\x41\xe0\x14\x1a\x90\x38\x9d\x73\xa0\x3a\x99\x7f\x9c\x7f\xa8\x71\xd1\x1f\x30\xd1\x13\x31\xb0\x49\xb8\x61\xb8\x62\xb8\x62\xb4\x4d\xd1\x13\x41\x88\x08\xd8\x0f\x17\xf0\x00\x01\x09\x1a\xd8\x13\x19\x88\x4d\xdd\x0f\x13\x90\x58\x88\x7f\xd0\x08\x1e\xf8\xdd\x0c\x15\x95\x7a\xa5\x3e\xb5\x3c\xd5\x41\x53\xd0\x0b\x54\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x59\xb0\x04\xb0\x65\xd1\x08\x3c\xd4\x08\x3c\xd0\x08\x3c\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -ntpath_toplevel_consts_44_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x21\x44\x32\x46\x1d\x00\xc6\x14\x08\x46\x1d\x00\xc6\x1d\x3b\x47\x18\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_start_abs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "start_abs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_path_abs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_abs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_start_drive = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "start_drive", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_start_rest = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "start_rest", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_path_drive = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_drive", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_path_rest = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_rest", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_start_list = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "start_list", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_path_list = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_list", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_e1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "e1", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_e2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "e2", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_rel_list = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "rel_list", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -ntpath_toplevel_consts_44_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - &_Py_ID(path), - & const_str_start._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_start_abs._ascii.ob_base, - & const_str_path_abs._ascii.ob_base, - & const_str_start_drive._ascii.ob_base, - & const_str_start_rest._ascii.ob_base, - & const_str_path_drive._ascii.ob_base, - & const_str_path_rest._ascii.ob_base, - & const_str_start_list._ascii.ob_base, - & const_str_path_list._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_e1._ascii.ob_base, - & const_str_e2._ascii.ob_base, - & const_str_rel_list._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(950) -ntpath_toplevel_consts_44 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 475, - }, - .co_consts = & ntpath_toplevel_consts_44_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_44_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_44_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 741, - .co_nlocalsplus = 17, - .co_nlocals = 17, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_44_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & zipimport_toplevel_consts_24_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_relpath._ascii.ob_base, - .co_qualname = & const_str_relpath._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_44_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x02\x64\x02\x7d\x03\x64\x03\x7d\x04\x6e\x06\x64\x04\x7d\x02\x64\x05\x7d\x03\x64\x06\x7d\x04\x7c\x01\x80\x02\x7c\x03\x7d\x01\x7c\x00\x73\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x07\x7d\x08\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x15\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x09\x9b\x02\x64\x0a\x7c\x07\x9b\x02\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x0b\x84\x00\x7c\x08\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x64\x0c\x84\x00\x7c\x0a\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x64\x0d\x7d\x0d\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x7c\x0c\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x2c\x5c\x02\x00\x00\x7d\x0e\x7d\x0f\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x01\x00\x6e\x06\x7c\x0d\x64\x0e\x7a\x0d\x00\x00\x7d\x0d\x8c\x2d\x7c\x04\x67\x01\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x7a\x0a\x00\x00\x7a\x05\x00\x00\x7c\x0c\x7c\x0d\x64\x07\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x10\x7c\x10\x73\x02\x7c\x03\x53\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x10\x8e\x00\x53\x00\x23\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x05\x24\x00\x72\x18\x01\x00\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x12\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0f\x7c\x00\x7c\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[69]; - } -ntpath_toplevel_consts_45_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 68, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Given a sequence of path names, returns the longest common sub-path.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -ntpath_toplevel_consts_45_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "commonpath() arg is an empty sequence", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_45_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_splitdrive._ascii.ob_base, - &_Py_ID(replace), - & const_str_lower._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -ntpath_toplevel_consts_45_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "commonpath..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[60]; - } -ntpath_toplevel_consts_45_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 59, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51\xc0\x61\x95\x7a\xa0\x21\xa7\x29\xa2\x29\xa8\x46\xb0\x43\xd1\x22\x38\xd4\x22\x38\xd7\x22\x3e\xd2\x22\x3e\xd1\x22\x40\xd4\x22\x40\xd1\x17\x41\xd4\x17\x41\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -ntpath_toplevel_consts_45_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_p._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_sep._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -ntpath_toplevel_consts_45_consts_9_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "\x20\x20\x80\x80", -}; -static - struct _PyCode_DEF(122) -ntpath_toplevel_consts_45_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 61, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = & ntpath_toplevel_consts_45_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 814, - .co_nlocalsplus = 4, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 2, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & ntpath_toplevel_consts_45_consts_9_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x02\x97\x00\x67\x00\x7c\x00\x5d\x37\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x02\x89\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x38\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[40]; - } -ntpath_toplevel_consts_45_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 39, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd0\x16\x3c\xd0\x16\x3c\xd0\x16\x3c\xa9\x04\xa8\x01\xa8\x31\x90\x71\x97\x77\x92\x77\x98\x73\x91\x7c\x94\x7c\xd0\x16\x3c\xd0\x16\x3c\xd0\x16\x3c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -ntpath_toplevel_consts_45_consts_10_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_d._ascii.ob_base, - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -ntpath_toplevel_consts_45_consts_10_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "\x20\x20\x20\x80", -}; -static - struct _PyCode_DEF(64) -ntpath_toplevel_consts_45_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 32, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 815, - .co_nlocalsplus = 4, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x1a\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x1b\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -ntpath_toplevel_consts_45_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "commonpath..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[52]; - } -ntpath_toplevel_consts_45_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 51, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x18\x3e\xd0\x18\x3e\xa9\x24\xa8\x21\xa8\x51\x98\x11\x98\x32\x98\x41\x98\x32\x9c\x15\xa0\x23\x9a\x1c\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e", -}; -static - struct _PyCode_DEF(58) -ntpath_toplevel_consts_45_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & zipimport_toplevel_consts_25_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 818, - .co_nlocalsplus = 4, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & ntpath_toplevel_consts_45_consts_11_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x15\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x02\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x03\x6b\x02\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x16\x64\x00\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -ntpath_toplevel_consts_45_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Can't mix absolute and relative paths", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[39]; - } -ntpath_toplevel_consts_45_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 38, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd0\x12\x2d\xd0\x12\x2d\x99\x14\x98\x11\x98\x41\x90\x31\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d\xd0\x12\x2d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_45_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_d._ascii.ob_base, - & const_str_p._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(32) -ntpath_toplevel_consts_45_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 825, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & ntpath_toplevel_consts_45_consts_11_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x09\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x56\x00\x97\x01\x01\x00\x8c\x0a\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -ntpath_toplevel_consts_45_consts_16 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Paths don't have the same drive", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -ntpath_toplevel_consts_45_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd0\x11\x39\xd0\x11\x39\xd0\x11\x39\x98\x01\xa0\x71\xd0\x11\x39\xa8\x51\xb0\x26\xaa\x5b\xa8\x5b\x90\x21\xa8\x5b\xa8\x5b\xa8\x5b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_45_consts_17_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_c._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(36) -ntpath_toplevel_consts_45_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 830, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_17_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x0c\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x89\x02\x6b\x03\x00\x00\x00\x00\xaf\x0a\x7c\x01\x91\x02\x8c\x0d\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[42]; - } -ntpath_toplevel_consts_45_consts_18_consts_0_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 41, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "commonpath...", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -ntpath_toplevel_consts_45_consts_18_consts_0_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd0\x17\x3a\xd0\x17\x3a\xd0\x17\x3a\x98\x61\xa8\x01\xd0\x17\x3a\xa8\x61\xb0\x36\xaa\x6b\xa8\x6b\x98\x01\xa8\x6b\xa8\x6b\xa8\x6b", -}; -static - struct _PyCode_DEF(36) -ntpath_toplevel_consts_45_consts_18_consts_0 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 832, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_17_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_18_consts_0_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_18_consts_0_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x0c\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x89\x02\x6b\x03\x00\x00\x00\x00\xaf\x0a\x7c\x01\x91\x02\x8c\x0d\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_45_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & ntpath_toplevel_consts_45_consts_18_consts_0.ob_base.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[47]; - } -ntpath_toplevel_consts_45_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 46, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50\xb8\x71\xd0\x17\x3a\xd0\x17\x3a\xd0\x17\x3a\xd0\x17\x3a\xa0\x31\xd0\x17\x3a\xd1\x17\x3a\xd4\x17\x3a\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -ntpath_toplevel_consts_45_consts_18_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_s._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(44) -ntpath_toplevel_consts_45_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & ntpath_toplevel_consts_45_consts_18_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 832, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x10\x7d\x01\x88\x02\x66\x01\x64\x00\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x11\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[20]; - }_object; - } -ntpath_toplevel_consts_45_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 20, - }, - .ob_item = { - & ntpath_toplevel_consts_45_consts_0._ascii.ob_base, - & ntpath_toplevel_consts_45_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_Py_SINGLETON(bytes_characters[92]), - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - &_Py_STR(dot), - & ntpath_toplevel_consts_45_consts_9.ob_base.ob_base, - & ntpath_toplevel_consts_45_consts_10.ob_base.ob_base, - & ntpath_toplevel_consts_45_consts_11.ob_base.ob_base, - & ntpath_toplevel_consts_45_consts_12._ascii.ob_base, - Py_None, - & ntpath_toplevel_consts_45_consts_14.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & ntpath_toplevel_consts_45_consts_16._ascii.ob_base, - & ntpath_toplevel_consts_45_consts_17.ob_base.ob_base, - & ntpath_toplevel_consts_45_consts_18.ob_base.ob_base, - & const_str_commonpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[20]; - }_object; - } -ntpath_toplevel_consts_45_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 20, - }, - .ob_item = { - & const_str_ValueError._ascii.ob_base, - & const_str_tuple._ascii.ob_base, - & const_str_map._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_set._ascii.ob_base, - &_Py_ID(len), - & const_str_splitdrive._ascii.ob_base, - &_Py_ID(replace), - & const_str_split._ascii.ob_base, - & const_str_min._ascii.ob_base, - & const_str_max._ascii.ob_base, - & const_str_enumerate._ascii.ob_base, - &_Py_ID(join), - & const_str_TypeError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - & const_str__check_arg_types._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[632]; - } -ntpath_toplevel_consts_45_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 631, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xf8\xf8\x80\x00\xf0\x06\x00\x0c\x11\xf0\x00\x01\x05\x42\x01\xdd\x0e\x18\xd0\x19\x40\xd1\x0e\x41\xd4\x0e\x41\xd0\x08\x41\xe5\x0c\x11\x95\x23\x95\x62\x94\x69\xa0\x15\xd1\x12\x27\xd4\x12\x27\xd1\x0c\x28\xd4\x0c\x28\x80\x45\xdd\x07\x11\x90\x25\x98\x01\x94\x28\x9d\x45\xd1\x07\x22\xd4\x07\x22\xf0\x00\x07\x05\x15\xd8\x0e\x13\x88\x03\xd8\x11\x15\x88\x06\xd8\x11\x15\x88\x06\x88\x06\xe0\x0e\x12\x88\x03\xd8\x11\x14\x88\x06\xd8\x11\x14\x88\x06\xf0\x04\x21\x05\x0e\xd8\x16\x51\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51\xd0\x16\x51\xc8\x35\xd0\x16\x51\xd1\x16\x51\xd4\x16\x51\x88\x0b\xd8\x16\x3c\xd0\x16\x3c\xd0\x16\x3c\xd0\x16\x3c\xb0\x0b\xd0\x16\x3c\xd1\x16\x3c\xd4\x16\x3c\x88\x0b\xf0\x04\x03\x09\x50\x01\xdd\x15\x18\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xd0\x18\x3e\xb0\x2b\xd0\x18\x3e\xd1\x18\x3e\xd4\x18\x3e\xd1\x15\x3e\xd4\x15\x3e\x89\x46\x88\x45\x88\x45\xf8\xdd\x0f\x19\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xdd\x12\x1c\xd0\x1d\x44\xd1\x12\x45\xd4\x12\x45\xc8\x34\xd0\x0c\x4f\xf0\x03\x01\x09\x50\x01\xf8\xf8\xf8\xf5\x0c\x00\x0c\x0f\x8d\x73\xd0\x12\x2d\xd0\x12\x2d\xa0\x1b\xd0\x12\x2d\xd1\x12\x2d\xd4\x12\x2d\xd1\x0f\x2d\xd4\x0f\x2d\xd1\x0b\x2e\xd4\x0b\x2e\xb0\x21\xd2\x0b\x33\xd0\x0b\x33\xdd\x12\x1c\xd0\x1d\x3e\xd1\x12\x3f\xd4\x12\x3f\xd0\x0c\x3f\xe5\x16\x20\xa0\x15\xa0\x71\xa4\x18\xd7\x21\x31\xd2\x21\x31\xb0\x26\xb8\x23\xd1\x21\x3e\xd4\x21\x3e\xd1\x16\x3f\xd4\x16\x3f\x89\x0b\x88\x05\x88\x74\xd8\x11\x15\x97\x1a\x92\x1a\x98\x43\x91\x1f\x94\x1f\x88\x06\xd8\x11\x39\xd0\x11\x39\xd0\x11\x39\xd0\x11\x39\x98\x56\xd0\x11\x39\xd1\x11\x39\xd4\x11\x39\x88\x06\xe0\x16\x50\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50\xc0\x4b\xd0\x16\x50\xd1\x16\x50\xd4\x16\x50\x88\x0b\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xdd\x14\x1d\x98\x62\x91\x4d\x94\x4d\xf0\x00\x05\x09\x26\xf0\x00\x05\x09\x26\x89\x44\x88\x41\x88\x71\xd8\x0f\x10\x90\x42\x90\x71\x94\x45\x8a\x7a\x88\x7a\xd8\x19\x1f\xa0\x02\xa0\x11\xa0\x02\x9c\x1a\x90\x06\xd8\x10\x15\x90\x05\xf0\x05\x00\x10\x1a\xf0\x08\x00\x16\x1c\x98\x48\x9d\x53\xa0\x12\x99\x57\x9c\x57\x98\x48\xd4\x15\x25\x88\x46\xe0\x20\x25\xd0\x11\x30\x90\x15\x98\x13\x91\x1b\x90\x1b\xa8\x35\x88\x06\xd8\x0f\x15\x98\x03\x9f\x08\x9a\x08\xa0\x16\xd1\x18\x28\xd4\x18\x28\xd1\x0f\x28\xd0\x08\x28\xf8\xdd\x0c\x15\x95\x7e\xd0\x0b\x26\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x5c\xd0\x08\x3a\xb0\x45\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[38]; - } -ntpath_toplevel_consts_45_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 37, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x25\x1d\x47\x18\x00\xc2\x03\x1d\x42\x21\x00\xc2\x20\x01\x47\x18\x00\xc2\x21\x1b\x42\x3c\x03\xc2\x3c\x44\x1b\x47\x18\x00\xc7\x18\x25\x47\x3d\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_drivesplits = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "drivesplits", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_split_paths = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "split_paths", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_common = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "common", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -ntpath_toplevel_consts_45_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & const_str_paths._ascii.ob_base, - & const_str_drivesplits._ascii.ob_base, - & const_str_split_paths._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - & const_str_drive._ascii.ob_base, - &_Py_ID(path), - & const_str_common._ascii.ob_base, - & const_str_s1._ascii.ob_base, - & const_str_s2._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_c._ascii.ob_base, - & const_str_prefix._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -ntpath_toplevel_consts_45_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = " @@@", -}; -static - struct _PyCode_DEF(1024) -ntpath_toplevel_consts_45 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 512, - }, - .co_consts = & ntpath_toplevel_consts_45_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_45_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_45_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 797, - .co_nlocalsplus = 15, - .co_nlocals = 12, - .co_nplaincellvars = 3, - .co_ncellvars = 3, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_45_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & ntpath_toplevel_consts_45_localspluskinds.ob_base.ob_base, - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = & const_str_commonpath._ascii.ob_base, - .co_qualname = & const_str_commonpath._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x0c\x87\x0d\x87\x0e\x97\x00\x7c\x00\x73\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x03\x8a\x0e\x64\x04\x8a\x0c\x64\x05\x8a\x0d\x6e\x06\x64\x06\x8a\x0e\x64\x07\x8a\x0c\x64\x08\x8a\x0d\x09\x00\x88\x0c\x88\x0e\x66\x02\x64\x09\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x88\x0e\x66\x01\x64\x0a\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x0e\x66\x01\x64\x0b\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x01\x00\x00\x7d\x03\x6e\x1e\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0e\x84\x00\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0f\x6b\x03\x00\x00\x00\x00\x72\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x0c\x89\x0e\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x05\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x0e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x88\x0d\x66\x01\x64\x11\x84\x08\x7c\x06\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x88\x0d\x66\x01\x64\x12\x84\x08\x7c\x02\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1d\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x7c\x0a\x7c\x08\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0c\x7c\x06\x64\x0d\x7c\x09\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x01\x00\x6e\x18\x8c\x1e\x7c\x06\x64\x0d\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x03\x72\x05\x7c\x04\x89\x0e\x7a\x00\x00\x00\x6e\x01\x7c\x04\x7d\x0b\x7c\x0b\x89\x0e\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00\x23\x00\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x14\x01\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x64\x13\x67\x01\x7c\x00\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 3, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str__isdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_isdir", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -ntpath_toplevel_consts_46 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__isdir._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[48]; - }_object; - } -ntpath_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 48, - }, - .ob_item = { - & ntpath_toplevel_consts_0._ascii.ob_base, - &_Py_STR(dot), - & ntpath_toplevel_consts_2._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & ntpath_toplevel_consts_4._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & ntpath_toplevel_consts_6._ascii.ob_base, - & const_str_nul._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & codecs_toplevel_consts_3._object.ob_base.ob_base, - & ntpath_toplevel_consts_11._object.ob_base.ob_base, - & ntpath_toplevel_consts_12.ob_base.ob_base, - & ntpath_toplevel_consts_13._object.ob_base.ob_base, - & ntpath_toplevel_consts_14.ob_base.ob_base, - & ntpath_toplevel_consts_15.ob_base.ob_base, - & ntpath_toplevel_consts_16.ob_base.ob_base, - & ntpath_toplevel_consts_17.ob_base.ob_base, - & ntpath_toplevel_consts_18.ob_base.ob_base, - & ntpath_toplevel_consts_19.ob_base.ob_base, - & ntpath_toplevel_consts_20.ob_base.ob_base, - & ntpath_toplevel_consts_21.ob_base.ob_base, - & ntpath_toplevel_consts_22.ob_base.ob_base, - & ntpath_toplevel_consts_23.ob_base.ob_base, - & ntpath_toplevel_consts_24.ob_base.ob_base, - & ntpath_toplevel_consts_25._object.ob_base.ob_base, - & ntpath_toplevel_consts_26.ob_base.ob_base, - & ntpath_toplevel_consts_27.ob_base.ob_base, - & ntpath_toplevel_consts_28.ob_base.ob_base, - & ntpath_toplevel_consts_29._object.ob_base.ob_base, - & ntpath_toplevel_consts_30.ob_base.ob_base, - & ntpath_toplevel_consts_31.ob_base.ob_base, - & ntpath_toplevel_consts_32.ob_base.ob_base, - & ntpath_toplevel_consts_33._object.ob_base.ob_base, - & ntpath_toplevel_consts_34.ob_base.ob_base, - & ntpath_toplevel_consts_35._object.ob_base.ob_base, - & ntpath_toplevel_consts_36.ob_base.ob_base, - & ntpath_toplevel_consts_37.ob_base.ob_base, - Py_False, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & ntpath_toplevel_consts_40.ob_base.ob_base, - & const_str_getwindowsversion._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & ntpath_toplevel_consts_44.ob_base.ob_base, - & ntpath_toplevel_consts_45.ob_base.ob_base, - & ntpath_toplevel_consts_46._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__winapi = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_winapi", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[57]; - }_object; - } -ntpath_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 57, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - & const_str_devnull._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - &_Py_ID(__all__), - & const_str__get_bothseps._ascii.ob_base, - & const_str__winapi._ascii.ob_base, - & const_str_LCMapStringEx._ascii.ob_base, - & const_str__LCMapStringEx._ascii.ob_base, - & const_str_LOCALE_NAME_INVARIANT._ascii.ob_base, - & const_str__LOCALE_NAME_INVARIANT._ascii.ob_base, - & const_str_LCMAP_LOWERCASE._ascii.ob_base, - & const_str__LCMAP_LOWERCASE._ascii.ob_base, - & const_str_normcase._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - &_Py_ID(join), - & const_str_splitdrive._ascii.ob_base, - & const_str_split._ascii.ob_base, - & const_str_splitext._ascii.ob_base, - & const_str__splitext._ascii.ob_base, - & const_str_basename._ascii.ob_base, - & const_str_dirname._ascii.ob_base, - & const_str_islink._ascii.ob_base, - & const_str_lexists._ascii.ob_base, - & const_str_nt._ascii.ob_base, - & const_str__getvolumepathname._ascii.ob_base, - & const_str_ismount._ascii.ob_base, - & const_str_expanduser._ascii.ob_base, - & const_str_expandvars._ascii.ob_base, - & const_str__path_normpath._ascii.ob_base, - & const_str_normpath._ascii.ob_base, - & const_str__abspath_fallback._ascii.ob_base, - & const_str__getfullpathname._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str__getfinalpathname._ascii.ob_base, - & const_str_readlink._ascii.ob_base, - & const_str__nt_readlink._ascii.ob_base, - & const_str__readlink_deep._ascii.ob_base, - & const_str__getfinalpathname_nonstrict._ascii.ob_base, - & const_str_realpath._ascii.ob_base, - & const_str_hasattr._ascii.ob_base, - & const_str_getwindowsversion._ascii.ob_base, - & const_str_supports_unicode_filenames._ascii.ob_base, - & const_str_relpath._ascii.ob_base, - & const_str_commonpath._ascii.ob_base, - & const_str__isdir._ascii.ob_base, - & const_str_isdir._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[1028]; - } -ntpath_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 1027, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x04\x04\x01\x04\xf0\x00\x04\x01\x04\xf0\x12\x00\x0a\x0d\x80\x06\xd8\x09\x0d\x80\x06\xd8\x09\x0c\x80\x06\xd8\x06\x0a\x80\x03\xd8\x0a\x0d\x80\x07\xd8\x09\x0c\x80\x06\xd8\x0a\x15\x80\x07\xd8\x0a\x0f\x80\x07\xe0\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x12\xd0\x00\x12\xd0\x00\x12\xd0\x00\x12\xd8\x00\x19\xd0\x00\x19\xd0\x00\x19\xd0\x00\x19\xf0\x06\x06\x0b\x41\x01\xf0\x00\x06\x0b\x41\x01\xf0\x00\x06\x0b\x41\x01\x80\x07\xf0\x10\x04\x01\x15\xf0\x00\x04\x01\x15\xf0\x00\x04\x01\x15\xf0\x14\x21\x01\x2c\xf0\x02\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x00\x03\x05\x2d\xf0\x0a\x11\x05\x38\xf0\x00\x11\x05\x38\xf0\x00\x11\x05\x38\xf0\x00\x11\x05\x38\xf8\xf0\x24\x00\x08\x13\xf0\x00\x09\x01\x2c\xf0\x00\x09\x01\x2c\xf0\x00\x09\x01\x2c\xf0\x02\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x00\x08\x05\x2c\xf0\x03\x09\x01\x2c\xf8\xf8\xf8\xf0\x24\x10\x01\x11\xf0\x00\x10\x01\x11\xf0\x00\x10\x01\x11\xf0\x28\x29\x01\x0e\xf0\x00\x29\x01\x0e\xf0\x00\x29\x01\x0e\xf0\x5e\x01\x2e\x01\x14\xf0\x00\x2e\x01\x14\xf0\x00\x2e\x01\x14\xf0\x6c\x01\x0f\x01\x1a\xf0\x00\x0f\x01\x1a\xf0\x00\x0f\x01\x1a\xf0\x2e\x05\x01\x38\xf0\x00\x05\x01\x38\xf0\x00\x05\x01\x38\xf0\x0c\x00\x14\x1f\xd4\x13\x28\xd4\x13\x30\x80\x08\xd4\x00\x10\xf0\x0a\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x0e\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x0e\x08\x01\x24\xf0\x00\x08\x01\x24\xf0\x00\x08\x01\x24\xf0\x18\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x24\x03\x01\x1e\xd8\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xd0\x04\x25\xf8\xd8\x07\x12\xf0\x00\x01\x01\x1e\xf0\x00\x01\x01\x1e\xf0\x00\x01\x01\x1e\xd8\x19\x1d\xd0\x04\x16\xd0\x04\x16\xd0\x04\x16\xf0\x03\x01\x01\x1e\xf8\xf8\xf8\xf0\x04\x11\x01\x15\xf0\x00\x11\x01\x15\xf0\x00\x11\x01\x15\xf0\x3a\x2d\x01\x1f\xf0\x00\x2d\x01\x1f\xf0\x00\x2d\x01\x1f\xf0\x7a\x01\x6a\x01\x01\x0f\xf0\x00\x6a\x01\x01\x0f\xf0\x00\x6a\x01\x01\x0f\xf0\x60\x03\x33\x01\x2b\xd8\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xf0\x5a\x01\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf8\xf0\x57\x01\x00\x08\x13\xf0\x00\x28\x01\x28\xf0\x00\x28\x01\x28\xf0\x00\x28\x01\x28\xf0\x02\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x00\x27\x05\x28\xf0\x03\x28\x01\x28\xf8\xf8\xf8\xf0\x66\x01\x0e\x01\x1a\xf0\x00\x0e\x01\x1a\xf0\x00\x0e\x01\x1a\xf0\x22\x0c\x01\x2b\xd8\x04\x23\xd0\x04\x23\xd0\x04\x23\xd0\x04\x23\xd0\x04\x23\xd0\x04\x23\xf0\x0c\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf8\xf0\x09\x00\x08\x13\xf0\x00\x01\x01\x20\xf0\x00\x01\x01\x20\xf0\x00\x01\x01\x20\xd8\x0e\x1f\x80\x47\x80\x47\x80\x47\xf0\x03\x01\x01\x20\xf8\xf8\xf8\xf0\x16\x5d\x02\x01\x14\xd8\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xd0\x04\x3e\xf0\x0a\x28\x05\x14\xf0\x00\x28\x05\x14\xf0\x00\x28\x05\x14\xf0\x54\x01\x2f\x05\x14\xf0\x00\x2f\x05\x14\xf0\x00\x2f\x05\x14\xf0\x62\x01\x00\x22\x27\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf0\x00\x3c\x05\x14\xf8\xf0\x7f\x02\x00\x08\x13\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xf0\x00\x02\x01\x17\xe0\x0f\x16\x80\x48\x80\x48\x80\x48\xf0\x05\x02\x01\x17\xf8\xf8\xf8\xf0\x7e\x04\x00\x1f\x26\x98\x67\xa0\x63\xd0\x2b\x3e\xd1\x1e\x3f\xd4\x1e\x3f\xf0\x00\x01\x1f\x3e\xd8\x1e\x33\x98\x63\xd4\x1e\x33\xd1\x1e\x35\xd4\x1e\x35\xb0\x61\xd4\x1e\x38\xb8\x41\xd2\x1e\x3d\xf0\x03\x00\x01\x1b\xf0\x06\x2b\x01\x0e\xf0\x00\x2b\x01\x0e\xf0\x00\x2b\x01\x0e\xf0\x00\x2b\x01\x0e\xf0\x70\x01\x31\x01\x0e\xf0\x00\x31\x01\x0e\xf0\x00\x31\x01\x0e\xf0\x68\x01\x08\x01\x09\xf0\x0a\x00\x05\x23\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xd0\x04\x22\xf8\xd8\x07\x12\xf0\x00\x02\x01\x09\xf0\x00\x02\x01\x09\xf0\x00\x02\x01\x09\xe0\x04\x08\x80\x44\x80\x44\xf0\x05\x02\x01\x09\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[106]; - } -ntpath_toplevel_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 105, - }, - .ob_shash = -1, - .ob_sval = "\xaf\x0d\x3d\x00\xbd\x08\x41\x08\x03\xc1\x07\x01\x41\x08\x03\xc1\x38\x06\x41\x3f\x00\xc1\x3f\x07\x42\x09\x03\xc2\x08\x01\x42\x09\x03\xc2\x16\x06\x42\x20\x00\xc2\x20\x08\x42\x2b\x03\xc2\x2a\x01\x42\x2b\x03\xc2\x32\x06\x42\x3c\x00\xc2\x3c\x07\x43\x06\x03\xc3\x05\x01\x43\x06\x03\xc3\x0a\x08\x43\x1f\x00\xc3\x1f\x07\x43\x29\x03\xc3\x28\x01\x43\x29\x03\xc4\x19\x06\x44\x21\x00\xc4\x21\x05\x44\x2a\x03\xc4\x29\x01\x44\x2a\x03", -}; -static - struct _PyCode_DEF(602) -ntpath_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 301, - }, - .co_consts = & ntpath_toplevel_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_exceptiontable.ob_base.ob_base, - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & ntpath_toplevel_consts_12_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & ntpath_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x64\x02\x5a\x02\x64\x01\x5a\x03\x64\x03\x5a\x04\x64\x04\x5a\x05\x64\x05\x5a\x06\x64\x06\x5a\x07\x64\x07\x5a\x08\x64\x08\x64\x09\x6c\x09\x5a\x09\x64\x08\x64\x09\x6c\x0a\x5a\x0a\x64\x08\x64\x09\x6c\x0b\x5a\x0b\x64\x08\x64\x09\x6c\x0c\x5a\x0c\x64\x08\x64\x0a\x6c\x0c\x54\x00\x67\x00\x64\x0b\xa2\x01\x5a\x0d\x64\x0c\x84\x00\x5a\x0e\x09\x00\x64\x08\x64\x0d\x6c\x0f\x6d\x10\x5a\x11\x6d\x12\x5a\x13\x6d\x14\x5a\x15\x01\x00\x64\x0e\x84\x00\x5a\x16\x6e\x0e\x23\x00\x65\x17\x24\x00\x72\x06\x01\x00\x64\x0f\x84\x00\x5a\x16\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x10\x84\x00\x5a\x18\x64\x11\x84\x00\x5a\x19\x64\x12\x84\x00\x5a\x1a\x64\x13\x84\x00\x5a\x1b\x64\x14\x84\x00\x5a\x1c\x65\x0c\x6a\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x1c\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x15\x84\x00\x5a\x1e\x64\x16\x84\x00\x5a\x1f\x64\x17\x84\x00\x5a\x20\x64\x18\x84\x00\x5a\x21\x09\x00\x64\x08\x64\x19\x6c\x22\x6d\x23\x5a\x23\x01\x00\x6e\x0d\x23\x00\x65\x17\x24\x00\x72\x05\x01\x00\x64\x09\x5a\x23\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x1a\x84\x00\x5a\x24\x64\x1b\x84\x00\x5a\x25\x64\x1c\x84\x00\x5a\x26\x09\x00\x64\x08\x64\x1d\x6c\x22\x6d\x27\x5a\x27\x01\x00\x64\x1e\x84\x00\x5a\x28\x6e\x0e\x23\x00\x65\x17\x24\x00\x72\x06\x01\x00\x64\x1f\x84\x00\x5a\x28\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x20\x84\x00\x5a\x29\x09\x00\x64\x08\x64\x21\x6c\x22\x6d\x2a\x5a\x2a\x01\x00\x64\x22\x84\x00\x5a\x2b\x6e\x0d\x23\x00\x65\x17\x24\x00\x72\x05\x01\x00\x65\x29\x5a\x2b\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x64\x08\x64\x23\x6c\x22\x6d\x2c\x5a\x2c\x6d\x2d\x5a\x2e\x01\x00\x64\x24\x84\x00\x5a\x2f\x64\x25\x84\x00\x5a\x30\x64\x26\x64\x27\x9c\x01\x64\x28\x84\x02\x5a\x31\x6e\x0d\x23\x00\x65\x17\x24\x00\x72\x05\x01\x00\x65\x2b\x5a\x31\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x65\x32\x65\x0a\x64\x29\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x18\x02\x00\x65\x0a\x6a\x33\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x2a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x2b\x6b\x05\x00\x00\x00\x00\x5a\x34\x64\x2f\x64\x2c\x84\x01\x5a\x35\x64\x2d\x84\x00\x5a\x36\x09\x00\x64\x08\x64\x2e\x6c\x22\x6d\x37\x5a\x38\x01\x00\x64\x09\x53\x00\x23\x00\x65\x17\x24\x00\x72\x04\x01\x00\x59\x00\x64\x09\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static void ntpath_do_patchups(void) { -} - -PyObject * -_Py_get_ntpath_toplevel(void) -{ - ntpath_do_patchups(); - return Py_NewRef((PyObject *) &ntpath_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[474]; - } -posixpath_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 473, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x6f\x6d\x6d\x6f\x6e\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x6f\x6e\x20\x50\x6f\x73\x69\x78\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x73\x2e\x0a\x0a\x49\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x20\x61\x6e\x64\x20\x72\x65\x66\x65\x72\x20\x74\x6f\x0a\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x61\x73\x20\x6f\x73\x2e\x70\x61\x74\x68\x2e\x20\x20\x54\x68\x65\x20\x22\x6f\x73\x2e\x70\x61\x74\x68\x22\x20\x6e\x61\x6d\x65\x20\x69\x73\x20\x61\x6e\x20\x61\x6c\x69\x61\x73\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x0a\x6d\x6f\x64\x75\x6c\x65\x20\x6f\x6e\x20\x50\x6f\x73\x69\x78\x20\x73\x79\x73\x74\x65\x6d\x73\x3b\x20\x6f\x6e\x20\x6f\x74\x68\x65\x72\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x28\x65\x2e\x67\x2e\x20\x57\x69\x6e\x64\x6f\x77\x73\x29\x2c\x0a\x6f\x73\x2e\x70\x61\x74\x68\x20\x70\x72\x6f\x76\x69\x64\x65\x73\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x20\x69\x6e\x20\x61\x20\x6d\x61\x6e\x6e\x65\x72\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x74\x6f\x20\x74\x68\x61\x74\x0a\x70\x6c\x61\x74\x66\x6f\x72\x6d\x2c\x20\x61\x6e\x64\x20\x69\x73\x20\x61\x6e\x20\x61\x6c\x69\x61\x73\x20\x74\x6f\x20\x61\x6e\x6f\x74\x68\x65\x72\x20\x6d\x6f\x64\x75\x6c\x65\x20\x28\x65\x2e\x67\x2e\x20\x6e\x74\x70\x61\x74\x68\x29\x2e\x0a\x0a\x53\x6f\x6d\x65\x20\x6f\x66\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x61\x63\x74\x75\x61\x6c\x6c\x79\x20\x62\x65\x20\x75\x73\x65\x66\x75\x6c\x20\x6f\x6e\x20\x6e\x6f\x6e\x2d\x50\x6f\x73\x69\x78\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x6f\x6f\x2c\x20\x65\x2e\x67\x2e\x0a\x66\x6f\x72\x20\x6d\x61\x6e\x69\x70\x75\x6c\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x20\x6f\x66\x20\x55\x52\x4c\x73\x2e\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -posixpath_toplevel_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "/bin:/usr/bin", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -posixpath_toplevel_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "/dev/null", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[38]; - }_object; - } -posixpath_toplevel_consts_10 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 38, - }, - .ob_item = { - & const_str_normcase._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - &_Py_ID(join), - & const_str_splitdrive._ascii.ob_base, - & const_str_split._ascii.ob_base, - & const_str_splitext._ascii.ob_base, - & const_str_basename._ascii.ob_base, - & const_str_dirname._ascii.ob_base, - & const_str_commonprefix._ascii.ob_base, - & const_str_getsize._ascii.ob_base, - & const_str_getmtime._ascii.ob_base, - & const_str_getatime._ascii.ob_base, - & const_str_getctime._ascii.ob_base, - & const_str_islink._ascii.ob_base, - & const_str_exists._ascii.ob_base, - & const_str_lexists._ascii.ob_base, - & const_str_isdir._ascii.ob_base, - & const_str_isfile._ascii.ob_base, - & const_str_ismount._ascii.ob_base, - & const_str_expanduser._ascii.ob_base, - & const_str_expandvars._ascii.ob_base, - & const_str_normpath._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str_samefile._ascii.ob_base, - & const_str_sameopenfile._ascii.ob_base, - & const_str_samestat._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - & const_str_devnull._ascii.ob_base, - & const_str_realpath._ascii.ob_base, - & const_str_supports_unicode_filenames._ascii.ob_base, - & const_str_relpath._ascii.ob_base, - & const_str_commonpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -posixpath_toplevel_consts_11_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__get_sep = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_sep", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[31]; - } -posixpath_toplevel_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 30, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x13\xd8\x0f\x13\x88\x74\xe0\x0f\x12\x88\x73", -}; -static - struct _PyCode_DEF(52) -posixpath_toplevel_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & posixpath_toplevel_consts_11_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 41, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str__get_sep._ascii.ob_base, - .co_qualname = & const_str__get_sep._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[55]; - } -posixpath_toplevel_consts_12_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 54, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Normalize case of pathname. Has no effect under Posix", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -posixpath_toplevel_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & posixpath_toplevel_consts_12_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -posixpath_toplevel_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[17]; - } -posixpath_toplevel_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 16, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x39\x90\x51\x89\x3c\x8c\x3c\xd0\x04\x17", -}; -static - struct _PyCode_DEF(42) -posixpath_toplevel_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & posixpath_toplevel_consts_12_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 52, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_normcase._ascii.ob_base, - .co_qualname = & const_str_normcase._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -posixpath_toplevel_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & ntpath_toplevel_consts_16_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -posixpath_toplevel_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str__get_sep._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[45]; - } -posixpath_toplevel_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 44, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x0b\x0c\x8f\x3c\x8a\x3c\x98\x03\xd1\x0b\x1c\xd4\x0b\x1c\xd0\x04\x1c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -posixpath_toplevel_consts_13_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_s._ascii.ob_base, - & const_str_sep._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(114) -posixpath_toplevel_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 57, - }, - .co_consts = & posixpath_toplevel_consts_13_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 60, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_13_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_isabs._ascii.ob_base, - .co_qualname = & const_str_isabs._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[231]; - } -posixpath_toplevel_consts_14_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 230, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x4a\x6f\x69\x6e\x20\x74\x77\x6f\x20\x6f\x72\x20\x6d\x6f\x72\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x2c\x20\x69\x6e\x73\x65\x72\x74\x69\x6e\x67\x20\x27\x2f\x27\x20\x61\x73\x20\x6e\x65\x65\x64\x65\x64\x2e\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x6e\x79\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x20\x69\x73\x20\x61\x6e\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x70\x61\x74\x68\x2c\x20\x61\x6c\x6c\x20\x70\x72\x65\x76\x69\x6f\x75\x73\x20\x70\x61\x74\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x0a\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x69\x73\x63\x61\x72\x64\x65\x64\x2e\x20\x20\x41\x6e\x20\x65\x6d\x70\x74\x79\x20\x6c\x61\x73\x74\x20\x70\x61\x72\x74\x20\x77\x69\x6c\x6c\x20\x72\x65\x73\x75\x6c\x74\x20\x69\x6e\x20\x61\x20\x70\x61\x74\x68\x20\x74\x68\x61\x74\x0a\x20\x20\x20\x20\x65\x6e\x64\x73\x20\x77\x69\x74\x68\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -posixpath_toplevel_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & posixpath_toplevel_consts_14_consts_0._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - &_Py_ID(join), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -posixpath_toplevel_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str__get_sep._ascii.ob_base, - & const_str_map._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str_endswith._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_BytesWarning._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - & const_str__check_arg_types._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[249]; - } -posixpath_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 248, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x0b\x0c\x80\x44\xf0\x02\x0c\x05\x0e\xd8\x0f\x10\xf0\x00\x01\x09\x1b\xd8\x0c\x10\x90\x12\x90\x21\x90\x12\x8c\x48\x90\x73\x89\x4e\x88\x4e\xdd\x11\x14\x95\x52\x94\x59\xa0\x01\xd1\x11\x22\xd4\x11\x22\xf0\x00\x06\x09\x20\xf0\x00\x06\x09\x20\x88\x41\xd8\x0f\x10\x8f\x7c\x8a\x7c\x98\x43\xd1\x0f\x20\xd4\x0f\x20\xf0\x00\x05\x0d\x20\xd8\x17\x18\x90\x04\x90\x04\xd8\x15\x19\xf0\x00\x03\x0d\x20\x98\x54\x9f\x5d\x9a\x5d\xa8\x33\xd1\x1d\x2f\xd4\x1d\x2f\xf0\x00\x03\x0d\x20\xd8\x10\x14\x98\x01\x91\x09\x90\x04\x90\x04\xe0\x10\x14\x98\x03\x98\x61\x99\x07\x91\x0f\x90\x04\x90\x04\xf0\x0d\x06\x09\x20\xf8\xf5\x0e\x00\x0d\x16\x95\x7e\xa5\x7c\xd0\x0b\x34\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x56\xa8\x51\xd0\x08\x33\xb0\x11\xd0\x08\x33\xd0\x08\x33\xd0\x08\x33\xd0\x08\x33\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8\xf0\x06\x00\x0c\x10\x80\x4b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -posixpath_toplevel_consts_14_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\xa7\x41\x29\x42\x11\x00\xc2\x11\x2c\x42\x3d\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -posixpath_toplevel_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_a._ascii.ob_base, - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - &_Py_ID(path), - & const_str_b._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(388) -posixpath_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 194, - }, - .co_consts = & posixpath_toplevel_consts_14_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_consts_14_exceptiontable.ob_base.ob_base, - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 71, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_ID(join), - .co_qualname = &_Py_ID(join), - .co_linetable = & posixpath_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x7d\x03\x09\x00\x7c\x01\x73\x0d\x7c\x03\x64\x01\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7a\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x3f\x7d\x04\x7c\x04\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x7c\x04\x7d\x03\x8c\x1a\x7c\x03\x72\x15\x7c\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x06\x7c\x03\x7c\x04\x7a\x0d\x00\x00\x7d\x03\x8c\x37\x7c\x03\x7c\x02\x7c\x04\x7a\x00\x00\x00\x7a\x0d\x00\x00\x7d\x03\x8c\x40\x6e\x2f\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x15\x01\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x00\x67\x02\x7c\x01\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[129]; - } -posixpath_toplevel_consts_15_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 128, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x2e\x20\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x75\x70\x6c\x65\x20\x22\x28\x68\x65\x61\x64\x2c\x20\x74\x61\x69\x6c\x29\x22\x20\x77\x68\x65\x72\x65\x20\x22\x74\x61\x69\x6c\x22\x20\x69\x73\x0a\x20\x20\x20\x20\x65\x76\x65\x72\x79\x74\x68\x69\x6e\x67\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x66\x69\x6e\x61\x6c\x20\x73\x6c\x61\x73\x68\x2e\x20\x20\x45\x69\x74\x68\x65\x72\x20\x70\x61\x72\x74\x20\x6d\x61\x79\x20\x62\x65\x20\x65\x6d\x70\x74\x79\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & posixpath_toplevel_consts_15_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -posixpath_toplevel_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str__get_sep._ascii.ob_base, - & const_str_rfind._ascii.ob_base, - &_Py_ID(len), - & const_str_rstrip._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[129]; - } -posixpath_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 128, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x08\x09\x8f\x07\x8a\x07\x90\x03\x89\x0c\x8c\x0c\x90\x71\xd1\x08\x18\x80\x41\xd8\x11\x12\x90\x32\x90\x41\x90\x32\x94\x15\x98\x01\x98\x21\x98\x22\x98\x22\x9c\x05\x88\x24\x80\x44\xd8\x07\x0b\xf0\x00\x01\x05\x20\x90\x04\x98\x03\x9d\x43\xa0\x04\x99\x49\x9c\x49\x99\x0d\xd2\x10\x25\xd0\x10\x25\xd8\x0f\x13\x8f\x7b\x8a\x7b\x98\x33\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xd8\x0b\x0f\x90\x14\x88\x3a\xd0\x04\x15", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -posixpath_toplevel_consts_15_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_head._ascii.ob_base, - & const_str_tail._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(258) -posixpath_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 129, - }, - .co_consts = & posixpath_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 100, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_split._ascii.ob_base, - .co_qualname = & const_str_split._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\x7d\x02\x7c\x00\x64\x02\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7d\x03\x7c\x03\x72\x2b\x7c\x03\x7c\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x05\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x15\x7c\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x7c\x04\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -posixpath_toplevel_consts_16_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - &_Py_STR(dot), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[79]; - } -posixpath_toplevel_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 78, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x07\x11\x90\x21\x95\x55\xd1\x07\x1b\xd4\x07\x1b\xf0\x00\x05\x05\x15\xd8\x0e\x12\x88\x03\xd8\x11\x15\x88\x06\x88\x06\xe0\x0e\x11\x88\x03\xd8\x11\x14\x88\x06\xdd\x0b\x16\xd4\x0b\x20\xa0\x11\xa0\x43\xa8\x14\xa8\x76\xd1\x0b\x36\xd4\x0b\x36\xd0\x04\x36", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_16_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(148) -posixpath_toplevel_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 74, - }, - .co_consts = & posixpath_toplevel_consts_16_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 117, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_splitext._ascii.ob_base, - .co_qualname = & const_str_splitext._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x05\x64\x01\x7d\x01\x64\x02\x7d\x02\x6e\x04\x64\x03\x7d\x01\x64\x04\x7d\x02\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x00\x7c\x02\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[75]; - } -posixpath_toplevel_consts_17_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 74, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x70\x6c\x69\x74\x20\x61\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x69\x6e\x74\x6f\x20\x64\x72\x69\x76\x65\x20\x61\x6e\x64\x20\x70\x61\x74\x68\x2e\x20\x4f\x6e\x20\x50\x6f\x73\x69\x78\x2c\x20\x64\x72\x69\x76\x65\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x0a\x20\x20\x20\x20\x65\x6d\x70\x74\x79\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_17_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & posixpath_toplevel_consts_17_consts_0._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[35]; - } -posixpath_toplevel_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 34, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x09\x0b\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xd8\x0b\x0c\x88\x52\x88\x61\x88\x52\x8c\x35\x90\x21\x88\x38\x80\x4f", -}; -static - struct _PyCode_DEF(66) -posixpath_toplevel_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & posixpath_toplevel_consts_17_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 131, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_splitdrive._ascii.ob_base, - .co_qualname = & const_str_splitdrive._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x64\x01\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & ntpath_toplevel_consts_21_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -posixpath_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str__get_sep._ascii.ob_base, - & const_str_rfind._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[60]; - } -posixpath_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 59, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x08\x09\x8f\x07\x8a\x07\x90\x03\x89\x0c\x8c\x0c\x90\x71\xd1\x08\x18\x80\x41\xd8\x0b\x0c\x88\x51\x88\x52\x88\x52\x8c\x35\x80\x4c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_18_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_i._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(140) -posixpath_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 70, - }, - .co_consts = & posixpath_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 140, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_basename._ascii.ob_base, - .co_qualname = & const_str_basename._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\x7d\x02\x7c\x00\x7c\x02\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_19_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & ntpath_toplevel_consts_22_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[110]; - } -posixpath_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 109, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x08\x0a\x8c\x09\x90\x21\x89\x0c\x8c\x0c\x80\x41\xdd\x0a\x12\x90\x31\x89\x2b\x8c\x2b\x80\x43\xd8\x08\x09\x8f\x07\x8a\x07\x90\x03\x89\x0c\x8c\x0c\x90\x71\xd1\x08\x18\x80\x41\xd8\x0b\x0c\x88\x52\x88\x61\x88\x52\x8c\x35\x80\x44\xd8\x07\x0b\xf0\x00\x01\x05\x20\x90\x04\x98\x03\x9d\x43\xa0\x04\x99\x49\x9c\x49\x99\x0d\xd2\x10\x25\xd0\x10\x25\xd8\x0f\x13\x8f\x7b\x8a\x7b\x98\x33\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xd8\x0b\x0f\x80\x4b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -posixpath_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_head._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(234) -posixpath_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 117, - }, - .co_consts = & posixpath_toplevel_consts_19_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 150, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_dirname._ascii.ob_base, - .co_qualname = & const_str_dirname._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\x7d\x02\x7c\x00\x64\x02\x7c\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x72\x2b\x7c\x03\x7c\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x05\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x15\x7c\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -posixpath_toplevel_consts_20_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether a path is a symbolic link", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -posixpath_toplevel_consts_20_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & posixpath_toplevel_consts_20_consts_0._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[82]; - } -posixpath_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 81, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xa5\x1e\xd0\x0b\x30\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe5\x0b\x0f\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", -}; -static - struct _PyCode_DEF(156) -posixpath_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 78, - }, - .co_consts = & posixpath_toplevel_consts_20_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = & ntpath_toplevel_consts_23_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 164, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & genericpath_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_islink._ascii.ob_base, - .co_qualname = & const_str_islink._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x1e\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[67]; - } -posixpath_toplevel_consts_21_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 66, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x03\x05\x15\xdd\x08\x0a\x8c\x08\x90\x14\x89\x0e\x8c\x0e\x88\x0e\x88\x0e\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xe0\x0b\x0f\x88\x34", -}; -static - struct _PyCode_DEF(98) -posixpath_toplevel_consts_21 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & ntpath_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = & genericpath_toplevel_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 174, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_lexists._ascii.ob_base, - .co_qualname = & const_str_lexists._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_21_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x18\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[37]; - } -posixpath_toplevel_consts_22_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 36, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Test whether a path is a mount point", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -posixpath_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & posixpath_toplevel_consts_22_consts_0._ascii.ob_base, - Py_False, - & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, - & ntpath_toplevel_consts_2._ascii.ob_base, - Py_True, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -posixpath_toplevel_consts_22_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_lstat._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_S_ISLNK._ascii.ob_base, - & const_str_st_mode._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - &_Py_ID(join), - & const_str_realpath._ascii.ob_base, - & const_str_st_dev._ascii.ob_base, - & const_str_st_ino._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[296]; - } -posixpath_toplevel_consts_22_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 295, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x08\x05\x19\xdd\x0d\x0f\x8c\x58\x90\x64\x89\x5e\x8c\x5e\x88\x02\xf5\x0c\x00\x0c\x10\x8c\x3c\x98\x02\x9c\x0a\xd1\x0b\x23\xd4\x0b\x23\xf0\x00\x01\x09\x19\xd8\x13\x18\x90\x35\xf0\x03\x01\x09\x19\xf8\xf5\x0b\x00\x0d\x14\x95\x5a\xd0\x0b\x20\xf0\x00\x02\x05\x15\xf0\x00\x02\x05\x15\xf0\x00\x02\x05\x15\xe0\x0f\x14\x88\x75\x88\x75\xf0\x05\x02\x05\x15\xf8\xf8\xf8\xf5\x10\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x22\xdd\x11\x15\x90\x64\x98\x45\xd1\x11\x22\xd4\x11\x22\x88\x06\x88\x06\xe5\x11\x15\x90\x64\x98\x44\xd1\x11\x21\xd4\x11\x21\x88\x06\xdd\x0d\x15\x90\x66\xd1\x0d\x1d\xd4\x0d\x1d\x80\x46\xf0\x02\x03\x05\x15\xdd\x0d\x0f\x8c\x58\x90\x66\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\x88\x02\xf8\xdd\x0c\x13\x95\x5a\xd0\x0b\x20\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\x88\x75\xf0\x03\x01\x05\x15\xf8\xf8\xf8\xf0\x06\x00\x0c\x0e\x8c\x39\x80\x44\xd8\x0b\x0d\x8c\x39\x80\x44\xd8\x07\x0b\x88\x74\x82\x7c\x80\x7c\xd8\x0f\x13\x88\x74\xd8\x0b\x0d\x8c\x39\x80\x44\xd8\x0b\x0d\x8c\x39\x80\x44\xd8\x07\x0b\x88\x74\x82\x7c\x80\x7c\xd8\x0f\x13\x88\x74\xd8\x0b\x10\x88\x35", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -posixpath_toplevel_consts_22_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x82\x14\x32\x00\xb2\x11\x41\x07\x03\xc1\x06\x01\x41\x07\x03\xc2\x24\x14\x42\x39\x00\xc2\x39\x11\x43\x0e\x03\xc3\x0d\x01\x43\x0e\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_dev1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dev1", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_dev2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dev2", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_ino1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ino1", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_ino2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ino2", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -posixpath_toplevel_consts_22_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(path), - & const_str_s1._ascii.ob_base, - &_Py_ID(parent), - & const_str_s2._ascii.ob_base, - & const_str_dev1._ascii.ob_base, - & const_str_dev2._ascii.ob_base, - & const_str_ino1._ascii.ob_base, - & const_str_ino2._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(510) -posixpath_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 255, - }, - .co_consts = & posixpath_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_22_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_consts_22_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 186, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_ismount._ascii.ob_base, - .co_qualname = & const_str_ismount._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_22_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x6e\x18\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x11\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x10\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x6e\x18\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x03\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x04\x7c\x05\x6b\x03\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x7c\x01\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x03\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x06\x7c\x07\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[80]; - } -posixpath_toplevel_consts_23_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 79, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x78\x70\x61\x6e\x64\x20\x7e\x20\x61\x6e\x64\x20\x7e\x75\x73\x65\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x73\x2e\x20\x20\x49\x66\x20\x75\x73\x65\x72\x20\x6f\x72\x20\x24\x48\x4f\x4d\x45\x20\x69\x73\x20\x75\x6e\x6b\x6e\x6f\x77\x6e\x2c\x0a\x20\x20\x20\x20\x64\x6f\x20\x6e\x6f\x74\x68\x69\x6e\x67\x2e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_HOME = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HOME", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_ASCII = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ASCII", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_vxworks = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "vxworks", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -posixpath_toplevel_consts_23_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & posixpath_toplevel_consts_23_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[126]), - & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & const_str_HOME._ascii.ob_base, - Py_None, - & const_str_ASCII._ascii.ob_base, - & const_str_vxworks._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_pwd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pwd", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_getpwuid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getpwuid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_getuid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getuid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_pw_dir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pw_dir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_getpwnam = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getpwnam", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[21]; - }_object; - } -posixpath_toplevel_consts_23_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 21, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str__get_sep._ascii.ob_base, - & const_str_find._ascii.ob_base, - &_Py_ID(len), - & const_str_environ._ascii.ob_base, - & const_str_pwd._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_getpwuid._ascii.ob_base, - & const_str_getuid._ascii.ob_base, - & const_str_pw_dir._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - & const_str_str._ascii.ob_base, - & const_str_getpwnam._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_platform._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str_rstrip._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[564]; - } -posixpath_toplevel_consts_23_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 563, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x03\x05\x14\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x13\x88\x05\xd8\x0b\x0f\x8f\x3f\x8a\x3f\x98\x35\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x0b\xdd\x0a\x12\x90\x34\x89\x2e\x8c\x2e\x80\x43\xd8\x08\x0c\x8f\x09\x8a\x09\x90\x23\x90\x71\xd1\x08\x19\xd4\x08\x19\x80\x41\xd8\x07\x08\x88\x31\x82\x75\x80\x75\xdd\x0c\x0f\x90\x04\x89\x49\x8c\x49\x88\x01\xd8\x07\x08\x88\x41\x82\x76\x80\x76\xd8\x0b\x11\x9d\x12\x9c\x1a\xd0\x0b\x23\xd0\x0b\x23\xf0\x02\x04\x0d\x1c\xd8\x10\x1a\x90\x0a\x90\x0a\x90\x0a\x90\x0a\xf8\xdd\x13\x1e\xf0\x00\x02\x0d\x1c\xf0\x00\x02\x0d\x1c\xf0\x00\x02\x0d\x1c\xe0\x17\x1b\x90\x0b\x90\x0b\x90\x0b\xf0\x05\x02\x0d\x1c\xf8\xf8\xf8\xf0\x06\x05\x0d\x1c\xd8\x1b\x1e\x9f\x3c\x9a\x3c\xad\x02\xac\x09\xa9\x0b\xac\x0b\xd1\x1b\x34\xd4\x1b\x34\xd4\x1b\x3b\x90\x08\x90\x08\xf8\xdd\x13\x1b\xf0\x00\x03\x0d\x1c\xf0\x00\x03\x0d\x1c\xf0\x00\x03\x0d\x1c\xf0\x06\x00\x18\x1c\x90\x0b\x90\x0b\x90\x0b\xf0\x07\x03\x0d\x1c\xf8\xf8\xf8\xf5\x0a\x00\x18\x1a\x94\x7a\xa0\x26\xd4\x17\x29\x88\x48\x88\x48\xf0\x04\x04\x09\x18\xd8\x0c\x16\x88\x4a\x88\x4a\x88\x4a\x88\x4a\xf8\xdd\x0f\x1a\xf0\x00\x02\x09\x18\xf0\x00\x02\x09\x18\xf0\x00\x02\x09\x18\xe0\x13\x17\x88\x4b\x88\x4b\x88\x4b\xf0\x05\x02\x09\x18\xf8\xf8\xf8\xf0\x06\x00\x10\x14\x90\x41\x90\x61\x90\x43\x8c\x79\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x01\x09\x26\xdd\x13\x16\x90\x74\x98\x57\xd1\x13\x25\xd4\x13\x25\x88\x44\xf0\x02\x05\x09\x18\xd8\x14\x17\x97\x4c\x92\x4c\xa0\x14\xd1\x14\x26\xd4\x14\x26\x88\x45\x88\x45\xf8\xdd\x0f\x17\xf0\x00\x03\x09\x18\xf0\x00\x03\x09\x18\xf0\x00\x03\x09\x18\xf0\x06\x00\x14\x18\x88\x4b\x88\x4b\x88\x4b\xf0\x07\x03\x09\x18\xf8\xf8\xf8\xf0\x08\x00\x14\x19\x94\x3c\x88\x08\xe0\x07\x0f\xd0\x07\x17\x9d\x43\x9c\x4c\xa8\x49\xd2\x1c\x35\xd0\x1c\x35\xd8\x0f\x13\x88\x0b\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x04\x05\x13\xdd\x13\x15\x94\x3b\x98\x78\xd1\x13\x28\xd4\x13\x28\x88\x08\xd8\x0f\x13\x88\x04\x88\x04\xe0\x0f\x12\x88\x04\xd8\x0f\x17\x8f\x7f\x8a\x7f\x98\x74\xd1\x0f\x24\xd4\x0f\x24\x80\x48\xd8\x0c\x14\x90\x74\x98\x41\x98\x42\x98\x42\x94\x78\xd1\x0c\x1f\xd0\x0b\x28\xa0\x44\xd0\x04\x28", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[73]; - } -posixpath_toplevel_consts_23_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 72, - }, - .ob_shash = -1, - .ob_sval = "\xc2\x15\x04\x42\x1a\x00\xc2\x1a\x0c\x42\x29\x03\xc2\x28\x01\x42\x29\x03\xc2\x2d\x2b\x43\x19\x00\xc3\x19\x0c\x43\x28\x03\xc3\x27\x01\x43\x28\x03\xc3\x3f\x04\x44\x04\x00\xc4\x04\x0c\x44\x13\x03\xc4\x12\x01\x44\x13\x03\xc5\x06\x15\x45\x1c\x00\xc5\x1c\x0c\x45\x2b\x03\xc5\x2a\x01\x45\x2b\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_pwent = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pwent", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -posixpath_toplevel_consts_23_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(path), - & const_str_tilde._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_pwd._ascii.ob_base, - & const_str_userhome._ascii.ob_base, - &_Py_ID(name), - & const_str_pwent._ascii.ob_base, - & const_str_root._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(950) -posixpath_toplevel_consts_23 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 475, - }, - .co_consts = & posixpath_toplevel_consts_23_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_consts_23_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 229, - .co_nlocalsplus = 9, - .co_nlocals = 9, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_23_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_expanduser._ascii.ob_base, - .co_qualname = & const_str_expanduser._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_23_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x03\x64\x01\x7d\x01\x6e\x02\x64\x02\x7d\x01\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x64\x04\x6b\x00\x00\x00\x00\x00\x72\x0f\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x64\x03\x6b\x02\x00\x00\x00\x00\x72\x78\x64\x05\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x57\x09\x00\x64\x04\x64\x06\x6c\x09\x7d\x04\x6e\x12\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x04\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x9c\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x77\x09\x00\x64\x04\x64\x06\x6c\x09\x7d\x04\x6e\x12\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x64\x03\x7c\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x09\x00\x7c\x04\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x12\x23\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x07\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x80\x12\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x12\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x17\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x13\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x09\x7d\x08\x6e\x02\x64\x0a\x7d\x08\x7c\x05\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x7c\x00\x7c\x03\x64\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x70\x01\x7c\x08\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[91]; - } -posixpath_toplevel_consts_24_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 90, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x78\x70\x61\x6e\x64\x20\x73\x68\x65\x6c\x6c\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x6f\x66\x20\x66\x6f\x72\x6d\x20\x24\x76\x61\x72\x20\x61\x6e\x64\x20\x24\x7b\x76\x61\x72\x7d\x2e\x20\x20\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x0a\x20\x20\x20\x20\x61\x72\x65\x20\x6c\x65\x66\x74\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -posixpath_toplevel_consts_24_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\\$(\\w+|\\{[^}]*\\})", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -posixpath_toplevel_consts_24_consts_9 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\\$(\\w+|\\{[^}]*\\})", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -posixpath_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & posixpath_toplevel_consts_24_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[36]), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & posixpath_toplevel_consts_24_consts_4.ob_base.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[123]), - (PyObject *)&_Py_SINGLETON(bytes_characters[125]), - & const_str_environb._ascii.ob_base, - & ntpath_toplevel_consts_28_consts_11._ascii.ob_base, - & posixpath_toplevel_consts_24_consts_9._ascii.ob_base, - &_Py_STR(open_br), - &_Py_STR(close_br), - Py_True, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__varprogb = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_varprogb", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_re = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "re", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__varprog = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_varprog", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_span = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "span", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_group = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "group", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[20]; - }_object; - } -posixpath_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 20, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str__varprogb._ascii.ob_base, - & const_str_re._ascii.ob_base, - & const_str_compile._ascii.ob_base, - & const_str_ASCII._ascii.ob_base, - & const_str_search._ascii.ob_base, - &_Py_ID(getattr), - & const_str__varprog._ascii.ob_base, - & const_str_environ._ascii.ob_base, - & const_str_span._ascii.ob_base, - & const_str_group._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str_endswith._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - &_Py_ID(len), - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[487]; - } -posixpath_toplevel_consts_24_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 486, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x0c\x0e\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xe5\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x13\x05\x1d\xd8\x0b\x0f\x90\x74\xd0\x0b\x1b\xd0\x0b\x1b\xd8\x13\x17\x88\x4b\xdd\x0f\x18\xf0\x00\x02\x09\x44\x01\xd8\x0c\x15\x88\x49\x88\x49\x88\x49\xd8\x18\x1a\x9f\x0a\x9a\x0a\xd0\x23\x38\xb8\x22\xbc\x28\xd1\x18\x43\xd4\x18\x43\x88\x49\xdd\x11\x1a\xd4\x11\x21\x88\x06\xd8\x10\x14\x88\x05\xd8\x0e\x12\x88\x03\xdd\x12\x19\x9d\x22\x98\x6a\xa8\x24\xd1\x12\x2f\xd4\x12\x2f\x88\x07\x88\x07\xe0\x0b\x0e\x90\x64\x88\x3f\x88\x3f\xd8\x13\x17\x88\x4b\xdd\x0f\x17\xf0\x00\x02\x09\x42\x01\xd8\x0c\x15\x88\x49\x88\x49\x88\x49\xd8\x17\x19\x97\x7a\x92\x7a\xd0\x22\x36\xb8\x02\xbc\x08\xd1\x17\x41\xd4\x17\x41\x88\x48\xdd\x11\x19\x94\x1f\x88\x06\xd8\x10\x13\x88\x05\xd8\x0e\x11\x88\x03\xdd\x12\x14\x94\x2a\x88\x07\xd8\x08\x09\x80\x41\xf0\x02\x13\x05\x19\xd8\x0c\x12\x88\x46\x90\x34\x98\x11\x89\x4f\x8c\x4f\x88\x01\xd8\x0f\x10\xf0\x00\x01\x09\x12\xd8\x0c\x11\xd8\x0f\x10\x8f\x76\x8a\x76\x90\x61\x89\x79\x8c\x79\x89\x04\x88\x01\x88\x31\xd8\x0f\x10\x8f\x77\x8a\x77\x90\x71\x89\x7a\x8c\x7a\x88\x04\xd8\x0b\x0f\x8f\x3f\x8a\x3f\x98\x35\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x09\x1e\xa0\x64\xa7\x6d\xa2\x6d\xb0\x43\xd1\x26\x38\xd4\x26\x38\xf0\x00\x01\x09\x1e\xd8\x13\x17\x98\x01\x98\x22\x98\x04\x94\x3a\x88\x44\xf0\x02\x0b\x09\x19\xd8\x0f\x16\x88\x7f\xdd\x18\x1a\x9c\x0b\xa5\x42\xa4\x4a\xad\x72\xac\x7b\xb8\x34\xd1\x2f\x40\xd4\x2f\x40\xd4\x24\x41\xd1\x18\x42\xd4\x18\x42\x90\x05\x90\x05\xe0\x18\x1f\xa0\x04\x9c\x0d\x90\x05\xf0\x08\x00\x14\x18\x98\x01\x98\x02\x98\x02\x94\x38\x88\x44\xd8\x13\x17\x98\x02\x98\x11\x98\x02\x94\x38\x98\x65\xd1\x13\x23\x88\x44\xdd\x10\x13\x90\x44\x91\x09\x94\x09\x88\x41\xd8\x0c\x10\x90\x44\x89\x4c\x88\x44\x88\x44\xf8\xf5\x0d\x00\x10\x18\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xd8\x10\x11\x88\x41\x88\x41\x88\x41\xf0\x03\x01\x09\x12\xf8\xf8\xf8\xf0\x1b\x13\x05\x19\xf0\x28\x00\x0c\x10\x80\x4b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -posixpath_toplevel_consts_24_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\xc4\x39\x41\x01\x46\x26\x00\xc6\x26\x0c\x46\x35\x03\xc6\x34\x01\x46\x35\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_end = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "end", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_j = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "j", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -posixpath_toplevel_consts_24_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - &_Py_ID(path), - & const_str_re._ascii.ob_base, - & const_str_search._ascii.ob_base, - & const_str_start._ascii.ob_base, - & const_str_end._ascii.ob_base, - & const_str_environ._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_m._ascii.ob_base, - & const_str_j._ascii.ob_base, - &_Py_ID(name), - & const_str_value._ascii.ob_base, - & const_str_tail._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(886) -posixpath_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 443, - }, - .co_consts = & posixpath_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_consts_24_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 293, - .co_nlocalsplus = 12, - .co_nlocals = 12, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_24_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_36_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_expandvars._ascii.ob_base, - .co_qualname = & const_str_expandvars._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_24_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x53\x64\x01\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x64\x02\x64\x03\x6c\x05\x7d\x01\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x61\x04\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x05\x7d\x03\x64\x06\x7d\x04\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x48\x64\x08\x7c\x00\x76\x01\x72\x02\x7c\x00\x53\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x64\x02\x64\x03\x6c\x05\x7d\x01\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\x7c\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x61\x0a\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x0a\x7d\x03\x64\x0b\x7d\x04\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x02\x7d\x06\x09\x00\x02\x00\x7c\x02\x7c\x00\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x73\x01\x6e\xe2\x7c\x07\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x08\x7c\x07\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x09\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1f\x7c\x09\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0a\x7c\x09\x64\x0d\x64\x0e\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x09\x00\x7c\x05\x80\x37\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x11\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x6e\x08\x7c\x05\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x7c\x00\x7c\x08\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x00\x64\x03\x7c\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x7a\x00\x00\x00\x7d\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x00\x7c\x0b\x7a\x0d\x00\x00\x7d\x00\x6e\x12\x23\x00\x74\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x7c\x08\x7d\x06\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x8c\xf1\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct _PyCode_DEF(224) -posixpath_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 112, - }, - .co_consts = & ntpath_toplevel_consts_30_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_30_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 389, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_normpath._ascii.ob_base, - .co_qualname = & const_str_normpath._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_30_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x35\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x01\x53\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -posixpath_toplevel_consts_27_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & ntpath_toplevel_consts_30_consts_0._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_empty), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - &_Py_STR(empty), - &_Py_STR(dot), - & ntpath_toplevel_consts_2._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -posixpath_toplevel_consts_27_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str_split._ascii.ob_base, - &_Py_ID(append), - & const_str_pop._ascii.ob_base, - &_Py_ID(join), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[361]; - } -posixpath_toplevel_consts_27_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 360, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x11\x8c\x79\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x09\x09\x1a\xd8\x12\x16\x88\x43\xd8\x14\x17\x88\x45\xd8\x12\x16\x88\x43\xd8\x15\x1a\x88\x46\x88\x46\xe0\x12\x15\x88\x43\xd8\x14\x16\x88\x45\xd8\x12\x15\x88\x43\xd8\x15\x19\x88\x46\xd8\x0b\x0f\x90\x35\x8a\x3d\x88\x3d\xd8\x13\x16\x88\x4a\xd8\x1a\x1e\x9f\x2f\x9a\x2f\xa8\x23\xd1\x1a\x2e\xd4\x1a\x2e\x88\x0f\xf0\x08\x00\x0d\x1c\xf0\x00\x02\x09\x20\xd8\x0c\x10\x8f\x4f\x8a\x4f\x98\x43\xa0\x01\x99\x45\xd1\x0c\x22\xd4\x0c\x22\xf0\x03\x02\x09\x20\xd8\x2b\x2f\xaf\x3f\xaa\x3f\xb8\x33\xb8\x71\xb9\x35\xd1\x2b\x41\xd4\x2b\x41\xf0\x03\x02\x09\x20\xe0\x1e\x1f\x88\x4f\xd8\x10\x14\x97\x0a\x92\x0a\x98\x33\x91\x0f\x94\x0f\x88\x05\xd8\x14\x16\x88\x09\xd8\x14\x19\xf0\x00\x07\x09\x20\xf0\x00\x07\x09\x20\x88\x44\xd8\x0f\x13\x98\x05\x98\x73\x90\x7c\xd0\x0f\x23\xd0\x0f\x23\xd8\x10\x18\xd8\x10\x14\x98\x06\x92\x0e\x90\x0e\xa0\x7f\x90\x0e\xb8\x79\x90\x0e\xd8\x12\x1b\xf0\x03\x00\x11\x1f\xd8\x20\x29\xa8\x22\xa4\x0d\xb0\x16\xd2\x20\x37\xd0\x20\x37\xd8\x10\x19\xd7\x10\x20\xd2\x10\x20\xa0\x14\xd1\x10\x26\xd4\x10\x26\xd0\x10\x26\xd0\x10\x26\xd8\x11\x1a\xf0\x00\x01\x0d\x20\xd8\x10\x19\x97\x0d\x92\x0d\x91\x0f\x94\x0f\x90\x0f\xf8\xd8\x10\x19\x88\x05\xd8\x0f\x12\x8f\x78\x8a\x78\x98\x05\x89\x7f\x8c\x7f\x88\x04\xd8\x0b\x1a\xf0\x00\x01\x09\x2e\xd8\x13\x16\x90\x7f\xd1\x13\x26\xa8\x14\xd1\x13\x2d\x88\x44\xd8\x0f\x13\x88\x7b\x90\x73\xd0\x08\x1a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_empty = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "empty", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_dotdot = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dotdot", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_initial_slashes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "initial_slashes", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_new_comps = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "new_comps", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_comp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "comp", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -posixpath_toplevel_consts_27_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(path), - & const_str_sep._ascii.ob_base, - & const_str_empty._ascii.ob_base, - & const_str_dot._ascii.ob_base, - & const_str_dotdot._ascii.ob_base, - & const_str_initial_slashes._ascii.ob_base, - & const_str_comps._ascii.ob_base, - & const_str_new_comps._ascii.ob_base, - & const_str_comp._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(560) -posixpath_toplevel_consts_27 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 280, - }, - .co_consts = & posixpath_toplevel_consts_27_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_27_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 350, - .co_nlocalsplus = 9, - .co_nlocals = 9, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_27_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_normpath._ascii.ob_base, - .co_qualname = & const_str_normpath._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_27_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x09\x64\x01\x7d\x01\x64\x02\x7d\x02\x64\x03\x7d\x03\x64\x04\x7d\x04\x6e\x08\x64\x05\x7d\x01\x64\x06\x7d\x02\x64\x07\x7d\x03\x64\x08\x7d\x04\x7c\x00\x7c\x02\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x03\x53\x00\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x72\x32\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x09\x7a\x05\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x0a\x7a\x05\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x64\x09\x7d\x05\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x67\x00\x7d\x07\x7c\x06\x44\x00\x5d\x4d\x7d\x08\x7c\x08\x7c\x02\x7c\x03\x66\x02\x76\x00\x72\x01\x8c\x09\x7c\x08\x7c\x04\x6b\x03\x00\x00\x00\x00\x73\x12\x7c\x05\x73\x02\x7c\x07\x72\x0e\x7c\x07\x72\x22\x7c\x07\x64\x0b\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6b\x02\x00\x00\x00\x00\x72\x16\x7c\x07\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x37\x7c\x07\x72\x14\x7c\x07\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x4e\x7c\x07\x7d\x06\x7c\x01\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x05\x72\x08\x7c\x01\x7c\x05\x7a\x05\x00\x00\x7c\x00\x7a\x00\x00\x00\x7d\x00\x7c\x00\x70\x01\x7c\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -posixpath_toplevel_consts_28_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return an absolute path.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -posixpath_toplevel_consts_28_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & posixpath_toplevel_consts_28_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[97]; - } -posixpath_toplevel_consts_28_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 96, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x0b\x10\x90\x14\x89\x3b\x8c\x3b\xf0\x00\x05\x05\x1f\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x03\x09\x1e\xdd\x12\x14\x94\x2a\x91\x2c\x94\x2c\x88\x43\x88\x43\xe5\x12\x14\x94\x29\x91\x2b\x94\x2b\x88\x43\xdd\x0f\x13\x90\x43\x98\x14\x89\x7f\x8c\x7f\x88\x04\xdd\x0b\x13\x90\x44\x89\x3e\x8c\x3e\xd0\x04\x19", -}; -static - struct _PyCode_DEF(254) -posixpath_toplevel_consts_28 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 127, - }, - .co_consts = & posixpath_toplevel_consts_28_consts._object.ob_base.ob_base, - .co_names = & ntpath_toplevel_consts_32_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 397, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_abspath._ascii.ob_base, - .co_qualname = & const_str_abspath._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_28_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x4c\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x13\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[109]; - } -posixpath_toplevel_consts_31_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 108, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x63\x61\x6e\x6f\x6e\x69\x63\x61\x6c\x20\x70\x61\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x2c\x20\x65\x6c\x69\x6d\x69\x6e\x61\x74\x69\x6e\x67\x20\x61\x6e\x79\x0a\x73\x79\x6d\x62\x6f\x6c\x69\x63\x20\x6c\x69\x6e\x6b\x73\x20\x65\x6e\x63\x6f\x75\x6e\x74\x65\x72\x65\x64\x20\x69\x6e\x20\x74\x68\x65\x20\x70\x61\x74\x68\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_31_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & posixpath_toplevel_consts_31_consts_0._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__joinrealpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_joinrealpath", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -posixpath_toplevel_consts_31_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str__joinrealpath._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[63]; - } -posixpath_toplevel_consts_31_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 62, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x10\x12\x8c\x79\x98\x18\xd1\x0f\x22\xd4\x0f\x22\x80\x48\xdd\x0f\x1c\x98\x58\xa0\x62\xa0\x71\xa0\x62\x9c\x5c\xa8\x38\xb0\x56\xb8\x52\xd1\x0f\x40\xd4\x0f\x40\x81\x48\x80\x44\x88\x22\xdd\x0b\x12\x90\x34\x89\x3d\x8c\x3d\xd0\x04\x18", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -const_str_ok = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ok", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -posixpath_toplevel_consts_31_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(filename), - &_Py_ID(strict), - &_Py_ID(path), - & const_str_ok._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(130) -posixpath_toplevel_consts_31 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 65, - }, - .co_consts = & posixpath_toplevel_consts_31_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_31_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 1, - .co_stacksize = 6, - .co_firstlineno = 412, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_31_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_realpath._ascii.ob_base, - .co_qualname = & const_str_realpath._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_31_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x69\x00\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -posixpath_toplevel_consts_32_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - Py_None, - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - &_Py_STR(dot), - & ntpath_toplevel_consts_2._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_False, - Py_True, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -posixpath_toplevel_consts_32_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - & const_str_partition._ascii.ob_base, - & const_str_split._ascii.ob_base, - &_Py_ID(join), - & const_str_os._ascii.ob_base, - & const_str_lstat._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_S_ISLNK._ascii.ob_base, - & const_str_st_mode._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str__joinrealpath._ascii.ob_base, - & const_str_readlink._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[506]; - } -posixpath_toplevel_consts_32_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 505, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x16\xd8\x0e\x12\x88\x03\xd8\x11\x15\x88\x06\xd8\x11\x16\x88\x06\x88\x06\xe0\x0e\x11\x88\x03\xd8\x11\x14\x88\x06\xd8\x11\x15\x88\x06\xe5\x07\x0c\x88\x54\x81\x7b\x84\x7b\xf0\x00\x02\x05\x13\xd8\x0f\x13\x90\x41\x90\x42\x90\x42\x8c\x78\x88\x04\xd8\x0f\x12\x88\x04\xe0\x0a\x0e\xf1\x00\x2c\x05\x1d\xd8\x18\x1c\x9f\x0e\x9a\x0e\xa0\x73\xd1\x18\x2b\xd4\x18\x2b\x89\x0d\x88\x04\x88\x61\x90\x14\xd8\x0f\x13\xf0\x00\x02\x09\x15\x90\x74\x98\x76\x92\x7e\x90\x7e\xe0\x0c\x14\xd8\x0b\x0f\x90\x36\x8a\x3e\x88\x3e\xe0\x0f\x13\xf0\x00\x05\x0d\x1e\xdd\x1d\x22\xa0\x34\x99\x5b\x9c\x5b\x91\x0a\x90\x04\x90\x64\xd8\x13\x17\x98\x36\x92\x3e\x90\x3e\xdd\x1b\x1f\xa0\x04\xa0\x66\xa8\x66\xd1\x1b\x35\xd4\x1b\x35\x90\x44\xf8\xe0\x17\x1d\x90\x04\xd8\x0c\x14\xdd\x12\x16\x90\x74\x98\x54\xd1\x12\x22\xd4\x12\x22\x88\x07\xf0\x02\x07\x09\x2f\xdd\x11\x13\x94\x18\x98\x27\xd1\x11\x22\xd4\x11\x22\x88\x42\xf5\x0c\x00\x17\x1b\x94\x6c\xa0\x32\xa4\x3a\xd1\x16\x2e\xd4\x16\x2e\x88\x47\x88\x47\xf8\xf5\x0b\x00\x10\x17\xf0\x00\x03\x09\x1c\xf0\x00\x03\x09\x1c\xf0\x00\x03\x09\x1c\xd8\x0f\x15\xf0\x00\x01\x0d\x16\xd8\x10\x15\xd8\x16\x1b\x88\x47\x88\x47\x88\x47\xf0\x07\x03\x09\x1c\xf8\xf8\xf8\xf0\x0c\x00\x10\x17\xf0\x00\x02\x09\x15\xd8\x13\x1a\x88\x44\xd8\x0c\x14\xe0\x0b\x12\x90\x64\x88\x3f\x88\x3f\xe0\x13\x17\x98\x07\x94\x3d\x88\x44\xd8\x0f\x13\xd0\x0f\x1f\xe0\x10\x18\xe0\x0f\x15\xf0\x00\x05\x0d\x32\xe5\x10\x12\x94\x07\x98\x07\xd1\x10\x20\xd4\x10\x20\xd0\x10\x20\xd0\x10\x20\xf5\x06\x00\x18\x1c\x98\x47\xa0\x54\xd1\x17\x2a\xd4\x17\x2a\xa8\x45\xd0\x17\x31\xd0\x10\x31\xd8\x18\x1c\x88\x04\x88\x57\x89\x0d\xdd\x13\x20\xa0\x14\xa5\x72\xa4\x7b\xb0\x37\xd1\x27\x3b\xd4\x27\x3b\xb8\x56\xc0\x54\xd1\x13\x4a\xd4\x13\x4a\x89\x08\x88\x04\x88\x62\xd8\x0f\x11\xf0\x00\x01\x09\x2b\xdd\x13\x17\x98\x04\x98\x64\xd1\x13\x23\xd4\x13\x23\xa0\x55\xd0\x13\x2a\xd0\x0c\x2a\xd8\x18\x1c\x88\x04\x88\x57\x89\x0d\xf0\x59\x01\x00\x0b\x0f\xf1\x00\x2c\x05\x1d\xf0\x5c\x01\x00\x0c\x10\x90\x14\x88\x3a\xd0\x04\x15", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -posixpath_toplevel_consts_32_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc2\x29\x14\x43\x17\x00\xc3\x17\x0f\x43\x29\x03\xc3\x28\x01\x43\x29\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_newpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "newpath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_is_link = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "is_link", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -posixpath_toplevel_consts_32_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - &_Py_ID(path), - & const_str_rest._ascii.ob_base, - &_Py_ID(strict), - & const_str_seen._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(_), - & const_str_newpath._ascii.ob_base, - & const_str_st._ascii.ob_base, - & const_str_is_link._ascii.ob_base, - & const_str_ok._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[14]; - } -posixpath_toplevel_consts_32_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 13, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(746) -posixpath_toplevel_consts_32 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 373, - }, - .co_consts = & posixpath_toplevel_consts_32_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_32_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_consts_32_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 421, - .co_nlocalsplus = 13, - .co_nlocals = 13, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_32_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str__joinrealpath._ascii.ob_base, - .co_qualname = & const_str__joinrealpath._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_32_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x01\x7d\x04\x64\x02\x7d\x05\x64\x03\x7d\x06\x6e\x06\x64\x04\x7d\x04\x64\x05\x7d\x05\x64\x06\x7d\x06\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x7c\x01\x64\x07\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x04\x7d\x00\x7c\x01\x90\x01\x72\x30\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x07\x7d\x08\x7d\x01\x7c\x07\x72\x06\x7c\x07\x7c\x05\x6b\x02\x00\x00\x00\x00\x72\x01\x8c\x25\x7c\x07\x7c\x06\x6b\x02\x00\x00\x00\x00\x72\x2f\x7c\x00\x72\x2a\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x07\x7c\x07\x7c\x06\x6b\x02\x00\x00\x00\x00\x72\x11\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x06\x7c\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x6e\x02\x7c\x06\x7d\x00\x8c\x5a\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x09\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x6e\x15\x23\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x08\x01\x00\x7c\x02\x72\x01\x82\x00\x64\x08\x7d\x0b\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0b\x73\x03\x7c\x09\x7d\x00\x8c\xb3\x7c\x09\x7c\x03\x76\x00\x72\x34\x7c\x03\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x81\x01\x8c\xc2\x7c\x02\x72\x15\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x12\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x66\x02\x53\x00\x64\x00\x7c\x03\x7c\x09\x3c\x00\x00\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x0c\x7c\x0c\x73\x12\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x66\x02\x53\x00\x7c\x00\x7c\x03\x7c\x09\x3c\x00\x00\x00\x7c\x01\x90\x01\xb0\x30\x7c\x00\x64\x09\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[30]; - } -posixpath_toplevel_consts_34_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 29, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd0\x15\x40\xd0\x15\x40\xd0\x15\x40\x98\x41\xb8\x61\xd0\x15\x40\x90\x61\xd0\x15\x40\xd0\x15\x40\xd0\x15\x40", -}; -static - struct _PyCode_DEF(22) -posixpath_toplevel_consts_34_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 11, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 508, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_34_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[30]; - } -posixpath_toplevel_consts_34_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 29, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd0\x14\x3e\xd0\x14\x3e\xd0\x14\x3e\x98\x31\xb8\x41\xd0\x14\x3e\x90\x51\xd0\x14\x3e\xd0\x14\x3e\xd0\x14\x3e", -}; -static - struct _PyCode_DEF(22) -posixpath_toplevel_consts_34_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 11, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 509, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & ntpath_toplevel_consts_44_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_44_consts_11_qualname._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_34_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x06\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x91\x02\x8c\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -posixpath_toplevel_consts_34_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & ntpath_toplevel_consts_44_consts_0._ascii.ob_base, - & ntpath_toplevel_consts_44_consts_8._ascii.ob_base, - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - & ntpath_toplevel_consts_31_consts_4.ob_base.ob_base, - &_Py_STR(dot), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & ntpath_toplevel_consts_2._ascii.ob_base, - Py_None, - & posixpath_toplevel_consts_34_consts_9.ob_base.ob_base, - & posixpath_toplevel_consts_34_consts_10.ob_base.ob_base, - & const_str_relpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -posixpath_toplevel_consts_34_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & const_str_ValueError._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str_split._ascii.ob_base, - &_Py_ID(len), - & const_str_commonprefix._ascii.ob_base, - &_Py_ID(join), - & const_str_TypeError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_BytesWarning._ascii.ob_base, - & const_str_DeprecationWarning._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - & const_str__check_arg_types._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[347]; - } -posixpath_toplevel_consts_34_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 346, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x06\x00\x0c\x10\xf0\x00\x01\x05\x2e\xdd\x0e\x18\xd0\x19\x2c\xd1\x0e\x2d\xd4\x0e\x2d\xd0\x08\x2d\xe5\x0b\x0d\x8c\x39\x90\x54\x89\x3f\x8c\x3f\x80\x44\xdd\x07\x11\x90\x24\x9d\x05\xd1\x07\x1e\xd4\x07\x1e\xf0\x00\x07\x05\x16\xd8\x11\x15\x88\x06\xd8\x0e\x12\x88\x03\xd8\x11\x16\x88\x06\x88\x06\xe0\x11\x14\x88\x06\xd8\x0e\x11\x88\x03\xd8\x11\x15\x88\x06\xe0\x07\x0c\x80\x7d\xd8\x10\x16\x88\x05\x88\x05\xe5\x10\x12\x94\x09\x98\x25\xd1\x10\x20\xd4\x10\x20\x88\x05\xf0\x04\x0c\x05\x0e\xd8\x15\x40\xd0\x15\x40\xa5\x17\xa8\x15\xa1\x1e\xa4\x1e\xd7\x21\x35\xd2\x21\x35\xb0\x63\xd1\x21\x3a\xd4\x21\x3a\xd0\x15\x40\xd1\x15\x40\xd4\x15\x40\x88\x0a\xd8\x14\x3e\xd0\x14\x3e\xa5\x07\xa8\x04\xa1\x0d\xa4\x0d\xd7\x20\x33\xd2\x20\x33\xb0\x43\xd1\x20\x38\xd4\x20\x38\xd0\x14\x3e\xd1\x14\x3e\xd4\x14\x3e\x88\x09\xe5\x0c\x0f\x95\x0c\x98\x6a\xa8\x29\xd0\x1d\x34\xd1\x10\x35\xd4\x10\x35\xd1\x0c\x36\xd4\x0c\x36\x88\x01\xe0\x14\x1a\x90\x38\x9d\x73\xa0\x3a\x99\x7f\x9c\x7f\xa8\x71\xd1\x1f\x30\xd1\x13\x31\xb0\x49\xb8\x61\xb8\x62\xb8\x62\xb4\x4d\xd1\x13\x41\x88\x08\xd8\x0f\x17\xf0\x00\x01\x09\x1a\xd8\x13\x19\x88\x4d\xdd\x0f\x13\x90\x58\x88\x7f\xd0\x08\x1e\xf8\xdd\x0c\x15\x95\x7e\xa5\x7c\xd5\x35\x47\xd0\x0b\x48\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x59\xb0\x04\xb0\x65\xd1\x08\x3c\xd4\x08\x3c\xd0\x08\x3c\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -posixpath_toplevel_consts_34_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x22\x42\x1a\x44\x06\x00\xc3\x3d\x08\x44\x06\x00\xc4\x06\x35\x44\x3b\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -posixpath_toplevel_consts_34_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(path), - & const_str_start._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_start_list._ascii.ob_base, - & const_str_path_list._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_rel_list._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(636) -posixpath_toplevel_consts_34 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 318, - }, - .co_consts = & posixpath_toplevel_consts_34_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_34_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_consts_34_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 486, - .co_nlocalsplus = 9, - .co_nlocals = 9, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_34_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_relpath._ascii.ob_base, - .co_qualname = & const_str_relpath._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_34_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x73\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x07\x64\x02\x7d\x02\x64\x03\x7d\x03\x64\x04\x7d\x04\x6e\x06\x64\x05\x7d\x02\x64\x06\x7d\x03\x64\x07\x7d\x04\x7c\x01\x80\x03\x7c\x02\x7d\x01\x6e\x14\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x64\x09\x84\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x0a\x84\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x06\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x04\x67\x01\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7a\x0a\x00\x00\x7a\x05\x00\x00\x7c\x06\x7c\x07\x64\x08\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x7d\x08\x7c\x08\x73\x02\x7c\x02\x53\x00\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\x8e\x00\x53\x00\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x04\x24\x00\x72\x18\x01\x00\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x7c\x00\x7c\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -posixpath_toplevel_consts_35_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd0\x16\x39\xd0\x16\x39\xd0\x16\x39\xa8\x34\x90\x74\x97\x7a\x92\x7a\xa0\x23\x91\x7f\x94\x7f\xd0\x16\x39\xd0\x16\x39\xd0\x16\x39", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_35_consts_7_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - &_Py_ID(path), - & const_str_sep._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(58) -posixpath_toplevel_consts_35_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = & ntpath_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 542, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & posixpath_toplevel_consts_35_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_35_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x17\x7d\x01\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x18\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[48]; - } -posixpath_toplevel_consts_35_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 47, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xd0\x18\x35\xd0\x18\x35\xa8\x21\x98\x11\x98\x32\x98\x41\x98\x32\x9c\x15\xa0\x23\x9a\x1c\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -posixpath_toplevel_consts_35_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_p._ascii.ob_base, - & const_str_sep._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(52) -posixpath_toplevel_consts_35_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & zipimport_toplevel_consts_25_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 545, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & posixpath_toplevel_consts_35_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & ntpath_toplevel_consts_45_consts_11_qualname._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_35_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x12\x7d\x01\x7c\x01\x64\x00\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x02\x6b\x02\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x13\x64\x00\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct _PyCode_DEF(36) -posixpath_toplevel_consts_35_consts_11_consts_0 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 549, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_17_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_18_consts_0_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_18_consts_0_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x0c\x7d\x01\x7c\x01\xaf\x04\x7c\x01\x89\x02\x6b\x03\x00\x00\x00\x00\xaf\x0a\x7c\x01\x91\x02\x8c\x0d\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -posixpath_toplevel_consts_35_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & posixpath_toplevel_consts_35_consts_11_consts_0.ob_base.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(44) -posixpath_toplevel_consts_35_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & posixpath_toplevel_consts_35_consts_11_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 549, - .co_nlocalsplus = 3, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & ntpath_toplevel_consts_45_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & ntpath_toplevel_consts_45_consts_9_qualname._ascii.ob_base, - .co_linetable = & ntpath_toplevel_consts_45_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x67\x00\x7c\x00\x5d\x10\x7d\x01\x88\x02\x66\x01\x64\x00\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x91\x02\x8c\x11\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -posixpath_toplevel_consts_35_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & ntpath_toplevel_consts_45_consts_0._ascii.ob_base, - & ntpath_toplevel_consts_45_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_Py_SINGLETON(bytes_characters[47]), - (PyObject *)&_Py_SINGLETON(bytes_characters[46]), - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - &_Py_STR(dot), - & posixpath_toplevel_consts_35_consts_7.ob_base.ob_base, - & posixpath_toplevel_consts_35_consts_8.ob_base.ob_base, - & ntpath_toplevel_consts_45_consts_12._ascii.ob_base, - Py_None, - & posixpath_toplevel_consts_35_consts_11.ob_base.ob_base, - & const_str_commonpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -posixpath_toplevel_consts_35_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & const_str_ValueError._ascii.ob_base, - & const_str_tuple._ascii.ob_base, - & const_str_map._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_set._ascii.ob_base, - & const_str_min._ascii.ob_base, - & const_str_max._ascii.ob_base, - & const_str_enumerate._ascii.ob_base, - &_Py_ID(join), - & const_str_TypeError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - & const_str__check_arg_types._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[449]; - } -posixpath_toplevel_consts_35_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 448, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xf8\x80\x00\xf0\x06\x00\x0c\x11\xf0\x00\x01\x05\x42\x01\xdd\x0e\x18\xd0\x19\x40\xd1\x0e\x41\xd4\x0e\x41\xd0\x08\x41\xe5\x0c\x11\x95\x23\x95\x62\x94\x69\xa0\x15\xd1\x12\x27\xd4\x12\x27\xd1\x0c\x28\xd4\x0c\x28\x80\x45\xdd\x07\x11\x90\x25\x98\x01\x94\x28\x9d\x45\xd1\x07\x22\xd4\x07\x22\xf0\x00\x05\x05\x15\xd8\x0e\x12\x88\x03\xd8\x11\x15\x88\x06\x88\x06\xe0\x0e\x11\x88\x03\xd8\x11\x14\x88\x06\xf0\x04\x15\x05\x0e\xd8\x16\x39\xd0\x16\x39\xd0\x16\x39\xd0\x16\x39\xb0\x35\xd0\x16\x39\xd1\x16\x39\xd4\x16\x39\x88\x0b\xf0\x04\x03\x09\x50\x01\xdd\x15\x18\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xd0\x18\x35\xa8\x75\xd0\x18\x35\xd1\x18\x35\xd4\x18\x35\xd1\x15\x35\xd4\x15\x35\x89\x46\x88\x45\x88\x45\xf8\xdd\x0f\x19\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xf0\x00\x01\x09\x50\x01\xdd\x12\x1c\xd0\x1d\x44\xd1\x12\x45\xd4\x12\x45\xc8\x34\xd0\x0c\x4f\xf0\x03\x01\x09\x50\x01\xf8\xf8\xf8\xf0\x06\x00\x17\x51\x01\xd0\x16\x50\xd0\x16\x50\xd0\x16\x50\xc0\x4b\xd0\x16\x50\xd1\x16\x50\xd4\x16\x50\x88\x0b\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xdd\x0d\x10\x90\x1b\xd1\x0d\x1d\xd4\x0d\x1d\x88\x02\xd8\x11\x13\x88\x06\xdd\x14\x1d\x98\x62\x91\x4d\x94\x4d\xf0\x00\x03\x09\x16\xf0\x00\x03\x09\x16\x89\x44\x88\x41\x88\x71\xd8\x0f\x10\x90\x42\x90\x71\x94\x45\x8a\x7a\x88\x7a\xd8\x19\x1b\x98\x42\x98\x51\x98\x42\x9c\x16\x90\x06\xd8\x10\x15\x90\x05\xf0\x05\x00\x10\x1a\xf0\x08\x00\x19\x1e\xd0\x11\x2a\x90\x13\x90\x13\xa0\x33\xa0\x72\xa8\x01\xa0\x72\xa4\x37\x88\x06\xd8\x0f\x15\x98\x03\x9f\x08\x9a\x08\xa0\x16\xd1\x18\x28\xd4\x18\x28\xd1\x0f\x28\xd0\x08\x28\xf8\xdd\x0c\x15\x95\x7e\xd0\x0b\x26\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xf0\x00\x02\x05\x0e\xdd\x08\x13\xd4\x08\x24\xa0\x5c\xd0\x08\x3a\xb0\x45\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd0\x08\x3a\xd8\x08\x0d\xf0\x05\x02\x05\x0e\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[38]; - } -posixpath_toplevel_consts_35_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 37, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x20\x0e\x44\x2c\x00\xc1\x2f\x1d\x42\x0d\x00\xc2\x0c\x01\x44\x2c\x00\xc2\x0d\x1b\x42\x28\x03\xc2\x28\x42\x03\x44\x2c\x00\xc4\x2c\x25\x45\x11\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -posixpath_toplevel_consts_35_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_paths._ascii.ob_base, - & const_str_split_paths._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - & const_str_s1._ascii.ob_base, - & const_str_s2._ascii.ob_base, - & const_str_common._ascii.ob_base, - & const_str_i._ascii.ob_base, - & const_str_c._ascii.ob_base, - & const_str_prefix._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[12]; - } -posixpath_toplevel_consts_35_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 11, - }, - .ob_shash = -1, - .ob_sval = " @@", -}; -static - struct _PyCode_DEF(680) -posixpath_toplevel_consts_35 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 340, - }, - .co_consts = & posixpath_toplevel_consts_35_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_consts_35_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_consts_35_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 527, - .co_nlocalsplus = 11, - .co_nlocals = 9, - .co_nplaincellvars = 2, - .co_ncellvars = 2, - .co_nfreevars = 0, - .co_localsplusnames = & posixpath_toplevel_consts_35_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & posixpath_toplevel_consts_35_localspluskinds.ob_base.ob_base, - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_commonpath._ascii.ob_base, - .co_qualname = & const_str_commonpath._ascii.ob_base, - .co_linetable = & posixpath_toplevel_consts_35_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x09\x87\x0a\x97\x00\x7c\x00\x73\x0f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x05\x64\x03\x8a\x0a\x64\x04\x8a\x09\x6e\x04\x64\x05\x8a\x0a\x64\x06\x8a\x09\x09\x00\x88\x0a\x66\x01\x64\x07\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x0a\x66\x01\x64\x08\x84\x08\x7c\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x01\x00\x00\x7d\x02\x6e\x1e\x23\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x88\x09\x66\x01\x64\x0b\x84\x08\x7c\x01\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x03\x7d\x05\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x1d\x5c\x02\x00\x00\x7d\x06\x7d\x07\x7c\x07\x7c\x04\x7c\x06\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0c\x7c\x03\x64\x0a\x7c\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x01\x00\x6e\x01\x8c\x1e\x7c\x02\x72\x02\x89\x0a\x6e\x09\x89\x0a\x64\x0a\x64\x02\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x89\x0a\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00\x23\x00\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x14\x01\x00\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x67\x01\x7c\x00\xa2\x01\x52\x00\x8e\x00\x01\x00\x82\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[37]; - }_object; - } -posixpath_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 37, - }, - .ob_item = { - & posixpath_toplevel_consts_0._ascii.ob_base, - &_Py_STR(dot), - & ntpath_toplevel_consts_2._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_8_consts_0._ascii.ob_base, - & posixpath_toplevel_consts_5._ascii.ob_base, - Py_None, - & posixpath_toplevel_consts_7._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & codecs_toplevel_consts_3._object.ob_base.ob_base, - & posixpath_toplevel_consts_10._object.ob_base.ob_base, - & posixpath_toplevel_consts_11.ob_base.ob_base, - & posixpath_toplevel_consts_12.ob_base.ob_base, - & posixpath_toplevel_consts_13.ob_base.ob_base, - & posixpath_toplevel_consts_14.ob_base.ob_base, - & posixpath_toplevel_consts_15.ob_base.ob_base, - & posixpath_toplevel_consts_16.ob_base.ob_base, - & posixpath_toplevel_consts_17.ob_base.ob_base, - & posixpath_toplevel_consts_18.ob_base.ob_base, - & posixpath_toplevel_consts_19.ob_base.ob_base, - & posixpath_toplevel_consts_20.ob_base.ob_base, - & posixpath_toplevel_consts_21.ob_base.ob_base, - & posixpath_toplevel_consts_22.ob_base.ob_base, - & posixpath_toplevel_consts_23.ob_base.ob_base, - & posixpath_toplevel_consts_24.ob_base.ob_base, - & ntpath_toplevel_consts_29._object.ob_base.ob_base, - & posixpath_toplevel_consts_26.ob_base.ob_base, - & posixpath_toplevel_consts_27.ob_base.ob_base, - & posixpath_toplevel_consts_28.ob_base.ob_base, - Py_False, - & codecs_toplevel_consts_14_consts_6._object.ob_base.ob_base, - & posixpath_toplevel_consts_31.ob_base.ob_base, - & posixpath_toplevel_consts_32.ob_base.ob_base, - & const_str_darwin._ascii.ob_base, - & posixpath_toplevel_consts_34.ob_base.ob_base, - & posixpath_toplevel_consts_35.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[42]; - }_object; - } -posixpath_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 42, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_devnull._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_genericpath._ascii.ob_base, - &_Py_ID(__all__), - & const_str__get_sep._ascii.ob_base, - & const_str_normcase._ascii.ob_base, - & const_str_isabs._ascii.ob_base, - &_Py_ID(join), - & const_str_split._ascii.ob_base, - & const_str_splitext._ascii.ob_base, - & const_str__splitext._ascii.ob_base, - & const_str_splitdrive._ascii.ob_base, - & const_str_basename._ascii.ob_base, - & const_str_dirname._ascii.ob_base, - & const_str_islink._ascii.ob_base, - & const_str_lexists._ascii.ob_base, - & const_str_ismount._ascii.ob_base, - & const_str_expanduser._ascii.ob_base, - & const_str__varprog._ascii.ob_base, - & const_str__varprogb._ascii.ob_base, - & const_str_expandvars._ascii.ob_base, - & const_str_posix._ascii.ob_base, - & const_str__path_normpath._ascii.ob_base, - & const_str_normpath._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str_realpath._ascii.ob_base, - & const_str__joinrealpath._ascii.ob_base, - & const_str_platform._ascii.ob_base, - & const_str_supports_unicode_filenames._ascii.ob_base, - & const_str_relpath._ascii.ob_base, - & const_str_commonpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[589]; - } -posixpath_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 588, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x0a\x01\x04\xf0\x00\x0a\x01\x04\xf0\x1e\x00\x0a\x0d\x80\x06\xd8\x09\x0d\x80\x06\xd8\x09\x0c\x80\x06\xd8\x06\x09\x80\x03\xd8\x0a\x0d\x80\x07\xd8\x0a\x19\x80\x07\xd8\x09\x0d\x80\x06\xd8\x0a\x15\x80\x07\xe0\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x12\xd0\x00\x12\xd0\x00\x12\xd0\x00\x12\xd8\x00\x19\xd0\x00\x19\xd0\x00\x19\xd0\x00\x19\xf0\x04\x07\x0b\x19\xf0\x00\x07\x0b\x19\xf0\x00\x07\x0b\x19\x80\x07\xf0\x14\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x00\x04\x01\x13\xf0\x16\x02\x01\x18\xf0\x00\x02\x01\x18\xf0\x00\x02\x01\x18\xf0\x10\x04\x01\x1d\xf0\x00\x04\x01\x1d\xf0\x00\x04\x01\x1d\xf0\x16\x15\x01\x10\xf0\x00\x15\x01\x10\xf0\x00\x15\x01\x10\xf0\x3a\x09\x01\x16\xf0\x00\x09\x01\x16\xf0\x00\x09\x01\x16\xf0\x22\x08\x01\x37\xf0\x00\x08\x01\x37\xf0\x00\x08\x01\x37\xf0\x12\x00\x14\x1f\xd4\x13\x28\xd4\x13\x30\x80\x08\xd4\x00\x10\xf0\x0a\x04\x01\x14\xf0\x00\x04\x01\x14\xf0\x00\x04\x01\x14\xf0\x12\x05\x01\x11\xf0\x00\x05\x01\x11\xf0\x00\x05\x01\x11\xf0\x14\x08\x01\x10\xf0\x00\x08\x01\x10\xf0\x00\x08\x01\x10\xf0\x1c\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x00\x06\x01\x24\xf0\x14\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x00\x06\x01\x10\xf0\x18\x1f\x01\x11\xf0\x00\x1f\x01\x11\xf0\x00\x1f\x01\x11\xf0\x56\x01\x36\x01\x29\xf0\x00\x36\x01\x29\xf0\x00\x36\x01\x29\xf0\x7a\x01\x00\x0c\x10\x80\x08\xd8\x0c\x10\x80\x09\xf0\x04\x2e\x01\x10\xf0\x00\x2e\x01\x10\xf0\x00\x2e\x01\x10\xf0\x6a\x01\x30\x01\x2b\xd8\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xf0\x54\x01\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf0\x00\x05\x05\x2b\xf8\xf0\x51\x01\x00\x08\x13\xf0\x00\x25\x01\x1b\xf0\x00\x25\x01\x1b\xf0\x00\x25\x01\x1b\xf0\x02\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x00\x24\x05\x1b\xf0\x03\x25\x01\x1b\xf8\xf8\xf8\xf0\x60\x01\x09\x01\x1a\xf0\x00\x09\x01\x1a\xf0\x00\x09\x01\x1a\xf0\x1e\x00\x22\x27\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x00\x05\x01\x19\xf0\x12\x3c\x01\x16\xf0\x00\x3c\x01\x16\xf0\x00\x3c\x01\x16\xf0\x7e\x01\x00\x1f\x22\x9c\x6c\xa8\x68\xd2\x1e\x36\xd0\x00\x1a\xf0\x04\x21\x01\x0e\xf0\x00\x21\x01\x0e\xf0\x00\x21\x01\x0e\xf0\x00\x21\x01\x0e\xf0\x52\x01\x23\x01\x0e\xf0\x00\x23\x01\x0e\xf0\x00\x23\x01\x0e\xf0\x00\x23\x01\x0e\xf0\x00\x23\x01\x0e", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -posixpath_toplevel_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x2b\x06\x41\x35\x00\xc1\x35\x08\x42\x00\x03\xc1\x3f\x01\x42\x00\x03", -}; -static - struct _PyCode_DEF(326) -posixpath_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 163, - }, - .co_consts = & posixpath_toplevel_consts._object.ob_base.ob_base, - .co_names = & posixpath_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = & posixpath_toplevel_exceptiontable.ob_base.ob_base, - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & posixpath_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & posixpath_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x64\x02\x5a\x02\x64\x01\x5a\x03\x64\x03\x5a\x04\x64\x04\x5a\x05\x64\x05\x5a\x06\x64\x06\x5a\x07\x64\x07\x5a\x08\x64\x08\x64\x06\x6c\x09\x5a\x09\x64\x08\x64\x06\x6c\x0a\x5a\x0a\x64\x08\x64\x06\x6c\x0b\x5a\x0b\x64\x08\x64\x06\x6c\x0c\x5a\x0c\x64\x08\x64\x09\x6c\x0c\x54\x00\x67\x00\x64\x0a\xa2\x01\x5a\x0d\x64\x0b\x84\x00\x5a\x0e\x64\x0c\x84\x00\x5a\x0f\x64\x0d\x84\x00\x5a\x10\x64\x0e\x84\x00\x5a\x11\x64\x0f\x84\x00\x5a\x12\x64\x10\x84\x00\x5a\x13\x65\x0c\x6a\x14\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x13\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\x84\x00\x5a\x15\x64\x12\x84\x00\x5a\x16\x64\x13\x84\x00\x5a\x17\x64\x14\x84\x00\x5a\x18\x64\x15\x84\x00\x5a\x19\x64\x16\x84\x00\x5a\x1a\x64\x17\x84\x00\x5a\x1b\x64\x06\x61\x1c\x64\x06\x61\x1d\x64\x18\x84\x00\x5a\x1e\x09\x00\x64\x08\x64\x19\x6c\x1f\x6d\x20\x5a\x20\x01\x00\x64\x1a\x84\x00\x5a\x21\x6e\x0e\x23\x00\x65\x22\x24\x00\x72\x06\x01\x00\x64\x1b\x84\x00\x5a\x21\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x1c\x84\x00\x5a\x23\x64\x1d\x64\x1e\x9c\x01\x64\x1f\x84\x02\x5a\x24\x64\x20\x84\x00\x5a\x25\x65\x0a\x6a\x26\x00\x00\x00\x00\x00\x00\x00\x00\x64\x21\x6b\x02\x00\x00\x00\x00\x5a\x27\x64\x24\x64\x22\x84\x01\x5a\x28\x64\x23\x84\x00\x5a\x29\x64\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static void posixpath_do_patchups(void) { -} - -PyObject * -_Py_get_posixpath_toplevel(void) -{ - posixpath_do_patchups(); - return Py_NewRef((PyObject *) &posixpath_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[1103]; - } -os_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1102, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x4f\x53\x20\x72\x6f\x75\x74\x69\x6e\x65\x73\x20\x66\x6f\x72\x20\x4e\x54\x20\x6f\x72\x20\x50\x6f\x73\x69\x78\x20\x64\x65\x70\x65\x6e\x64\x69\x6e\x67\x20\x6f\x6e\x20\x77\x68\x61\x74\x20\x73\x79\x73\x74\x65\x6d\x20\x77\x65\x27\x72\x65\x20\x6f\x6e\x2e\x0a\x0a\x54\x68\x69\x73\x20\x65\x78\x70\x6f\x72\x74\x73\x3a\x0a\x20\x20\x2d\x20\x61\x6c\x6c\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x66\x72\x6f\x6d\x20\x70\x6f\x73\x69\x78\x20\x6f\x72\x20\x6e\x74\x2c\x20\x65\x2e\x67\x2e\x20\x75\x6e\x6c\x69\x6e\x6b\x2c\x20\x73\x74\x61\x74\x2c\x20\x65\x74\x63\x2e\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x70\x61\x74\x68\x20\x69\x73\x20\x65\x69\x74\x68\x65\x72\x20\x70\x6f\x73\x69\x78\x70\x61\x74\x68\x20\x6f\x72\x20\x6e\x74\x70\x61\x74\x68\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x6e\x61\x6d\x65\x20\x69\x73\x20\x65\x69\x74\x68\x65\x72\x20\x27\x70\x6f\x73\x69\x78\x27\x20\x6f\x72\x20\x27\x6e\x74\x27\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x63\x75\x72\x64\x69\x72\x20\x69\x73\x20\x61\x20\x73\x74\x72\x69\x6e\x67\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x28\x61\x6c\x77\x61\x79\x73\x20\x27\x2e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x70\x61\x72\x64\x69\x72\x20\x69\x73\x20\x61\x20\x73\x74\x72\x69\x6e\x67\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x70\x61\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x28\x61\x6c\x77\x61\x79\x73\x20\x27\x2e\x2e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x28\x6f\x72\x20\x61\x20\x6d\x6f\x73\x74\x20\x63\x6f\x6d\x6d\x6f\x6e\x29\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x28\x27\x2f\x27\x20\x6f\x72\x20\x27\x5c\x5c\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x65\x78\x74\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x28\x61\x6c\x77\x61\x79\x73\x20\x27\x2e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x61\x6c\x74\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x28\x4e\x6f\x6e\x65\x20\x6f\x72\x20\x27\x2f\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x70\x61\x74\x68\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x75\x73\x65\x64\x20\x69\x6e\x20\x24\x50\x41\x54\x48\x20\x65\x74\x63\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x6c\x69\x6e\x65\x73\x65\x70\x20\x69\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x73\x65\x70\x61\x72\x61\x74\x6f\x72\x20\x69\x6e\x20\x74\x65\x78\x74\x20\x66\x69\x6c\x65\x73\x20\x28\x27\x5c\x72\x27\x20\x6f\x72\x20\x27\x5c\x6e\x27\x20\x6f\x72\x20\x27\x5c\x72\x5c\x6e\x27\x29\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x64\x65\x66\x70\x61\x74\x68\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x20\x66\x6f\x72\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x73\x0a\x20\x20\x2d\x20\x6f\x73\x2e\x64\x65\x76\x6e\x75\x6c\x6c\x20\x69\x73\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x70\x61\x74\x68\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x75\x6c\x6c\x20\x64\x65\x76\x69\x63\x65\x20\x28\x27\x2f\x64\x65\x76\x2f\x6e\x75\x6c\x6c\x27\x2c\x20\x65\x74\x63\x2e\x29\x0a\x0a\x50\x72\x6f\x67\x72\x61\x6d\x73\x20\x74\x68\x61\x74\x20\x69\x6d\x70\x6f\x72\x74\x20\x61\x6e\x64\x20\x75\x73\x65\x20\x27\x6f\x73\x27\x20\x73\x74\x61\x6e\x64\x20\x61\x20\x62\x65\x74\x74\x65\x72\x20\x63\x68\x61\x6e\x63\x65\x20\x6f\x66\x20\x62\x65\x69\x6e\x67\x0a\x70\x6f\x72\x74\x61\x62\x6c\x65\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x20\x70\x6c\x61\x74\x66\x6f\x72\x6d\x73\x2e\x20\x20\x4f\x66\x20\x63\x6f\x75\x72\x73\x65\x2c\x20\x74\x68\x65\x79\x20\x6d\x75\x73\x74\x20\x74\x68\x65\x6e\x0a\x6f\x6e\x6c\x79\x20\x75\x73\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x61\x72\x65\x20\x64\x65\x66\x69\x6e\x65\x64\x20\x62\x79\x20\x61\x6c\x6c\x20\x70\x6c\x61\x74\x66\x6f\x72\x6d\x73\x20\x28\x65\x2e\x67\x2e\x2c\x20\x75\x6e\x6c\x69\x6e\x6b\x0a\x61\x6e\x64\x20\x6f\x70\x65\x6e\x64\x69\x72\x29\x2c\x20\x61\x6e\x64\x20\x6c\x65\x61\x76\x65\x20\x61\x6c\x6c\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x6d\x61\x6e\x69\x70\x75\x6c\x61\x74\x69\x6f\x6e\x20\x74\x6f\x20\x6f\x73\x2e\x70\x61\x74\x68\x0a\x28\x65\x2e\x67\x2e\x2c\x20\x73\x70\x6c\x69\x74\x20\x61\x6e\x64\x20\x6a\x6f\x69\x6e\x29\x2e\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__check_methods._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_linesep = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "linesep", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_get_exec_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "get_exec_path", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_fdopen = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fdopen", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[18]; - }_object; - } -os_toplevel_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 18, - }, - .ob_item = { - & const_str_altsep._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - & const_str_linesep._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(path), - & const_str_devnull._ascii.ob_base, - & const_str_SEEK_SET._ascii.ob_base, - & const_str_SEEK_CUR._ascii.ob_base, - & const_str_SEEK_END._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - & const_str_get_exec_path._ascii.ob_base, - & const_str_fdopen._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_globals._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -os_toplevel_consts_5_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__exists = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_exists", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[18]; - } -os_toplevel_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 17, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0f\x95\x37\x91\x39\x94\x39\xd0\x0b\x1c\xd0\x04\x1c", -}; -static - struct _PyCode_DEF(34) -os_toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 41, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__exists._ascii.ob_base, - .co_qualname = & const_str__exists._ascii.ob_base, - .co_linetable = & os_toplevel_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_6_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - &_Py_ID(_), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -os_toplevel_consts_6_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_exports_list..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -os_toplevel_consts_6_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd0\x0f\x36\xd0\x0f\x36\xd0\x0f\x36\x90\x61\xa8\x21\xa8\x41\xac\x24\xb0\x23\xaa\x2b\xa8\x2b\x90\x01\xa8\x2b\xa8\x2b\xa8\x2b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_6_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_n._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(42) -os_toplevel_consts_6_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & os_toplevel_consts_6_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 48, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_6_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & os_toplevel_consts_6_consts_1_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_6_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x10\x7d\x01\x7c\x01\x64\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x03\x00\x00\x00\x00\xaf\x0e\x7c\x01\x91\x02\x8c\x11\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_6_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_list._ascii.ob_base, - &_Py_ID(__all__), - & const_str_AttributeError._ascii.ob_base, - & const_str_dir._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str__get_exports_list = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_exports_list", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[83]; - } -os_toplevel_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 82, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x03\x05\x37\xdd\x0f\x13\x90\x46\x94\x4e\xd1\x0f\x23\xd4\x0f\x23\xd0\x08\x23\xf8\xdd\x0b\x19\xf0\x00\x01\x05\x37\xf0\x00\x01\x05\x37\xf0\x00\x01\x05\x37\xd8\x0f\x36\xd0\x0f\x36\x9d\x33\x98\x76\x99\x3b\x9c\x3b\xd0\x0f\x36\xd1\x0f\x36\xd4\x0f\x36\xd0\x08\x36\xd0\x08\x36\xd0\x08\x36\xf0\x03\x01\x05\x37\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -os_toplevel_consts_6_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x82\x13\x16\x00\x96\x23\x3c\x03\xbb\x01\x3c\x03", -}; -static - struct _PyCode_DEF(126) -os_toplevel_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 63, - }, - .co_consts = & os_toplevel_consts_6_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_6_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 44, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_37_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__get_exports_list._ascii.ob_base, - .co_qualname = & const_str__get_exports_list._ascii.ob_base, - .co_linetable = & os_toplevel_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1c\x01\x00\x64\x01\x84\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__exit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_exit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_10 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__exit._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__have_functions = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_have_functions", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_12 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__have_functions._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -os_toplevel_consts_14 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0d\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -os_toplevel_consts_15 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "no os specific module found", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -os_toplevel_consts_16 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "os.path", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -os_toplevel_consts_17 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_devnull._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__globals = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_globals", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str__set = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_set", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_19_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__globals._ascii.ob_base, - & const_str__have_functions._ascii.ob_base, - & const_str__set._ascii.ob_base, - &_Py_ID(add), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str__add = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_add", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[63]; - } -os_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 62, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0c\x0e\x95\x28\x88\x4e\x88\x4e\xa0\x13\xad\x0f\xd0\x21\x37\xd0\x21\x37\xdd\x0c\x10\x8f\x48\x8a\x48\x95\x58\x98\x62\x94\x5c\xd1\x0c\x22\xd4\x0c\x22\xd0\x0c\x22\xd0\x0c\x22\xd0\x0c\x22\xf0\x03\x00\x0d\x1b\x88\x4e\xd0\x21\x37\xd0\x21\x37", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_str._ascii.ob_base, - & const_str_fn._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(124) -os_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 62, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 104, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__add._ascii.ob_base, - .co_qualname = & const_str__add._ascii.ob_base, - .co_linetable = & os_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x30\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x29\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_HAVE_FACCESSAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FACCESSAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_access = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "access", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_FCHMODAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FCHMODAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_chmod = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "chmod", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_FCHOWNAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FCHOWNAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_chown = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "chown", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_HAVE_FSTATAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FSTATAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_HAVE_FUTIMESAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FUTIMESAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_utime = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "utime", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_HAVE_LINKAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_LINKAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_link = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "link", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_HAVE_MKDIRAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_MKDIRAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_MKFIFOAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_MKFIFOAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_mkfifo = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mkfifo", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_HAVE_MKNODAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_MKNODAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_mknod = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mknod", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_HAVE_OPENAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_OPENAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_HAVE_READLINKAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_READLINKAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_RENAMEAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_RENAMEAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_rename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "rename", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_HAVE_SYMLINKAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_SYMLINKAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_symlink = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "symlink", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_UNLINKAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_UNLINKAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_rmdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "rmdir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_HAVE_UTIMENSAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_UTIMENSAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_HAVE_FCHDIR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FCHDIR", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_chdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "chdir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_HAVE_FCHMOD = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FCHMOD", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_HAVE_FCHOWN = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FCHOWN", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_HAVE_FDOPENDIR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FDOPENDIR", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_scandir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "scandir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_HAVE_FEXECVE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FEXECVE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_execve = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execve", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_HAVE_FTRUNCATE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FTRUNCATE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_FUTIMENS = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FUTIMENS", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_HAVE_FUTIMES = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FUTIMES", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_HAVE_FPATHCONF = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FPATHCONF", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_pathconf = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pathconf", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_statvfs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "statvfs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_fstatvfs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fstatvfs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_FSTATVFS = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_FSTATVFS", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_HAVE_LCHFLAGS = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_LCHFLAGS", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_chflags = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "chflags", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_HAVE_LCHMOD = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_LCHMOD", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_lchown = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lchown", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_HAVE_LCHOWN = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_LCHOWN", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_HAVE_LUTIMES = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_LUTIMES", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_HAVE_LSTAT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "HAVE_LSTAT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_MS_WINDOWS = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "MS_WINDOWS", -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_511 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 511 }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[396]; - } -os_toplevel_consts_80_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 395, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x6d\x61\x6b\x65\x64\x69\x72\x73\x28\x6e\x61\x6d\x65\x20\x5b\x2c\x20\x6d\x6f\x64\x65\x3d\x30\x6f\x37\x37\x37\x5d\x5b\x2c\x20\x65\x78\x69\x73\x74\x5f\x6f\x6b\x3d\x46\x61\x6c\x73\x65\x5d\x29\x0a\x0a\x20\x20\x20\x20\x53\x75\x70\x65\x72\x2d\x6d\x6b\x64\x69\x72\x3b\x20\x63\x72\x65\x61\x74\x65\x20\x61\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x6f\x6e\x65\x73\x2e\x20\x20\x57\x6f\x72\x6b\x73\x20\x6c\x69\x6b\x65\x0a\x20\x20\x20\x20\x6d\x6b\x64\x69\x72\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x74\x68\x61\x74\x20\x61\x6e\x79\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x20\x70\x61\x74\x68\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x6e\x6f\x74\x20\x6a\x75\x73\x74\x20\x74\x68\x65\x20\x72\x69\x67\x68\x74\x6d\x6f\x73\x74\x29\x0a\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x72\x65\x61\x74\x65\x64\x20\x69\x66\x20\x69\x74\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x74\x61\x72\x67\x65\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6c\x72\x65\x61\x64\x79\x0a\x20\x20\x20\x20\x65\x78\x69\x73\x74\x73\x2c\x20\x72\x61\x69\x73\x65\x20\x61\x6e\x20\x4f\x53\x45\x72\x72\x6f\x72\x20\x69\x66\x20\x65\x78\x69\x73\x74\x5f\x6f\x6b\x20\x69\x73\x20\x46\x61\x6c\x73\x65\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x6e\x6f\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x73\x0a\x20\x20\x20\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x20\x54\x68\x69\x73\x20\x69\x73\x20\x72\x65\x63\x75\x72\x73\x69\x76\x65\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_exist_ok = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exist_ok", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_80_consts_1 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_exist_ok._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_80_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & os_toplevel_consts_80_consts_0._ascii.ob_base, - & os_toplevel_consts_80_consts_1._object.ob_base.ob_base, - & const_str_ASCII._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_makedirs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "makedirs", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -os_toplevel_consts_80_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(path), - & const_str_split._ascii.ob_base, - & const_str_exists._ascii.ob_base, - & const_str_makedirs._ascii.ob_base, - & const_str_FileExistsError._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_mkdir._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_isdir._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[295]; - } -os_toplevel_consts_80_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 294, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x14\x00\x12\x16\x94\x1a\x98\x44\xd1\x11\x21\xd4\x11\x21\x81\x4a\x80\x44\x88\x24\xd8\x0b\x0f\xf0\x00\x01\x05\x26\xdd\x15\x19\x94\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\x89\x0a\x88\x04\x88\x64\xd8\x07\x0b\xf0\x00\x0a\x05\x13\x90\x04\xf0\x00\x0a\x05\x13\x9d\x54\x9c\x5b\xa8\x14\xd1\x1d\x2e\xd4\x1d\x2e\xf0\x00\x0a\x05\x13\xf0\x02\x04\x09\x11\xdd\x0c\x14\x90\x54\xa0\x48\xd0\x0c\x2d\xd1\x0c\x2d\xd4\x0c\x2d\xd0\x0c\x2d\xd0\x0c\x2d\xf8\xdd\x0f\x1e\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xf0\x00\x02\x09\x11\xe0\x0c\x10\x88\x44\xf0\x05\x02\x09\x11\xf8\xf8\xf8\xf5\x06\x00\x10\x16\x88\x04\xdd\x0b\x15\x90\x64\x9d\x45\xd1\x0b\x22\xd4\x0b\x22\xf0\x00\x01\x09\x2a\xdd\x13\x18\x9d\x16\xa0\x17\xd1\x13\x29\xd4\x13\x29\x88\x44\xd8\x0b\x0f\x90\x34\x8a\x3c\x88\x3c\xd8\x0c\x12\x88\x46\xf0\x02\x06\x05\x12\xdd\x08\x0d\x88\x64\x90\x44\xd1\x08\x19\xd4\x08\x19\xd0\x08\x19\xd0\x08\x19\xd0\x08\x19\xf8\xdd\x0b\x12\xf0\x00\x04\x05\x12\xf0\x00\x04\x05\x12\xf0\x00\x04\x05\x12\xf0\x06\x00\x10\x18\xf0\x00\x01\x09\x12\x9d\x74\x9c\x7a\xa8\x24\xd1\x1f\x2f\xd4\x1f\x2f\xf0\x00\x01\x09\x12\xd8\x0c\x11\xf0\x03\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x07\x04\x05\x12\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[37]; - } -os_toplevel_consts_80_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 36, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x0a\x11\x41\x1c\x00\xc1\x1c\x0a\x41\x29\x03\xc1\x28\x01\x41\x29\x03\xc2\x26\x10\x42\x38\x00\xc2\x38\x21\x43\x1d\x03\xc3\x1c\x01\x43\x1d\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_cdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cdir", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -os_toplevel_consts_80_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(name), - &_Py_ID(mode), - & const_str_exist_ok._ascii.ob_base, - & const_str_head._ascii.ob_base, - & const_str_tail._ascii.ob_base, - & const_str_cdir._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(448) -os_toplevel_consts_80 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 224, - }, - .co_consts = & os_toplevel_consts_80_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_80_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_80_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 200, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_80_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_makedirs._ascii.ob_base, - .co_qualname = & const_str_makedirs._ascii.ob_base, - .co_linetable = & os_toplevel_consts_80_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x04\x73\x17\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x03\x72\x72\x7c\x04\x72\x70\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x5c\x09\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x02\xac\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x04\x7c\x05\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x03\x53\x00\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1b\x01\x00\x7c\x02\x72\x14\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x01\x82\x00\x59\x00\x64\x03\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[429]; - } -os_toplevel_consts_81_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 428, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x72\x65\x6d\x6f\x76\x65\x64\x69\x72\x73\x28\x6e\x61\x6d\x65\x29\x0a\x0a\x20\x20\x20\x20\x53\x75\x70\x65\x72\x2d\x72\x6d\x64\x69\x72\x3b\x20\x72\x65\x6d\x6f\x76\x65\x20\x61\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x20\x61\x6c\x6c\x20\x65\x6d\x70\x74\x79\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x0a\x20\x20\x20\x20\x6f\x6e\x65\x73\x2e\x20\x20\x57\x6f\x72\x6b\x73\x20\x6c\x69\x6b\x65\x20\x72\x6d\x64\x69\x72\x20\x65\x78\x63\x65\x70\x74\x20\x74\x68\x61\x74\x2c\x20\x69\x66\x20\x74\x68\x65\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x0a\x20\x20\x20\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x72\x65\x6d\x6f\x76\x65\x64\x2c\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x74\x6f\x20\x72\x69\x67\x68\x74\x6d\x6f\x73\x74\x20\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x70\x72\x75\x6e\x65\x64\x20\x61\x77\x61\x79\x20\x75\x6e\x74\x69\x6c\x20\x65\x69\x74\x68\x65\x72\x20\x74\x68\x65\x20\x77\x68\x6f\x6c\x65\x20\x70\x61\x74\x68\x20\x69\x73\x0a\x20\x20\x20\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x20\x6f\x72\x20\x61\x6e\x20\x65\x72\x72\x6f\x72\x20\x6f\x63\x63\x75\x72\x73\x2e\x20\x20\x45\x72\x72\x6f\x72\x73\x20\x64\x75\x72\x69\x6e\x67\x20\x74\x68\x69\x73\x20\x6c\x61\x74\x74\x65\x72\x20\x70\x68\x61\x73\x65\x20\x61\x72\x65\x0a\x20\x20\x20\x20\x69\x67\x6e\x6f\x72\x65\x64\x20\x2d\x2d\x20\x74\x68\x65\x79\x20\x67\x65\x6e\x65\x72\x61\x6c\x6c\x79\x20\x6d\x65\x61\x6e\x20\x74\x68\x61\x74\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x77\x61\x73\x20\x6e\x6f\x74\x20\x65\x6d\x70\x74\x79\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_81_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_81_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_81_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_rmdir._ascii.ob_base, - &_Py_ID(path), - & const_str_split._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_removedirs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "removedirs", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[205]; - } -os_toplevel_consts_81_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 204, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x16\x00\x05\x0a\x88\x24\x81\x4b\x84\x4b\x80\x4b\xdd\x11\x15\x94\x1a\x98\x44\xd1\x11\x21\xd4\x11\x21\x81\x4a\x80\x44\x88\x24\xd8\x0b\x0f\xf0\x00\x01\x05\x26\xdd\x15\x19\x94\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\x89\x0a\x88\x04\x88\x64\xd8\x0a\x0e\xf0\x00\x05\x05\x26\x90\x34\xf0\x00\x05\x05\x26\xf0\x02\x03\x09\x12\xdd\x0c\x11\x90\x24\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xf0\x00\x01\x09\x12\xd8\x0c\x11\x88\x45\x88\x45\xf0\x03\x01\x09\x12\xf8\xf8\xf8\xe5\x15\x19\x94\x5a\xa0\x04\xd1\x15\x25\xd4\x15\x25\x89\x0a\x88\x04\x88\x64\xf0\x0b\x00\x0b\x0f\xf0\x00\x05\x05\x26\x90\x34\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26\xf0\x00\x05\x05\x26", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -os_toplevel_consts_81_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x05\x0f\x41\x15\x00\xc1\x15\x0a\x41\x23\x03\xc1\x22\x01\x41\x23\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_81_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(name), - & const_str_head._ascii.ob_base, - & const_str_tail._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(274) -os_toplevel_consts_81 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 137, - }, - .co_consts = & os_toplevel_consts_81_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_81_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_81_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 232, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_81_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_removedirs._ascii.ob_base, - .co_qualname = & const_str_removedirs._ascii.ob_base, - .co_linetable = & os_toplevel_consts_81_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x02\x73\x17\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x72\x41\x7c\x02\x72\x41\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x11\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x01\x7d\x02\x7c\x01\x72\x08\x7c\x02\xb0\x3d\x64\x01\x53\x00\x64\x01\x53\x00\x64\x01\x53\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[573]; - } -os_toplevel_consts_82_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 572, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x72\x65\x6e\x61\x6d\x65\x73\x28\x6f\x6c\x64\x2c\x20\x6e\x65\x77\x29\x0a\x0a\x20\x20\x20\x20\x53\x75\x70\x65\x72\x2d\x72\x65\x6e\x61\x6d\x65\x3b\x20\x63\x72\x65\x61\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x73\x20\x6e\x65\x63\x65\x73\x73\x61\x72\x79\x20\x61\x6e\x64\x20\x64\x65\x6c\x65\x74\x65\x20\x61\x6e\x79\x20\x6c\x65\x66\x74\x0a\x20\x20\x20\x20\x65\x6d\x70\x74\x79\x2e\x20\x20\x57\x6f\x72\x6b\x73\x20\x6c\x69\x6b\x65\x20\x72\x65\x6e\x61\x6d\x65\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x61\x6e\x79\x20\x69\x6e\x74\x65\x72\x6d\x65\x64\x69\x61\x74\x65\x0a\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x6e\x65\x65\x64\x65\x64\x20\x74\x6f\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x6e\x65\x77\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x67\x6f\x6f\x64\x20\x69\x73\x20\x61\x74\x74\x65\x6d\x70\x74\x65\x64\x0a\x20\x20\x20\x20\x66\x69\x72\x73\x74\x2e\x20\x20\x41\x66\x74\x65\x72\x20\x74\x68\x65\x20\x72\x65\x6e\x61\x6d\x65\x2c\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x63\x6f\x72\x72\x65\x73\x70\x6f\x6e\x64\x69\x6e\x67\x20\x74\x6f\x20\x72\x69\x67\x68\x74\x6d\x6f\x73\x74\x0a\x20\x20\x20\x20\x70\x61\x74\x68\x20\x73\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x6f\x6c\x64\x20\x6e\x61\x6d\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x70\x72\x75\x6e\x65\x64\x20\x75\x6e\x74\x69\x6c\x20\x65\x69\x74\x68\x65\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x77\x68\x6f\x6c\x65\x20\x70\x61\x74\x68\x20\x69\x73\x20\x63\x6f\x6e\x73\x75\x6d\x65\x64\x20\x6f\x72\x20\x61\x20\x6e\x6f\x6e\x65\x6d\x70\x74\x79\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20\x4e\x6f\x74\x65\x3a\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x63\x61\x6e\x20\x66\x61\x69\x6c\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6e\x65\x77\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x6d\x61\x64\x65\x0a\x20\x20\x20\x20\x69\x66\x20\x79\x6f\x75\x20\x6c\x61\x63\x6b\x20\x70\x65\x72\x6d\x69\x73\x73\x69\x6f\x6e\x73\x20\x6e\x65\x65\x64\x65\x64\x20\x74\x6f\x20\x75\x6e\x6c\x69\x6e\x6b\x20\x74\x68\x65\x20\x6c\x65\x61\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x6f\x72\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_82_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_82_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -os_toplevel_consts_82_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(path), - & const_str_split._ascii.ob_base, - & const_str_exists._ascii.ob_base, - & const_str_makedirs._ascii.ob_base, - & const_str_rename._ascii.ob_base, - & const_str_removedirs._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_renames = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "renames", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[192]; - } -os_toplevel_consts_82_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 191, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x1e\x00\x12\x16\x94\x1a\x98\x43\x91\x1f\x94\x1f\x81\x4a\x80\x44\x88\x24\xd8\x07\x0b\xf0\x00\x01\x05\x17\x90\x04\xf0\x00\x01\x05\x17\x9d\x54\x9c\x5b\xa8\x14\xd1\x1d\x2e\xd4\x1d\x2e\xf0\x00\x01\x05\x17\xdd\x08\x10\x90\x14\x89\x0e\x8c\x0e\x88\x0e\xdd\x04\x0a\x88\x33\x90\x03\xd1\x04\x14\xd4\x04\x14\xd0\x04\x14\xdd\x11\x15\x94\x1a\x98\x43\x91\x1f\x94\x1f\x81\x4a\x80\x44\x88\x24\xd8\x07\x0b\xf0\x00\x04\x05\x11\x90\x04\xf0\x00\x04\x05\x11\xf0\x02\x03\x09\x11\xdd\x0c\x16\x90\x74\xd1\x0c\x1c\xd4\x0c\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xd0\x0c\x1c\xf8\xdd\x0f\x16\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x07\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x00\x04\x05\x11\xf0\x00\x04\x05\x11", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -os_toplevel_consts_82_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x2b\x0f\x41\x3c\x00\xc1\x3c\x0a\x42\x0a\x03\xc2\x09\x01\x42\x0a\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_82_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_old._ascii.ob_base, - & const_str_new._ascii.ob_base, - & const_str_head._ascii.ob_base, - & const_str_tail._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(290) -os_toplevel_consts_82 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 145, - }, - .co_consts = & os_toplevel_consts_82_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_82_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_82_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 254, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_82_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_renames._ascii.ob_base, - .co_qualname = & const_str_renames._ascii.ob_base, - .co_linetable = & os_toplevel_consts_82_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x72\x25\x7c\x03\x72\x23\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x02\x72\x25\x7c\x03\x72\x25\x09\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x53\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_83 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_makedirs._ascii.ob_base, - & const_str_removedirs._ascii.ob_base, - & const_str_renames._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2855]; - } -os_toplevel_consts_85_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2854, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x72\x65\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x46\x6f\x72\x20\x65\x61\x63\x68\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x6e\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x72\x65\x65\x20\x72\x6f\x6f\x74\x65\x64\x20\x61\x74\x20\x74\x6f\x70\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x74\x6f\x70\x0a\x20\x20\x20\x20\x69\x74\x73\x65\x6c\x66\x2c\x20\x62\x75\x74\x20\x65\x78\x63\x6c\x75\x64\x69\x6e\x67\x20\x27\x2e\x27\x20\x61\x6e\x64\x20\x27\x2e\x2e\x27\x29\x2c\x20\x79\x69\x65\x6c\x64\x73\x20\x61\x20\x33\x2d\x74\x75\x70\x6c\x65\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x2c\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x0a\x0a\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x20\x69\x73\x20\x61\x20\x73\x74\x72\x69\x6e\x67\x2c\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x69\x73\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x69\x6e\x20\x64\x69\x72\x70\x61\x74\x68\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x73\x79\x6d\x6c\x69\x6e\x6b\x73\x20\x74\x6f\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x0a\x20\x20\x20\x20\x61\x6e\x64\x20\x65\x78\x63\x6c\x75\x64\x69\x6e\x67\x20\x27\x2e\x27\x20\x61\x6e\x64\x20\x27\x2e\x2e\x27\x29\x2e\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x20\x69\x73\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x20\x64\x69\x72\x70\x61\x74\x68\x2e\x0a\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x6c\x69\x73\x74\x73\x20\x61\x72\x65\x20\x6a\x75\x73\x74\x20\x6e\x61\x6d\x65\x73\x2c\x20\x77\x69\x74\x68\x20\x6e\x6f\x20\x70\x61\x74\x68\x20\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74\x73\x2e\x0a\x20\x20\x20\x20\x54\x6f\x20\x67\x65\x74\x20\x61\x20\x66\x75\x6c\x6c\x20\x70\x61\x74\x68\x20\x28\x77\x68\x69\x63\x68\x20\x62\x65\x67\x69\x6e\x73\x20\x77\x69\x74\x68\x20\x74\x6f\x70\x29\x20\x74\x6f\x20\x61\x20\x66\x69\x6c\x65\x20\x6f\x72\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x6e\x0a\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x64\x6f\x20\x6f\x73\x2e\x70\x61\x74\x68\x2e\x6a\x6f\x69\x6e\x28\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x6e\x61\x6d\x65\x29\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x61\x72\x67\x20\x27\x74\x6f\x70\x64\x6f\x77\x6e\x27\x20\x69\x73\x20\x74\x72\x75\x65\x20\x6f\x72\x20\x6e\x6f\x74\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x2c\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x20\x66\x6f\x72\x20\x61\x0a\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x62\x65\x66\x6f\x72\x65\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x73\x20\x66\x6f\x72\x20\x61\x6e\x79\x20\x6f\x66\x20\x69\x74\x73\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x0a\x20\x20\x20\x20\x28\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x74\x6f\x70\x20\x64\x6f\x77\x6e\x29\x2e\x20\x20\x49\x66\x20\x74\x6f\x70\x64\x6f\x77\x6e\x20\x69\x73\x20\x66\x61\x6c\x73\x65\x2c\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x0a\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x61\x66\x74\x65\x72\x20\x74\x68\x65\x20\x74\x72\x69\x70\x6c\x65\x73\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x6f\x66\x20\x69\x74\x73\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x28\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x62\x6f\x74\x74\x6f\x6d\x20\x75\x70\x29\x2e\x0a\x0a\x20\x20\x20\x20\x57\x68\x65\x6e\x20\x74\x6f\x70\x64\x6f\x77\x6e\x20\x69\x73\x20\x74\x72\x75\x65\x2c\x20\x74\x68\x65\x20\x63\x61\x6c\x6c\x65\x72\x20\x63\x61\x6e\x20\x6d\x6f\x64\x69\x66\x79\x20\x74\x68\x65\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x6c\x69\x73\x74\x20\x69\x6e\x2d\x70\x6c\x61\x63\x65\x0a\x20\x20\x20\x20\x28\x65\x2e\x67\x2e\x2c\x20\x76\x69\x61\x20\x64\x65\x6c\x20\x6f\x72\x20\x73\x6c\x69\x63\x65\x20\x61\x73\x73\x69\x67\x6e\x6d\x65\x6e\x74\x29\x2c\x20\x61\x6e\x64\x20\x77\x61\x6c\x6b\x20\x77\x69\x6c\x6c\x20\x6f\x6e\x6c\x79\x20\x72\x65\x63\x75\x72\x73\x65\x20\x69\x6e\x74\x6f\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x77\x68\x6f\x73\x65\x20\x6e\x61\x6d\x65\x73\x20\x72\x65\x6d\x61\x69\x6e\x20\x69\x6e\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x3b\x20\x74\x68\x69\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x70\x72\x75\x6e\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x65\x61\x72\x63\x68\x2c\x20\x6f\x72\x20\x74\x6f\x20\x69\x6d\x70\x6f\x73\x65\x20\x61\x20\x73\x70\x65\x63\x69\x66\x69\x63\x20\x6f\x72\x64\x65\x72\x20\x6f\x66\x20\x76\x69\x73\x69\x74\x69\x6e\x67\x2e\x20\x20\x4d\x6f\x64\x69\x66\x79\x69\x6e\x67\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x77\x68\x65\x6e\x0a\x20\x20\x20\x20\x74\x6f\x70\x64\x6f\x77\x6e\x20\x69\x73\x20\x66\x61\x6c\x73\x65\x20\x68\x61\x73\x20\x6e\x6f\x20\x65\x66\x66\x65\x63\x74\x20\x6f\x6e\x20\x74\x68\x65\x20\x62\x65\x68\x61\x76\x69\x6f\x72\x20\x6f\x66\x20\x6f\x73\x2e\x77\x61\x6c\x6b\x28\x29\x2c\x20\x73\x69\x6e\x63\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x69\x6e\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x20\x68\x61\x76\x65\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x62\x65\x65\x6e\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x20\x62\x79\x20\x74\x68\x65\x20\x74\x69\x6d\x65\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x0a\x20\x20\x20\x20\x69\x74\x73\x65\x6c\x66\x20\x69\x73\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x2e\x20\x4e\x6f\x20\x6d\x61\x74\x74\x65\x72\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x74\x6f\x70\x64\x6f\x77\x6e\x2c\x20\x74\x68\x65\x20\x6c\x69\x73\x74\x20\x6f\x66\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x69\x73\x20\x72\x65\x74\x72\x69\x65\x76\x65\x64\x20\x62\x65\x66\x6f\x72\x65\x20\x74\x68\x65\x20\x74\x75\x70\x6c\x65\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x20\x69\x74\x73\x0a\x20\x20\x20\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x42\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x65\x72\x72\x6f\x72\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6f\x73\x2e\x73\x63\x61\x6e\x64\x69\x72\x28\x29\x20\x63\x61\x6c\x6c\x20\x61\x72\x65\x20\x69\x67\x6e\x6f\x72\x65\x64\x2e\x20\x20\x49\x66\x0a\x20\x20\x20\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x61\x72\x67\x20\x27\x6f\x6e\x65\x72\x72\x6f\x72\x27\x20\x69\x73\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x2c\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x3b\x20\x69\x74\x0a\x20\x20\x20\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x61\x6c\x6c\x65\x64\x20\x77\x69\x74\x68\x20\x6f\x6e\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2c\x20\x61\x6e\x20\x4f\x53\x45\x72\x72\x6f\x72\x20\x69\x6e\x73\x74\x61\x6e\x63\x65\x2e\x20\x20\x49\x74\x20\x63\x61\x6e\x0a\x20\x20\x20\x20\x72\x65\x70\x6f\x72\x74\x20\x74\x68\x65\x20\x65\x72\x72\x6f\x72\x20\x74\x6f\x20\x63\x6f\x6e\x74\x69\x6e\x75\x65\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x77\x61\x6c\x6b\x2c\x20\x6f\x72\x20\x72\x61\x69\x73\x65\x20\x74\x68\x65\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x0a\x20\x20\x20\x20\x74\x6f\x20\x61\x62\x6f\x72\x74\x20\x74\x68\x65\x20\x77\x61\x6c\x6b\x2e\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x69\x73\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x20\x61\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\x20\x6f\x66\x20\x74\x68\x65\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x42\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x2c\x20\x6f\x73\x2e\x77\x61\x6c\x6b\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x66\x6f\x6c\x6c\x6f\x77\x20\x73\x79\x6d\x62\x6f\x6c\x69\x63\x20\x6c\x69\x6e\x6b\x73\x20\x74\x6f\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x6f\x6e\x0a\x20\x20\x20\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x61\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x74\x68\x65\x6d\x2e\x20\x20\x49\x6e\x20\x6f\x72\x64\x65\x72\x20\x74\x6f\x20\x67\x65\x74\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x61\x6c\x69\x74\x79\x2c\x20\x73\x65\x74\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x27\x66\x6f\x6c\x6c\x6f\x77\x6c\x69\x6e\x6b\x73\x27\x20\x74\x6f\x20\x74\x72\x75\x65\x2e\x0a\x0a\x20\x20\x20\x20\x43\x61\x75\x74\x69\x6f\x6e\x3a\x20\x20\x69\x66\x20\x79\x6f\x75\x20\x70\x61\x73\x73\x20\x61\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x70\x61\x74\x68\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x74\x6f\x70\x2c\x20\x64\x6f\x6e\x27\x74\x20\x63\x68\x61\x6e\x67\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x72\x65\x73\x75\x6d\x70\x74\x69\x6f\x6e\x73\x20\x6f\x66\x20\x77\x61\x6c\x6b\x2e\x20\x20\x77\x61\x6c\x6b\x20\x6e\x65\x76\x65\x72\x0a\x20\x20\x20\x20\x63\x68\x61\x6e\x67\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2c\x20\x61\x6e\x64\x20\x61\x73\x73\x75\x6d\x65\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x63\x6c\x69\x65\x6e\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x0a\x20\x20\x20\x20\x65\x69\x74\x68\x65\x72\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x61\x6d\x70\x6c\x65\x3a\x0a\x0a\x20\x20\x20\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x0a\x20\x20\x20\x20\x66\x72\x6f\x6d\x20\x6f\x73\x2e\x70\x61\x74\x68\x20\x69\x6d\x70\x6f\x72\x74\x20\x6a\x6f\x69\x6e\x2c\x20\x67\x65\x74\x73\x69\x7a\x65\x0a\x20\x20\x20\x20\x66\x6f\x72\x20\x72\x6f\x6f\x74\x2c\x20\x64\x69\x72\x73\x2c\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x20\x6f\x73\x2e\x77\x61\x6c\x6b\x28\x27\x70\x79\x74\x68\x6f\x6e\x2f\x4c\x69\x62\x2f\x65\x6d\x61\x69\x6c\x27\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x72\x6f\x6f\x74\x2c\x20\x22\x63\x6f\x6e\x73\x75\x6d\x65\x73\x20\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x73\x75\x6d\x28\x67\x65\x74\x73\x69\x7a\x65\x28\x6a\x6f\x69\x6e\x28\x72\x6f\x6f\x74\x2c\x20\x6e\x61\x6d\x65\x29\x29\x20\x66\x6f\x72\x20\x6e\x61\x6d\x65\x20\x69\x6e\x20\x66\x69\x6c\x65\x73\x29\x2c\x20\x65\x6e\x64\x3d\x22\x20\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x22\x62\x79\x74\x65\x73\x20\x69\x6e\x22\x2c\x20\x6c\x65\x6e\x28\x66\x69\x6c\x65\x73\x29\x2c\x20\x22\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x73\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x27\x43\x56\x53\x27\x20\x69\x6e\x20\x64\x69\x72\x73\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x73\x2e\x72\x65\x6d\x6f\x76\x65\x28\x27\x43\x56\x53\x27\x29\x20\x20\x23\x20\x64\x6f\x6e\x27\x74\x20\x76\x69\x73\x69\x74\x20\x43\x56\x53\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -os_toplevel_consts_85_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "os.walk", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_85_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_85_consts_0._ascii.ob_base, - & os_toplevel_consts_85_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_audit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "audit", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__walk = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_walk", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_85_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_audit._ascii.ob_base, - & const_str__walk._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_walk = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "walk", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[56]; - } -os_toplevel_consts_85_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 55, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x78\x01\x00\x05\x08\x84\x49\x88\x69\x98\x13\x98\x67\xa0\x77\xb0\x0b\xd1\x04\x3c\xd4\x04\x3c\xd0\x04\x3c\xdd\x0b\x10\x95\x16\x98\x03\x91\x1b\x94\x1b\x98\x67\xa0\x77\xb0\x0b\xd1\x0b\x3c\xd4\x0b\x3c\xd0\x04\x3c", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_topdown = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "topdown", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_onerror = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "onerror", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_followlinks = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "followlinks", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_85_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(top), - & const_str_topdown._ascii.ob_base, - & const_str_onerror._ascii.ob_base, - & const_str_followlinks._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(112) -os_toplevel_consts_85 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 56, - }, - .co_consts = & os_toplevel_consts_85_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_85_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 282, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_85_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_walk._ascii.ob_base, - .co_qualname = & const_str_walk._ascii.ob_base, - .co_linetable = & os_toplevel_consts_85_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x7c\x01\x7c\x02\x7c\x03\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_is_dir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "is_dir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_is_symlink = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "is_symlink", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -os_toplevel_consts_86_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str_scandir._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - &_Py_ID(next), - & const_str_StopIteration._ascii.ob_base, - & const_str_is_dir._ascii.ob_base, - &_Py_ID(append), - &_Py_ID(name), - & const_str_is_symlink._ascii.ob_base, - &_Py_ID(path), - & const_str_islink._ascii.ob_base, - &_Py_ID(join), - & const_str__walk._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[865]; - } -os_toplevel_consts_86_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 864, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xd8\x0b\x0d\x80\x44\xd8\x0e\x10\x80\x47\xd8\x10\x12\x80\x49\xf0\x0e\x07\x05\x0f\xf5\x06\x00\x16\x1d\x98\x53\x91\x5c\x94\x5c\x88\x0a\x88\x0a\xf8\xdd\x0b\x12\xf0\x00\x03\x05\x0f\xf0\x00\x03\x05\x0f\xf0\x00\x03\x05\x0f\xd8\x0b\x12\xd0\x0b\x1e\xd8\x0c\x13\x88\x47\x90\x45\x89\x4e\x8c\x4e\x88\x4e\xd8\x08\x0e\x88\x06\x88\x06\x88\x06\x88\x06\x88\x06\xf8\xf8\xf8\xf8\xf0\x07\x03\x05\x0f\xf8\xf8\xf8\xf0\x0a\x00\x0a\x14\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x02\x27\x09\x31\xf0\x02\x08\x0d\x17\xf0\x02\x03\x11\x1a\xdd\x1c\x20\xa0\x1a\xd1\x1c\x2c\xd4\x1c\x2c\x90\x45\x90\x45\xf8\xdd\x17\x24\xf0\x00\x01\x11\x1a\xf0\x00\x01\x11\x1a\xf0\x00\x01\x11\x1a\xd8\x14\x19\x90\x45\xf0\x03\x01\x11\x1a\xf8\xf8\xf8\xf0\x03\x00\x15\x1a\xf8\xf5\x06\x00\x14\x1b\xf0\x00\x03\x0d\x17\xf0\x00\x03\x0d\x17\xf0\x00\x03\x0d\x17\xd8\x13\x1a\xd0\x13\x26\xd8\x14\x1b\x90\x47\x98\x45\x91\x4e\x94\x4e\x90\x4e\xd8\x10\x16\x90\x06\x90\x06\x90\x06\xf0\x15\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf1\x00\x28\x05\x31\xf4\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf8\xf8\xf8\xf8\xf0\x0e\x03\x0d\x17\xf8\xf8\xf8\xf0\x0a\x05\x0d\x1f\xd8\x19\x1e\x9f\x1c\x9a\x1c\x99\x1e\x9c\x1e\x90\x06\x90\x06\xf8\xdd\x13\x1a\xf0\x00\x03\x0d\x1f\xf0\x00\x03\x0d\x1f\xf0\x00\x03\x0d\x1f\xf0\x06\x00\x1a\x1f\x90\x06\x90\x06\x90\x06\xf0\x07\x03\x0d\x1f\xf8\xf8\xf8\xf0\x0a\x00\x10\x16\xf0\x00\x03\x0d\x2b\xd8\x10\x14\x97\x0b\x92\x0b\x98\x45\x9c\x4a\xd1\x10\x27\xd4\x10\x27\xd0\x10\x27\xd0\x10\x27\xe0\x10\x17\x97\x0e\x92\x0e\x98\x75\x9c\x7a\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xe0\x13\x1a\xf0\x00\x10\x0d\x31\x98\x76\xf0\x00\x10\x0d\x31\xf0\x06\x00\x14\x1f\xf0\x00\x0a\x11\x2f\xd8\x20\x24\x90\x49\x90\x49\xf0\x04\x06\x15\x2b\xd8\x25\x2a\xd7\x25\x35\xd2\x25\x35\xd1\x25\x37\xd4\x25\x37\x98\x0a\x98\x0a\xf8\xdd\x1b\x22\xf0\x00\x04\x15\x2b\xf0\x00\x04\x15\x2b\xf0\x00\x04\x15\x2b\xf0\x08\x00\x26\x2b\x98\x0a\x98\x0a\x98\x0a\xf0\x09\x04\x15\x2b\xf8\xf8\xf8\xf0\x0a\x00\x25\x2f\xa0\x0e\x90\x49\xe0\x13\x1c\xf0\x00\x01\x11\x31\xd8\x14\x1d\xd7\x14\x24\xd2\x14\x24\xa0\x55\xa4\x5a\xd1\x14\x30\xd4\x14\x30\xd0\x14\x30\xf1\x4f\x01\x27\x09\x31\xf0\x0a\x00\x15\x1a\xf0\x0d\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf1\x00\x28\x05\x31\xf4\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf8\xf8\xf8\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x00\x28\x05\x31\xf0\x56\x01\x00\x08\x0f\xf0\x00\x12\x05\x21\xd8\x0e\x11\x90\x34\x98\x17\xd0\x0e\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xf5\x06\x00\x18\x1c\x94\x7b\xa5\x44\xa4\x49\x90\x04\x88\x06\xd8\x17\x1b\xf0\x00\x07\x09\x4a\x01\xf0\x00\x07\x09\x4a\x01\x88\x47\xd8\x17\x1b\x90\x74\x98\x43\xa0\x17\xd1\x17\x29\xd4\x17\x29\x88\x48\xf0\x0a\x00\x10\x1b\xf0\x00\x01\x0d\x4a\x01\xa0\x26\xa0\x26\xa8\x18\xd1\x22\x32\xd4\x22\x32\xf0\x00\x01\x0d\x4a\x01\xdd\x1b\x20\xa0\x18\xa8\x37\xb0\x47\xb8\x5b\xd1\x1b\x49\xd4\x1b\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xd0\x10\x49\xf8\xf0\x0f\x07\x09\x4a\x01\xf0\x00\x07\x09\x4a\x01\xf0\x14\x00\x19\x22\xf0\x00\x01\x09\x46\x01\xf0\x00\x01\x09\x46\x01\x88\x48\xdd\x17\x1c\x98\x58\xa0\x77\xb0\x07\xb8\x1b\xd1\x17\x45\xd4\x17\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xd0\x0c\x45\xe0\x0e\x11\x90\x34\x98\x17\xd0\x0e\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20\xd0\x08\x20", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[186]; - } -os_toplevel_consts_86_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 185, - }, - .ob_shash = -1, - .ob_sval = "\x8a\x0f\x1a\x00\x9a\x0a\x3c\x03\xa4\x0d\x37\x03\xb7\x05\x3c\x03\xc1\x01\x02\x45\x14\x03\xc1\x05\x0f\x41\x15\x02\xc1\x14\x01\x41\x26\x02\xc1\x15\x0a\x41\x22\x05\xc1\x1f\x01\x41\x26\x02\xc1\x20\x01\x45\x14\x03\xc1\x21\x01\x41\x22\x05\xc1\x22\x03\x41\x26\x02\xc1\x25\x01\x45\x14\x03\xc1\x26\x0a\x42\x13\x05\xc1\x30\x0d\x42\x0e\x05\xc1\x3d\x04\x45\x14\x03\xc2\x0e\x05\x42\x13\x05\xc2\x13\x03\x45\x14\x03\xc2\x17\x14\x42\x2c\x02\xc2\x2b\x01\x45\x14\x03\xc2\x2c\x0c\x42\x3b\x05\xc2\x38\x02\x45\x14\x03\xc2\x3a\x01\x42\x3b\x05\xc2\x3b\x41\x03\x45\x14\x03\xc3\x3f\x14\x44\x14\x02\xc4\x13\x01\x45\x14\x03\xc4\x14\x0c\x44\x23\x05\xc4\x20\x02\x45\x14\x03\xc4\x22\x01\x44\x23\x05\xc4\x23\x24\x45\x14\x03\xc5\x14\x04\x45\x18\x07\xc5\x1b\x01\x45\x18\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_nondirs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "nondirs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_walk_dirs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "walk_dirs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_scandir_it = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "scandir_it", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_error = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "error", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_walk_into = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "walk_into", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -os_toplevel_consts_86_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - &_Py_ID(top), - & const_str_topdown._ascii.ob_base, - & const_str_onerror._ascii.ob_base, - & const_str_followlinks._ascii.ob_base, - & const_str_dirs._ascii.ob_base, - & const_str_nondirs._ascii.ob_base, - & const_str_walk_dirs._ascii.ob_base, - & const_str_scandir_it._ascii.ob_base, - & const_str_error._ascii.ob_base, - & const_str_entry._ascii.ob_base, - & const_str_is_dir._ascii.ob_base, - & const_str_walk_into._ascii.ob_base, - & const_str_is_symlink._ascii.ob_base, - & const_str_islink._ascii.ob_base, - &_Py_ID(join), - & const_str_dirname._ascii.ob_base, - & const_str_new_path._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(956) -os_toplevel_consts_86 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 478, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_86_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_86_exceptiontable.ob_base.ob_base, - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 345, - .co_nlocalsplus = 17, - .co_nlocals = 17, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_86_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & zipimport_toplevel_consts_24_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__walk._ascii.ob_base, - .co_qualname = & const_str__walk._ascii.ob_base, - .co_linetable = & os_toplevel_consts_86_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x67\x00\x7d\x04\x67\x00\x7d\x05\x67\x00\x7d\x06\x09\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x6e\x25\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x18\x7d\x08\x7c\x02\x81\x0b\x02\x00\x7c\x02\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x64\x00\x53\x00\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x07\x35\x00\x01\x00\x09\x00\x09\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x6e\x10\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\xe6\x77\x00\x78\x03\x59\x00\x77\x01\x6e\x30\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x23\x7d\x08\x7c\x02\x81\x0b\x02\x00\x7c\x02\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x7d\x08\x7e\x08\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x7d\x08\x7e\x08\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x09\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0a\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x02\x7d\x0a\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0a\x72\x1b\x7c\x04\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x1a\x7c\x05\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x73\x4e\x7c\x0a\x72\x4c\x7c\x03\x72\x03\x64\x01\x7d\x0b\x6e\x2b\x09\x00\x7c\x09\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x6e\x12\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x02\x7d\x0c\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x0c\x00\x7d\x0b\x7c\x0b\x72\x1a\x7c\x06\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x90\x01\x8c\x04\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x01\x72\x57\x7c\x00\x7c\x04\x7c\x05\x66\x03\x56\x00\x97\x01\x01\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x74\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0e\x7d\x0d\x7c\x04\x44\x00\x5d\x33\x7d\x0f\x02\x00\x7c\x0e\x7c\x00\x7c\x0f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x10\x7c\x03\x73\x0b\x02\x00\x7c\x0d\x7c\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x18\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x10\x7c\x01\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x8c\x34\x64\x00\x53\x00\x7c\x06\x44\x00\x5d\x1a\x7d\x10\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x10\x7c\x01\x7c\x02\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x8c\x1b\x7c\x00\x7c\x04\x7c\x05\x66\x03\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_follow_symlinks = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "follow_symlinks", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_dir_fd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dir_fd", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_89 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_follow_symlinks._ascii.ob_base, - & const_str_dir_fd._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[1283]; - } -os_toplevel_consts_90_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1282, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x72\x65\x65\x20\x67\x65\x6e\x65\x72\x61\x74\x6f\x72\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x62\x65\x68\x61\x76\x65\x73\x20\x65\x78\x61\x63\x74\x6c\x79\x20\x6c\x69\x6b\x65\x20\x77\x61\x6c\x6b\x28\x29\x2c\x20\x65\x78\x63\x65\x70\x74\x20\x74\x68\x61\x74\x20\x69\x74\x20\x79\x69\x65\x6c\x64\x73\x20\x61\x20\x34\x2d\x74\x75\x70\x6c\x65\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x70\x61\x74\x68\x2c\x20\x64\x69\x72\x6e\x61\x6d\x65\x73\x2c\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x2c\x20\x64\x69\x72\x66\x64\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x60\x64\x69\x72\x70\x61\x74\x68\x60\x2c\x20\x60\x64\x69\x72\x6e\x61\x6d\x65\x73\x60\x20\x61\x6e\x64\x20\x60\x66\x69\x6c\x65\x6e\x61\x6d\x65\x73\x60\x20\x61\x72\x65\x20\x69\x64\x65\x6e\x74\x69\x63\x61\x6c\x20\x74\x6f\x20\x77\x61\x6c\x6b\x28\x29\x20\x6f\x75\x74\x70\x75\x74\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x60\x64\x69\x72\x66\x64\x60\x20\x69\x73\x20\x61\x20\x66\x69\x6c\x65\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x20\x72\x65\x66\x65\x72\x72\x69\x6e\x67\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x60\x64\x69\x72\x70\x61\x74\x68\x60\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x61\x64\x76\x61\x6e\x74\x61\x67\x65\x20\x6f\x66\x20\x66\x77\x61\x6c\x6b\x28\x29\x20\x6f\x76\x65\x72\x20\x77\x61\x6c\x6b\x28\x29\x20\x69\x73\x20\x74\x68\x61\x74\x20\x69\x74\x27\x73\x20\x73\x61\x66\x65\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x73\x79\x6d\x6c\x69\x6e\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x72\x61\x63\x65\x73\x20\x28\x77\x68\x65\x6e\x20\x66\x6f\x6c\x6c\x6f\x77\x5f\x73\x79\x6d\x6c\x69\x6e\x6b\x73\x20\x69\x73\x20\x46\x61\x6c\x73\x65\x29\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x49\x66\x20\x64\x69\x72\x5f\x66\x64\x20\x69\x73\x20\x6e\x6f\x74\x20\x4e\x6f\x6e\x65\x2c\x20\x69\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x20\x66\x69\x6c\x65\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x20\x6f\x70\x65\x6e\x20\x74\x6f\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x74\x6f\x70\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x3b\x20\x74\x6f\x70\x20\x77\x69\x6c\x6c\x20\x74\x68\x65\x6e\x20\x62\x65\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x74\x6f\x20\x74\x68\x61\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x28\x64\x69\x72\x5f\x66\x64\x20\x69\x73\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x66\x6f\x72\x20\x66\x77\x61\x6c\x6b\x2e\x29\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x43\x61\x75\x74\x69\x6f\x6e\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x53\x69\x6e\x63\x65\x20\x66\x77\x61\x6c\x6b\x28\x29\x20\x79\x69\x65\x6c\x64\x73\x20\x66\x69\x6c\x65\x20\x64\x65\x73\x63\x72\x69\x70\x74\x6f\x72\x73\x2c\x20\x74\x68\x6f\x73\x65\x20\x61\x72\x65\x20\x6f\x6e\x6c\x79\x20\x76\x61\x6c\x69\x64\x20\x75\x6e\x74\x69\x6c\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6e\x65\x78\x74\x20\x69\x74\x65\x72\x61\x74\x69\x6f\x6e\x20\x73\x74\x65\x70\x2c\x20\x73\x6f\x20\x79\x6f\x75\x20\x73\x68\x6f\x75\x6c\x64\x20\x64\x75\x70\x28\x29\x20\x74\x68\x65\x6d\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x6b\x65\x65\x70\x20\x74\x68\x65\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x61\x20\x6c\x6f\x6e\x67\x65\x72\x20\x70\x65\x72\x69\x6f\x64\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x45\x78\x61\x6d\x70\x6c\x65\x3a\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6d\x70\x6f\x72\x74\x20\x6f\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x66\x6f\x72\x20\x72\x6f\x6f\x74\x2c\x20\x64\x69\x72\x73\x2c\x20\x66\x69\x6c\x65\x73\x2c\x20\x72\x6f\x6f\x74\x66\x64\x20\x69\x6e\x20\x6f\x73\x2e\x66\x77\x61\x6c\x6b\x28\x27\x70\x79\x74\x68\x6f\x6e\x2f\x4c\x69\x62\x2f\x65\x6d\x61\x69\x6c\x27\x29\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x72\x6f\x6f\x74\x2c\x20\x22\x63\x6f\x6e\x73\x75\x6d\x65\x73\x22\x2c\x20\x65\x6e\x64\x3d\x22\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x73\x75\x6d\x28\x6f\x73\x2e\x73\x74\x61\x74\x28\x6e\x61\x6d\x65\x2c\x20\x64\x69\x72\x5f\x66\x64\x3d\x72\x6f\x6f\x74\x66\x64\x29\x2e\x73\x74\x5f\x73\x69\x7a\x65\x20\x66\x6f\x72\x20\x6e\x61\x6d\x65\x20\x69\x6e\x20\x66\x69\x6c\x65\x73\x29\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x64\x3d\x22\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x70\x72\x69\x6e\x74\x28\x22\x62\x79\x74\x65\x73\x20\x69\x6e\x22\x2c\x20\x6c\x65\x6e\x28\x66\x69\x6c\x65\x73\x29\x2c\x20\x22\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x73\x22\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x66\x20\x27\x43\x56\x53\x27\x20\x69\x6e\x20\x64\x69\x72\x73\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x69\x72\x73\x2e\x72\x65\x6d\x6f\x76\x65\x28\x27\x43\x56\x53\x27\x29\x20\x20\x23\x20\x64\x6f\x6e\x27\x74\x20\x76\x69\x73\x69\x74\x20\x43\x56\x53\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -os_toplevel_consts_90_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "os.fwalk", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_90_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_dir_fd._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -os_toplevel_consts_90_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & os_toplevel_consts_90_consts_0._ascii.ob_base, - & os_toplevel_consts_90_consts_1._ascii.ob_base, - Py_False, - & os_toplevel_consts_89._object.ob_base.ob_base, - & os_toplevel_consts_90_consts_4._object.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_O_RDONLY = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "O_RDONLY", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_O_NONBLOCK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "O_NONBLOCK", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str__fwalk = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_fwalk", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -os_toplevel_consts_90_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_audit._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - & const_str_stat._ascii.ob_base, - &_Py_ID(open), - & const_str_O_RDONLY._ascii.ob_base, - & const_str_O_NONBLOCK._ascii.ob_base, - & const_str_st._ascii.ob_base, - & const_str_S_ISDIR._ascii.ob_base, - & const_str_st_mode._ascii.ob_base, - &_Py_ID(path), - & const_str_samestat._ascii.ob_base, - & const_str__fwalk._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - &_Py_ID(close), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_fwalk = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fwalk", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[277]; - } -os_toplevel_consts_90_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 276, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x42\x01\x00\x09\x0c\x8c\x09\x90\x2a\x98\x63\xa0\x37\xa8\x47\xb0\x5f\xc0\x66\xd1\x08\x4d\xd4\x08\x4d\xd0\x08\x4d\xdd\x0e\x14\x90\x53\x89\x6b\x8c\x6b\x88\x03\xf0\x06\x00\x10\x1f\xf0\x00\x01\x09\x46\x01\xdd\x16\x1a\x98\x33\xb0\x05\xb8\x66\xd0\x16\x45\xd1\x16\x45\xd4\x16\x45\x88\x47\xdd\x10\x14\x90\x53\x9d\x28\xa5\x5a\xd1\x1a\x2f\xb8\x06\xd0\x10\x3f\xd1\x10\x3f\xd4\x10\x3f\x88\x05\xf0\x02\x06\x09\x19\xd8\x10\x1f\xf0\x00\x03\x0d\x45\x01\xa5\x42\xa4\x4a\xa8\x77\xac\x7f\xd1\x24\x3f\xd4\x24\x3f\xf0\x00\x03\x0d\x45\x01\xdd\x24\x28\xa4\x4d\xb0\x27\xbd\x34\xc0\x05\xb9\x3b\xbc\x3b\xd1\x24\x47\xd4\x24\x47\xf0\x03\x03\x0d\x45\x01\xe5\x1b\x21\xa0\x25\xa8\x13\xad\x6a\xb8\x13\xbd\x65\xd1\x2e\x44\xd4\x2e\x44\xd8\x22\x29\xa8\x37\xb0\x4f\xf1\x03\x01\x1c\x45\x01\xf4\x00\x01\x1c\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf0\x00\x01\x11\x45\x01\xf5\x06\x00\x0d\x12\x90\x25\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\x88\x4c\xf8\x8d\x45\x90\x25\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[14]; - } -os_toplevel_consts_90_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 13, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x1f\x41\x2a\x43\x1a\x00\xc3\x1a\x11\x43\x2b\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_orig_st = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "orig_st", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_topfd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "topfd", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -os_toplevel_consts_90_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(top), - & const_str_topdown._ascii.ob_base, - & const_str_onerror._ascii.ob_base, - & const_str_follow_symlinks._ascii.ob_base, - & const_str_dir_fd._ascii.ob_base, - & const_str_orig_st._ascii.ob_base, - & const_str_topfd._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(476) -os_toplevel_consts_90 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 238, - }, - .co_consts = & os_toplevel_consts_90_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_90_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_90_exceptiontable.ob_base.ob_base, - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 2, - .co_stacksize = 8, - .co_firstlineno = 431, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_90_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_fwalk._ascii.ob_base, - .co_qualname = & const_str_fwalk._ascii.ob_base, - .co_linetable = & os_toplevel_consts_90_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x7c\x04\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x03\x73\x12\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x02\x7c\x04\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x07\x00\x00\x7c\x04\xac\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x09\x00\x7c\x03\x73\x3b\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x4f\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2d\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x00\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\x7c\x03\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x05\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x05\x53\x00\x23\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_91_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_dir_fd._ascii.ob_base, - & const_str_follow_symlinks._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_91_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_follow_symlinks._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_91_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - Py_False, - & os_toplevel_consts_91_consts_2._object.ob_base.ob_base, - & os_toplevel_consts_91_consts_3._object.ob_base.ob_base, - & os_toplevel_consts_90_consts_4._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -os_toplevel_consts_91_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - & const_str_scandir._ascii.ob_base, - &_Py_ID(name), - & const_str_fsencode._ascii.ob_base, - & const_str_is_dir._ascii.ob_base, - &_Py_ID(append), - & const_str_OSError._ascii.ob_base, - & const_str_is_symlink._ascii.ob_base, - & const_str_zip._ascii.ob_base, - & const_str_stat._ascii.ob_base, - &_Py_ID(open), - & const_str_O_RDONLY._ascii.ob_base, - & const_str_O_NONBLOCK._ascii.ob_base, - &_Py_ID(path), - & const_str_samestat._ascii.ob_base, - &_Py_ID(join), - & const_str__fwalk._ascii.ob_base, - &_Py_ID(close), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[718]; - } -os_toplevel_consts_91_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 717, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xf5\x0a\x00\x16\x1d\x98\x55\x91\x5e\x94\x5e\x88\x0a\xd8\x0f\x11\x88\x04\xd8\x12\x14\x88\x07\xd8\x1a\x21\xd0\x12\x3c\xa0\x5f\xd0\x12\x3c\x90\x24\x90\x24\xb8\x22\x88\x07\xd8\x15\x1f\xf0\x00\x11\x09\x19\xf0\x00\x11\x09\x19\x88\x45\xd8\x13\x18\x94\x3a\x88\x44\xd8\x0f\x16\xf0\x00\x01\x0d\x26\xdd\x17\x1f\xa0\x04\x91\x7e\x94\x7e\x90\x04\xf0\x02\x0d\x0d\x19\xd8\x13\x18\x97\x3c\x92\x3c\x91\x3e\x94\x3e\xf0\x00\x05\x11\x29\xd8\x14\x18\x97\x4b\x92\x4b\xa0\x04\xd1\x14\x25\xd4\x14\x25\xd0\x14\x25\xd8\x17\x1e\xd0\x17\x2a\xd8\x18\x1f\x9f\x0e\x9a\x0e\xa0\x75\xd1\x18\x2d\xd4\x18\x2d\xd0\x18\x2d\xf8\xe0\x14\x1b\x97\x4e\x92\x4e\xa0\x34\xd1\x14\x28\xd4\x14\x28\xd0\x14\x28\xf8\xf8\xdd\x13\x1a\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x02\x05\x11\x19\xe0\x17\x1c\xd7\x17\x27\xd2\x17\x27\xd1\x17\x29\xd4\x17\x29\xf0\x00\x01\x15\x2d\xd8\x18\x1f\x9f\x0e\x9a\x0e\xa0\x74\xd1\x18\x2c\xd4\x18\x2c\xd0\x18\x2c\xf8\xf8\xdd\x17\x1e\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xf0\x00\x01\x11\x19\xd8\x14\x18\x90\x44\xf0\x03\x01\x11\x19\xf8\xf8\xf8\xf8\xf8\xf0\x0b\x06\x0d\x19\xf8\xf8\xf8\xf0\x10\x00\x0c\x13\xf0\x00\x01\x09\x30\xd8\x12\x19\x98\x34\xa0\x17\xa8\x25\xd0\x12\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xe0\x1c\x23\x98\x4f\x90\x44\x90\x44\xb5\x13\xb0\x54\xb8\x37\xd1\x31\x43\xd4\x31\x43\xf0\x00\x14\x09\x1d\xf0\x00\x14\x09\x1d\x88\x44\xf0\x02\x0c\x0d\x19\xd8\x17\x26\xf0\x00\x06\x11\x44\x01\xd8\x17\x1e\xf0\x00\x05\x15\x44\x01\xdd\x22\x26\xa0\x74\xb0\x45\xc8\x35\xd0\x22\x51\xd1\x22\x51\xd4\x22\x51\x98\x07\x98\x07\xe0\x1f\x26\xd0\x1f\x32\xd0\x1f\x32\xd0\x1f\x32\xd8\x26\x2a\x99\x0b\x98\x04\x98\x65\xd8\x22\x27\xa7\x2a\xa2\x2a\xb8\x55\xa0\x2a\xd1\x22\x43\xd4\x22\x43\x98\x07\xdd\x18\x1c\x98\x54\xa5\x38\xad\x6a\xd1\x23\x38\xc0\x15\xd0\x18\x47\xd1\x18\x47\xd4\x18\x47\x90\x05\x90\x05\xf8\xdd\x13\x1a\xf0\x00\x03\x0d\x19\xf0\x00\x03\x0d\x19\xf0\x00\x03\x0d\x19\xd8\x13\x1a\xd0\x13\x26\xd8\x14\x1b\x90\x47\x98\x43\x91\x4c\x94\x4c\x90\x4c\xd8\x10\x18\x90\x08\x90\x08\x90\x08\x90\x08\xf8\xf8\xf8\xf8\xf0\x07\x03\x0d\x19\xf8\xf8\xf8\xf0\x08\x06\x0d\x1d\xd8\x13\x22\xf0\x00\x03\x11\x49\x01\xa5\x64\xa4\x6d\xb0\x47\xbd\x54\xc0\x25\xb9\x5b\xbc\x5b\xd1\x26\x49\xd4\x26\x49\xf0\x00\x03\x11\x49\x01\xdd\x1e\x22\x9c\x69\xa8\x07\xb0\x14\xd1\x1e\x36\xd4\x1e\x36\x90\x47\xdd\x1f\x25\xa0\x65\xa8\x57\xb0\x67\xd8\x26\x2d\xa8\x77\xb8\x0f\xf1\x03\x01\x20\x49\x01\xf4\x00\x01\x20\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf0\x00\x01\x15\x49\x01\xf5\x06\x00\x11\x16\x90\x65\x91\x0c\x94\x0c\x90\x0c\x90\x0c\xf8\x95\x05\x90\x65\x91\x0c\x94\x0c\x90\x0c\x90\x0c\xf8\xf8\xf8\xe0\x0f\x16\xf0\x00\x01\x09\x30\xd8\x12\x19\x98\x34\xa0\x17\xa8\x25\xd0\x12\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xd0\x0c\x2f\xf0\x03\x01\x09\x30\xf0\x00\x01\x09\x30", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[93]; - } -os_toplevel_consts_91_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 92, - }, - .ob_shash = -1, - .ob_sval = "\xbb\x41\x16\x42\x12\x02\xc2\x12\x0a\x43\x1a\x05\xc2\x1d\x29\x43\x07\x04\xc3\x06\x01\x43\x1a\x05\xc3\x07\x0a\x43\x14\x07\xc3\x11\x02\x43\x1a\x05\xc3\x13\x01\x43\x14\x07\xc3\x14\x03\x43\x1a\x05\xc3\x19\x01\x43\x1a\x05\xc3\x3e\x41\x15\x45\x14\x02\xc5\x14\x0a\x45\x35\x05\xc5\x1e\x0d\x45\x30\x05\xc5\x30\x05\x45\x35\x05\xc5\x39\x41\x13\x47\x1c\x02\xc7\x1c\x11\x47\x2d\x05", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_toppath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "toppath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_isbytes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "isbytes", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_entries = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "entries", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_dirfd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dirfd", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_err = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "err", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -os_toplevel_consts_91_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & const_str_topfd._ascii.ob_base, - & const_str_toppath._ascii.ob_base, - & const_str_isbytes._ascii.ob_base, - & const_str_topdown._ascii.ob_base, - & const_str_onerror._ascii.ob_base, - & const_str_follow_symlinks._ascii.ob_base, - & const_str_scandir_it._ascii.ob_base, - & const_str_dirs._ascii.ob_base, - & const_str_nondirs._ascii.ob_base, - & const_str_entries._ascii.ob_base, - & const_str_entry._ascii.ob_base, - &_Py_ID(name), - & const_str_orig_st._ascii.ob_base, - & const_str_dirfd._ascii.ob_base, - & const_str_err._ascii.ob_base, - & const_str_dirpath._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[17]; - } -os_toplevel_consts_91_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 16, - }, - .ob_shash = -1, - .ob_sval = " ", -}; -static - struct _PyCode_DEF(1020) -os_toplevel_consts_91 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 510, - }, - .co_consts = & os_toplevel_consts_91_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_91_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_91_exceptiontable.ob_base.ob_base, - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 6, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 9, - .co_firstlineno = 479, - .co_nlocalsplus = 16, - .co_nlocals = 16, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_91_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & os_toplevel_consts_91_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__fwalk._ascii.ob_base, - .co_qualname = & const_str__fwalk._ascii.ob_base, - .co_linetable = & os_toplevel_consts_91_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x67\x00\x7d\x07\x67\x00\x7d\x08\x7c\x03\x73\x02\x7c\x05\x72\x02\x64\x00\x6e\x01\x67\x00\x7d\x09\x7c\x06\x44\x00\x5d\xbc\x7d\x0a\x7c\x0a\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x02\x72\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x09\x00\x7c\x0a\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2d\x7c\x07\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x09\x81\x15\x7c\x09\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x15\x7c\x08\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x72\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x3e\x01\x00\x09\x00\x7c\x0a\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x15\x7c\x08\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x59\x00\x8c\xb9\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x72\x08\x7c\x01\x7c\x07\x7c\x08\x7c\x00\x66\x04\x56\x00\x97\x01\x01\x00\x7c\x09\x80\x02\x7c\x07\x6e\x0f\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\xf4\x7d\x0b\x09\x00\x7c\x05\x73\x34\x7c\x03\x72\x13\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x7c\x00\x64\x01\xac\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x6e\x1f\x7c\x09\x80\x02\x4a\x00\x82\x01\x7c\x0b\x5c\x02\x00\x00\x7d\x0b\x7d\x0a\x7c\x0a\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xac\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0b\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x07\x00\x00\x7c\x00\xac\x04\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x6e\x24\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x17\x7d\x0e\x7c\x04\x81\x0b\x02\x00\x7c\x04\x7c\x0e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x7d\x0e\x7e\x0e\x8c\x75\x64\x00\x7d\x0e\x7e\x0e\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x7c\x05\x73\x22\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0c\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2f\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x0b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0f\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\x7c\x0f\x7c\x02\x7c\x03\x7c\x04\x7c\x05\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\x45\x00\x64\x00\x7b\x03\x56\x00\x97\x02\x86\x04\x01\x00\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xe1\x23\x00\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x03\x73\x0a\x7c\x01\x7c\x07\x7c\x08\x7c\x00\x66\x04\x56\x00\x97\x01\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[113]; - } -os_toplevel_consts_93_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 112, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x65\x78\x65\x63\x6c\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_93_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_93_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_execv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execv", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_93_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_execv._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_execl = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execl", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -os_toplevel_consts_93_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x05\x0a\x88\x24\x90\x04\xd1\x04\x15\xd4\x04\x15\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_93_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_file._ascii.ob_base, - & const_str_args._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(38) -os_toplevel_consts_93 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & os_toplevel_consts_93_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_93_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 537, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_93_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_execl._ascii.ob_base, - .co_qualname = & const_str_execl._ascii.ob_base, - .co_linetable = & os_toplevel_consts_93_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[139]; - } -os_toplevel_consts_94_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 138, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x65\x78\x65\x63\x6c\x65\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x65\x6e\x76\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_94_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & os_toplevel_consts_94_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_94_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_execve._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_execle = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execle", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[46]; - } -os_toplevel_consts_94_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 45, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x0b\x0f\x88\x72\x8c\x28\x80\x43\xdd\x04\x0a\x88\x34\x90\x14\x90\x63\x90\x72\x90\x63\x94\x19\x98\x43\xd1\x04\x20\xd4\x04\x20\xd0\x04\x20\xd0\x04\x20\xd0\x04\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_env = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "env", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_94_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_file._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_env._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(72) -os_toplevel_consts_94 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & os_toplevel_consts_94_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_94_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 544, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_94_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_execle._ascii.ob_base, - .co_qualname = & const_str_execle._ascii.ob_base, - .co_linetable = & os_toplevel_consts_94_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[150]; - } -os_toplevel_consts_95_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 149, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x65\x78\x65\x63\x6c\x70\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_95_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_95_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_execvp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execvp", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_95_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_execvp._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_execlp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execlp", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -os_toplevel_consts_95_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0a\x00\x05\x0b\x88\x34\x90\x14\xd1\x04\x16\xd4\x04\x16\xd0\x04\x16\xd0\x04\x16\xd0\x04\x16", -}; -static - struct _PyCode_DEF(38) -os_toplevel_consts_95 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & os_toplevel_consts_95_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_95_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 552, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_93_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_execlp._ascii.ob_base, - .co_qualname = & const_str_execlp._ascii.ob_base, - .co_linetable = & os_toplevel_consts_95_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[180]; - } -os_toplevel_consts_96_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 179, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x65\x78\x65\x63\x6c\x70\x65\x28\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x20\x61\x6e\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x65\x6e\x76\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x0a\x20\x20\x20\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_96_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & os_toplevel_consts_96_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_execvpe = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execvpe", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_96_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_execvpe._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_execlpe = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execlpe", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[46]; - } -os_toplevel_consts_96_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 45, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0c\x00\x0b\x0f\x88\x72\x8c\x28\x80\x43\xdd\x04\x0b\x88\x44\x90\x24\x90\x73\x98\x02\x90\x73\x94\x29\x98\x53\xd1\x04\x21\xd4\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21", -}; -static - struct _PyCode_DEF(72) -os_toplevel_consts_96 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & os_toplevel_consts_96_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_96_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 559, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_94_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_execlpe._ascii.ob_base, - .co_qualname = & const_str_execlpe._ascii.ob_base, - .co_linetable = & os_toplevel_consts_96_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[193]; - } -os_toplevel_consts_97_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 192, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x65\x78\x65\x63\x76\x70\x28\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x20\x20\x20\x20\x61\x72\x67\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x72\x20\x74\x75\x70\x6c\x65\x20\x6f\x66\x20\x73\x74\x72\x69\x6e\x67\x73\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_97_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_97_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__execvpe = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_execvpe", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_97_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__execvpe._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -os_toplevel_consts_97_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0c\x00\x05\x0d\x88\x54\x90\x34\xd1\x04\x18\xd4\x04\x18\xd0\x04\x18\xd0\x04\x18\xd0\x04\x18", -}; -static - struct _PyCode_DEF(38) -os_toplevel_consts_97 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & os_toplevel_consts_97_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_97_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 568, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_93_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_execvp._ascii.ob_base, - .co_qualname = & const_str_execvp._ascii.ob_base, - .co_linetable = & os_toplevel_consts_97_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[223]; - } -os_toplevel_consts_98_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 222, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x65\x78\x65\x63\x76\x70\x65\x28\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x0a\x0a\x20\x20\x20\x20\x45\x78\x65\x63\x75\x74\x65\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x0a\x20\x20\x20\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x6c\x69\x73\x74\x20\x61\x72\x67\x73\x20\x61\x6e\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x65\x6e\x76\x2c\x20\x72\x65\x70\x6c\x61\x63\x69\x6e\x67\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x20\x20\x20\x20\x61\x72\x67\x73\x20\x6d\x61\x79\x20\x62\x65\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x72\x20\x74\x75\x70\x6c\x65\x20\x6f\x66\x20\x73\x74\x72\x69\x6e\x67\x73\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_98_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_98_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[29]; - } -os_toplevel_consts_98_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 28, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0e\x00\x05\x0d\x88\x54\x90\x34\x98\x13\xd1\x04\x1d\xd4\x04\x1d\xd0\x04\x1d\xd0\x04\x1d\xd0\x04\x1d", -}; -static - struct _PyCode_DEF(40) -os_toplevel_consts_98 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 20, - }, - .co_consts = & os_toplevel_consts_98_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_97_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 576, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_94_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_execvpe._ascii.ob_base, - .co_qualname = & const_str_execvpe._ascii.ob_base, - .co_linetable = & os_toplevel_consts_98_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -os_toplevel_consts_99 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_execl._ascii.ob_base, - & const_str_execle._ascii.ob_base, - & const_str_execlp._ascii.ob_base, - & const_str_execlpe._ascii.ob_base, - & const_str_execvp._ascii.ob_base, - & const_str_execvpe._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_100_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & const_str_nt._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -os_toplevel_consts_100_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_execve._ascii.ob_base, - & const_str_execv._ascii.ob_base, - & const_str_environ._ascii.ob_base, - &_Py_ID(path), - & const_str_dirname._ascii.ob_base, - & const_str_get_exec_path._ascii.ob_base, - &_Py_ID(name), - & const_str_fsencode._ascii.ob_base, - & const_str_map._ascii.ob_base, - &_Py_ID(join), - & const_str_FileNotFoundError._ascii.ob_base, - & const_str_NotADirectoryError._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[318]; - } -os_toplevel_consts_100_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 317, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x07\x0a\x80\x7f\xdd\x14\x1a\x88\x09\xd8\x13\x17\x98\x13\x90\x2b\x88\x07\x88\x07\xe5\x14\x19\x88\x09\xd8\x13\x17\x90\x27\x88\x07\xdd\x0e\x15\x88\x03\xe5\x07\x0b\x84\x7c\x90\x44\xd1\x07\x19\xd4\x07\x19\xf0\x00\x02\x05\x0f\xd8\x08\x11\x88\x09\x90\x24\xd0\x08\x21\x98\x17\xd0\x08\x21\xd0\x08\x21\xd0\x08\x21\xd0\x08\x21\xd8\x08\x0e\x88\x06\xd8\x10\x14\x80\x49\xdd\x10\x1d\x98\x63\xd1\x10\x22\xd4\x10\x22\x80\x49\xdd\x07\x0b\x88\x74\x82\x7c\x80\x7c\xdd\x0f\x17\x98\x04\x89\x7e\x8c\x7e\x88\x04\xdd\x14\x17\x9d\x08\xa0\x29\xd1\x14\x2c\xd4\x14\x2c\x88\x09\xd8\x0f\x18\xf0\x00\x09\x05\x1e\xf0\x00\x09\x05\x1e\x88\x03\xdd\x13\x17\x94\x39\x98\x53\xa0\x24\xd1\x13\x27\xd4\x13\x27\x88\x08\xf0\x02\x07\x09\x1e\xd8\x0c\x15\x88\x49\x90\x68\xd0\x0c\x29\xa0\x17\xd0\x0c\x29\xd0\x0c\x29\xd0\x0c\x29\xd0\x0c\x29\xd0\x0c\x29\xf8\xdd\x10\x21\xd5\x23\x35\xd0\x0f\x36\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xd8\x17\x18\x88\x48\x88\x48\x88\x48\x88\x48\x88\x48\x88\x48\xf8\xf8\xf8\xf8\xdd\x0f\x16\xf0\x00\x03\x09\x1e\xf0\x00\x03\x09\x1e\xf0\x00\x03\x09\x1e\xd8\x17\x18\x88\x48\xd8\x0f\x18\xd0\x0f\x20\xd8\x1c\x1d\x90\x09\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf0\x07\x03\x09\x1e\xf8\xf8\xf8\xf0\x08\x00\x08\x11\xd0\x07\x1c\xd8\x0e\x17\x88\x0f\xd8\x0a\x12\x80\x4e", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[37]; - } -os_toplevel_consts_100_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 36, - }, - .ob_shash = -1, - .ob_sval = "\xc2\x19\x09\x42\x23\x02\xc2\x23\x11\x43\x18\x05\xc2\x34\x02\x42\x3b\x05\xc2\x3b\x0d\x43\x18\x05\xc3\x08\x06\x43\x13\x05\xc3\x13\x05\x43\x18\x05", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_exec_func = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exec_func", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_argrest = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "argrest", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_saved_exc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "saved_exc", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_last_exc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "last_exc", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -os_toplevel_consts_100_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_file._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_env._ascii.ob_base, - & const_str_exec_func._ascii.ob_base, - & const_str_argrest._ascii.ob_base, - & const_str_saved_exc._ascii.ob_base, - & const_str_path_list._ascii.ob_base, - & const_str_dir._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - & const_str_e._ascii.ob_base, - & const_str_last_exc._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(450) -os_toplevel_consts_100 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 225, - }, - .co_consts = & os_toplevel_consts_100_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_100_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_100_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 587, - .co_nlocalsplus = 11, - .co_nlocals = 11, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_100_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_8_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__execvpe._ascii.ob_base, - .co_qualname = & const_str__execvpe._ascii.ob_base, - .co_linetable = & os_toplevel_consts_100_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x81\x0c\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\x7c\x02\x66\x02\x7d\x04\x6e\x11\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x01\x66\x01\x7d\x04\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0b\x02\x00\x7c\x03\x7c\x00\x67\x01\x7c\x04\xa2\x01\x52\x00\x8e\x00\x01\x00\x64\x00\x53\x00\x64\x00\x7d\x05\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x03\x00\x00\x00\x00\x72\x24\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x06\x44\x00\x5d\x59\x7d\x07\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x09\x00\x02\x00\x7c\x03\x7c\x08\x67\x01\x7c\x04\xa2\x01\x52\x00\x8e\x00\x01\x00\x8c\x22\x23\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x0c\x7d\x09\x7c\x09\x7d\x0a\x59\x00\x64\x00\x7d\x09\x7e\x09\x8c\x3a\x64\x00\x7d\x09\x7e\x09\x77\x01\x74\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x10\x7d\x09\x7c\x09\x7d\x0a\x7c\x05\x80\x02\x7c\x09\x7d\x05\x59\x00\x64\x00\x7d\x09\x7e\x09\x8c\x52\x64\x00\x7d\x09\x7e\x09\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x05\x81\x02\x7c\x05\x82\x01\x7c\x0a\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[244]; - } -os_toplevel_consts_101_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 243, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x71\x75\x65\x6e\x63\x65\x20\x6f\x66\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x6e\x61\x6d\x65\x64\x20\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x20\x28\x73\x69\x6d\x69\x6c\x61\x72\x20\x74\x6f\x20\x61\x20\x73\x68\x65\x6c\x6c\x29\x20\x77\x68\x65\x6e\x20\x6c\x61\x75\x6e\x63\x68\x69\x6e\x67\x20\x61\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x0a\x20\x20\x20\x20\x2a\x65\x6e\x76\x2a\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x6e\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x64\x69\x63\x74\x20\x6f\x72\x20\x4e\x6f\x6e\x65\x2e\x20\x20\x49\x66\x20\x2a\x65\x6e\x76\x2a\x20\x69\x73\x20\x4e\x6f\x6e\x65\x2c\x0a\x20\x20\x20\x20\x6f\x73\x2e\x65\x6e\x76\x69\x72\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_PATH = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "PATH", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -os_toplevel_consts_101_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = "PATH", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[43]; - } -os_toplevel_consts_101_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 42, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "env cannot contain 'PATH' and b'PATH' keys", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -os_toplevel_consts_101_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & os_toplevel_consts_101_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - &_Py_ID(ignore), - & const_str_PATH._ascii.ob_base, - & os_toplevel_consts_101_consts_5.ob_base.ob_base, - & os_toplevel_consts_101_consts_6._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_catch_warnings = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "catch_warnings", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_simplefilter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "simplefilter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str_supports_bytes_environ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "supports_bytes_environ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -os_toplevel_consts_101_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - &_Py_ID(warnings), - & const_str_environ._ascii.ob_base, - & const_str_catch_warnings._ascii.ob_base, - & const_str_simplefilter._ascii.ob_base, - & const_str_BytesWarning._ascii.ob_base, - &_Py_ID(get), - & const_str_TypeError._ascii.ob_base, - & const_str_supports_bytes_environ._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - & const_str_split._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[378]; - } -os_toplevel_consts_101_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 377, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x14\x00\x05\x14\x80\x4f\x80\x4f\x80\x4f\xe0\x07\x0a\x80\x7b\xdd\x0e\x15\x88\x03\xf0\x08\x00\x0a\x12\xd7\x09\x20\xd2\x09\x20\xd1\x09\x22\xd4\x09\x22\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xd8\x08\x10\xd7\x08\x1d\xd2\x08\x1d\x98\x68\xad\x0c\xd1\x08\x35\xd4\x08\x35\xd0\x08\x35\xf0\x04\x03\x09\x1d\xd8\x18\x1b\x9f\x07\x9a\x07\xa0\x06\x99\x0f\x9c\x0f\x88\x49\x88\x49\xf8\xdd\x0f\x18\xf0\x00\x01\x09\x1d\xf0\x00\x01\x09\x1d\xf0\x00\x01\x09\x1d\xd8\x18\x1c\x88\x49\x88\x49\x88\x49\xf0\x03\x01\x09\x1d\xf8\xf8\xf8\xf5\x06\x00\x0c\x22\xf0\x00\x0c\x09\x30\xf0\x02\x08\x0d\x27\xd8\x1d\x20\xa0\x17\x9c\x5c\x90\x0a\xf0\x08\x00\x14\x1d\xd0\x13\x28\xdd\x1a\x24\xd8\x18\x44\xf1\x03\x01\x1b\x46\x01\xf4\x00\x01\x1b\x46\x01\xf0\x00\x01\x15\x46\x01\xe0\x1c\x26\x90\x09\x90\x09\xf8\xf5\x0d\x00\x15\x1d\x9d\x69\xd0\x13\x28\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x10\x00\x10\x19\xd0\x0f\x24\xad\x1a\xb0\x49\xbd\x75\xd1\x29\x45\xd4\x29\x45\xd0\x0f\x24\xdd\x1c\x24\xa0\x59\xd1\x1c\x2f\xd4\x1c\x2f\x90\x09\xf0\x29\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf1\x00\x14\x05\x30\xf4\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf8\xf8\xf8\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x00\x14\x05\x30\xf0\x2c\x00\x08\x11\xd0\x07\x18\xdd\x14\x1b\x88\x09\xd8\x0b\x14\x8f\x3f\x8a\x3f\x9d\x37\xd1\x0b\x23\xd4\x0b\x23\xd0\x04\x23", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[89]; - } -os_toplevel_consts_101_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 88, - }, - .ob_shash = -1, - .ob_sval = "\xa2\x1c\x43\x14\x03\xbf\x15\x41\x15\x02\xc1\x14\x01\x43\x14\x03\xc1\x15\x0c\x41\x24\x05\xc1\x21\x02\x43\x14\x03\xc1\x23\x01\x41\x24\x05\xc1\x24\x0a\x43\x14\x03\xc1\x2f\x08\x42\x0b\x02\xc1\x37\x14\x43\x14\x03\xc2\x0b\x11\x42\x1f\x05\xc2\x1c\x02\x43\x14\x03\xc2\x1e\x01\x42\x1f\x05\xc2\x1f\x29\x43\x14\x03\xc3\x14\x04\x43\x18\x07\xc3\x1b\x01\x43\x18\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_path_listb = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_listb", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_101_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_env._ascii.ob_base, - &_Py_ID(warnings), - & const_str_path_list._ascii.ob_base, - & const_str_path_listb._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(516) -os_toplevel_consts_101 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 258, - }, - .co_consts = & os_toplevel_consts_101_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_101_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_101_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 619, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_101_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_get_exec_path._ascii.ob_base, - .co_qualname = & const_str_get_exec_path._ascii.ob_base, - .co_linetable = & os_toplevel_consts_101_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x64\x02\x6c\x00\x7d\x01\x7c\x00\x80\x07\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x01\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x01\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x12\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x05\x01\x00\x64\x02\x7d\x02\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x5a\x09\x00\x7c\x00\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x02\x81\x0f\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x7d\x02\x6e\x17\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x02\x81\x24\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0f\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x02\x64\x02\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x02\x80\x07\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_102 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_MutableMapping._ascii.ob_base, - & const_str_Mapping._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__Environ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_encodekey = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "encodekey", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_decodekey = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "decodekey", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_encodevalue = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "encodevalue", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_decodevalue = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "decodevalue", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__data = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_data", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_103_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_encodekey._ascii.ob_base, - & const_str_decodekey._ascii.ob_base, - & const_str_encodevalue._ascii.ob_base, - & const_str_decodevalue._ascii.ob_base, - & const_str__data._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -os_toplevel_consts_103_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[44]; - } -os_toplevel_consts_103_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 43, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x19\x22\x88\x04\x8c\x0e\xd8\x19\x22\x88\x04\x8c\x0e\xd8\x1b\x26\x88\x04\xd4\x08\x18\xd8\x1b\x26\x88\x04\xd4\x08\x18\xd8\x15\x19\x88\x04\x8c\x0a\x88\x0a\x88\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -os_toplevel_consts_103_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_encodekey._ascii.ob_base, - & const_str_decodekey._ascii.ob_base, - & const_str_encodevalue._ascii.ob_base, - & const_str_decodevalue._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(76) -os_toplevel_consts_103_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 38, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 6, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 667, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_103_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & os_toplevel_consts_103_consts_1_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_103_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__data._ascii.ob_base, - & const_str_encodekey._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - & const_str_decodevalue._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -os_toplevel_consts_103_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__getitem__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[97]; - } -os_toplevel_consts_103_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 96, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x04\x09\x2a\xd8\x14\x18\x94\x4a\x98\x74\x9f\x7e\x9a\x7e\xa8\x63\xd1\x1f\x32\xd4\x1f\x32\xd4\x14\x33\x88\x45\x88\x45\xf8\xdd\x0f\x17\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xe5\x12\x1a\x98\x33\x91\x2d\x94\x2d\xa0\x54\xd0\x0c\x29\xf0\x05\x02\x09\x2a\xf8\xf8\xf8\xf0\x06\x00\x10\x14\xd7\x0f\x1f\xd2\x0f\x1f\xa0\x05\xd1\x0f\x26\xd4\x0f\x26\xd0\x08\x26", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -os_toplevel_consts_103_consts_2_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = "\x82\x20\x23\x00\xa3\x1b\x3e\x03", -}; -static - struct _PyCode_DEF(172) -os_toplevel_consts_103_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 86, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_103_consts_2_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 674, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getitem__), - .co_qualname = & os_toplevel_consts_103_consts_2_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x1e\x23\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_putenv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "putenv", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_103_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_encodekey._ascii.ob_base, - & const_str_encodevalue._ascii.ob_base, - & const_str_putenv._ascii.ob_base, - & const_str__data._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -os_toplevel_consts_103_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__setitem__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[70]; - } -os_toplevel_consts_103_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 69, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0e\x12\x8f\x6e\x8a\x6e\x98\x53\xd1\x0e\x21\xd4\x0e\x21\x88\x03\xd8\x10\x14\xd7\x10\x20\xd2\x10\x20\xa0\x15\xd1\x10\x27\xd4\x10\x27\x88\x05\xdd\x08\x0e\x88\x73\x90\x45\xd1\x08\x1a\xd4\x08\x1a\xd0\x08\x1a\xd8\x1a\x1f\x88\x04\x8c\x0a\x90\x33\x89\x0f\x88\x0f\x88\x0f", -}; -static - struct _PyCode_DEF(142) -os_toplevel_consts_103_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 71, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 682, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__setitem__), - .co_qualname = & os_toplevel_consts_103_consts_3_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_unsetenv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "unsetenv", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_103_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_encodekey._ascii.ob_base, - & const_str_unsetenv._ascii.ob_base, - & const_str__data._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -os_toplevel_consts_103_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__delitem__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[96]; - } -os_toplevel_consts_103_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 95, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x15\x19\x97\x5e\x92\x5e\xa0\x43\xd1\x15\x28\xd4\x15\x28\x88\x0a\xdd\x08\x10\x90\x1a\xd1\x08\x1c\xd4\x08\x1c\xd0\x08\x1c\xf0\x02\x04\x09\x2a\xd8\x10\x14\x94\x0a\x98\x3a\xd0\x10\x26\xd0\x10\x26\xd0\x10\x26\xf8\xdd\x0f\x17\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xf0\x00\x02\x09\x2a\xe5\x12\x1a\x98\x33\x91\x2d\x94\x2d\xa0\x54\xd0\x0c\x29\xf0\x05\x02\x09\x2a\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[10]; - } -os_toplevel_consts_103_consts_4_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 9, - }, - .ob_shash = -1, - .ob_sval = "\xa6\x08\x30\x00\xb0\x1b\x41\x0b\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_encodedkey = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "encodedkey", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_103_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_encodedkey._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(156) -os_toplevel_consts_103_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 78, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_103_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 688, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_103_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__delitem__), - .co_qualname = & os_toplevel_consts_103_consts_4_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x3d\x00\x64\x00\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x11\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_103_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_list._ascii.ob_base, - & const_str__data._ascii.ob_base, - & const_str_decodekey._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -os_toplevel_consts_103_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__iter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[74]; - } -os_toplevel_consts_103_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 73, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xe5\x0f\x13\x90\x44\x94\x4a\xd1\x0f\x1f\xd4\x0f\x1f\x88\x04\xd8\x13\x17\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\x88\x43\xd8\x12\x16\x97\x2e\x92\x2e\xa0\x13\xd1\x12\x25\xd4\x12\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xf0\x03\x01\x09\x26\xf0\x00\x01\x09\x26", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_103_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(keys), - & const_str_key._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(106) -os_toplevel_consts_103_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 53, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 697, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_103_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & os_toplevel_consts_103_consts_5_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x44\x00\x5d\x19\x7d\x02\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x56\x00\x97\x01\x01\x00\x8c\x1a\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_103_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(len), - & const_str__data._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -os_toplevel_consts_103_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__len__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[17]; - } -os_toplevel_consts_103_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 16, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x12\x90\x34\x94\x3a\x89\x7f\x8c\x7f\xd0\x08\x1e", -}; -static - struct _PyCode_DEF(42) -os_toplevel_consts_103_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 703, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__len__), - .co_qualname = & os_toplevel_consts_103_consts_6_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_103_consts_7_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_103_consts_7_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_decodekey._ascii.ob_base, - & const_str_decodevalue._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[37]; - } -os_toplevel_consts_103_consts_7_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 36, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__repr__..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[100]; - } -os_toplevel_consts_103_consts_7_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 99, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xe8\x00\xe8\x00\x80\x00\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xe1\x10\x1a\x90\x03\x90\x55\xf0\x03\x00\x10\x14\x8f\x7e\x8a\x7e\x98\x63\xd1\x0f\x22\xd4\x0f\x22\xd0\x0c\x43\xd0\x0c\x43\xa8\x04\xd7\x28\x38\xd2\x28\x38\xb8\x15\xd1\x28\x3f\xd4\x28\x3f\xd0\x0c\x43\xd0\x0c\x43\xf0\x03\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_103_consts_7_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str_self._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(120) -os_toplevel_consts_103_consts_7_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 60, - }, - .co_consts = & os_toplevel_consts_103_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_7_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 51, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 707, - .co_nlocalsplus = 4, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & os_toplevel_consts_103_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_genexpr), - .co_qualname = & os_toplevel_consts_103_consts_7_consts_2_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_7_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x4b\x00\x01\x00\x97\x00\x7c\x00\x5d\x34\x5c\x02\x00\x00\x7d\x01\x7d\x02\x89\x03\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x64\x00\x89\x03\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x03\x56\x00\x97\x01\x01\x00\x8c\x35\x64\x01\x53\x00", - ._co_firsttraceable = 3, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -os_toplevel_consts_103_consts_7_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "environ({", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -os_toplevel_consts_103_consts_7_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "})", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_103_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - &_Py_STR(comma_sep), - & os_toplevel_consts_103_consts_7_consts_2.ob_base.ob_base, - & os_toplevel_consts_103_consts_7_consts_3._ascii.ob_base, - & os_toplevel_consts_103_consts_7_consts_4._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_103_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(join), - & const_str__data._ascii.ob_base, - &_Py_ID(items), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -os_toplevel_consts_103_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[94]; - } -os_toplevel_consts_103_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 93, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd8\x1a\x1e\x9f\x29\x9a\x29\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xf0\x00\x03\x24\x0a\xe0\x1e\x22\x9c\x6a\xd7\x1e\x2e\xd2\x1e\x2e\xd1\x1e\x30\xd4\x1e\x30\xf0\x05\x03\x24\x0a\xf1\x00\x03\x24\x0a\xf4\x00\x03\x24\x0a\xf1\x00\x03\x1b\x0a\xf4\x00\x03\x1b\x0a\x88\x0f\xf0\x08\x00\x10\x31\x98\x4f\xd0\x0f\x30\xd0\x0f\x30\xd0\x0f\x30\xd0\x08\x30", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_formatted_items = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "formatted_items", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_103_consts_7_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_formatted_items._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(128) -os_toplevel_consts_103_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 64, - }, - .co_consts = & os_toplevel_consts_103_consts_7_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 706, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_103_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & os_toplevel_consts_103_consts_7_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x64\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x02\x84\x08\x89\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x03\x7c\x01\x9b\x00\x64\x04\x9d\x03\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_103_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_dict._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -os_toplevel_consts_103_consts_8_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.copy", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -os_toplevel_consts_103_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x13\x90\x44\x89\x7a\x8c\x7a\xd0\x08\x19", -}; -static - struct _PyCode_DEF(32) -os_toplevel_consts_103_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 713, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(copy), - .co_qualname = & os_toplevel_consts_103_consts_8_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -os_toplevel_consts_103_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.setdefault", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[31]; - } -os_toplevel_consts_103_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 30, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0e\x90\x64\x88\x3f\x88\x3f\xd8\x18\x1d\x88\x44\x90\x13\x89\x49\xd8\x0f\x13\x90\x43\x8c\x79\xd0\x08\x18", -}; -static - struct _PyCode_DEF(36) -os_toplevel_consts_103_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 716, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & _collections_abc_toplevel_consts_64_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_setdefault._ascii.ob_base, - .co_qualname = & os_toplevel_consts_103_consts_9_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x76\x01\x72\x05\x7c\x02\x7c\x00\x7c\x01\x3c\x00\x00\x00\x7c\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_103_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_update._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -os_toplevel_consts_103_consts_10_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__ior__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -os_toplevel_consts_103_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\x8f\x0b\x8a\x0b\x90\x45\xd1\x08\x1a\xd4\x08\x1a\xd0\x08\x1a\xd8\x0f\x13\x88\x0b", -}; -static - struct _PyCode_DEF(48) -os_toplevel_consts_103_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 721, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_59_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__ior__), - .co_qualname = & os_toplevel_consts_103_consts_10_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_103_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_Mapping._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - & const_str_dict._ascii.ob_base, - & const_str_update._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -os_toplevel_consts_103_consts_11_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__or__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[61]; - } -os_toplevel_consts_103_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 60, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x17\xd1\x0f\x29\xd4\x0f\x29\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0e\x12\x90\x34\x89\x6a\x8c\x6a\x88\x03\xd8\x08\x0b\x8f\x0a\x8a\x0a\x90\x35\xd1\x08\x19\xd4\x08\x19\xd0\x08\x19\xd8\x0f\x12\x88\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_103_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_other._ascii.ob_base, - & const_str_new._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(134) -os_toplevel_consts_103_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 67, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 725, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_103_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__or__), - .co_qualname = & os_toplevel_consts_103_consts_11_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -os_toplevel_consts_103_consts_12_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Environ.__ror__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[61]; - } -os_toplevel_consts_103_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 60, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x17\xd1\x0f\x29\xd4\x0f\x29\xf0\x00\x01\x09\x22\xdd\x13\x21\xd0\x0c\x21\xdd\x0e\x12\x90\x35\x89\x6b\x8c\x6b\x88\x03\xd8\x08\x0b\x8f\x0a\x8a\x0a\x90\x34\xd1\x08\x18\xd4\x08\x18\xd0\x08\x18\xd8\x0f\x12\x88\x0a", -}; -static - struct _PyCode_DEF(134) -os_toplevel_consts_103_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 67, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 732, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_103_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__ror__), - .co_qualname = & os_toplevel_consts_103_consts_12_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x07\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -os_toplevel_consts_103_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - & const_str__Environ._ascii.ob_base, - & os_toplevel_consts_103_consts_1.ob_base.ob_base, - & os_toplevel_consts_103_consts_2.ob_base.ob_base, - & os_toplevel_consts_103_consts_3.ob_base.ob_base, - & os_toplevel_consts_103_consts_4.ob_base.ob_base, - & os_toplevel_consts_103_consts_5.ob_base.ob_base, - & os_toplevel_consts_103_consts_6.ob_base.ob_base, - & os_toplevel_consts_103_consts_7.ob_base.ob_base, - & os_toplevel_consts_103_consts_8.ob_base.ob_base, - & os_toplevel_consts_103_consts_9.ob_base.ob_base, - & os_toplevel_consts_103_consts_10.ob_base.ob_base, - & os_toplevel_consts_103_consts_11.ob_base.ob_base, - & os_toplevel_consts_103_consts_12.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -os_toplevel_consts_103_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__init__), - &_Py_ID(__getitem__), - &_Py_ID(__setitem__), - &_Py_ID(__delitem__), - &_Py_ID(__iter__), - &_Py_ID(__len__), - &_Py_ID(__repr__), - &_Py_ID(copy), - & const_str_setdefault._ascii.ob_base, - &_Py_ID(__ior__), - &_Py_ID(__or__), - &_Py_ID(__ror__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[201]; - } -os_toplevel_consts_103_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 200, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x05\x05\x1a\xf0\x00\x05\x05\x1a\xf0\x00\x05\x05\x1a\xf0\x0e\x06\x05\x27\xf0\x00\x06\x05\x27\xf0\x00\x06\x05\x27\xf0\x10\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x00\x04\x05\x20\xf0\x0c\x07\x05\x2a\xf0\x00\x07\x05\x2a\xf0\x00\x07\x05\x2a\xf0\x12\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x00\x04\x05\x26\xf0\x0c\x01\x05\x1f\xf0\x00\x01\x05\x1f\xf0\x00\x01\x05\x1f\xf0\x06\x05\x05\x31\xf0\x00\x05\x05\x31\xf0\x00\x05\x05\x31\xf0\x0e\x01\x05\x1a\xf0\x00\x01\x05\x1a\xf0\x00\x01\x05\x1a\xf0\x06\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x00\x03\x05\x19\xf0\x0a\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x00\x02\x05\x14\xf0\x08\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x0e\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13\xf0\x00\x05\x05\x13", -}; -static - struct _PyCode_DEF(86) -os_toplevel_consts_103 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 43, - }, - .co_consts = & os_toplevel_consts_103_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_103_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 666, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__Environ._ascii.ob_base, - .co_qualname = & const_str__Environ._ascii.ob_base, - .co_linetable = & os_toplevel_consts_103_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x84\x00\x5a\x09\x64\x08\x84\x00\x5a\x0a\x64\x09\x84\x00\x5a\x0b\x64\x0a\x84\x00\x5a\x0c\x64\x0b\x84\x00\x5a\x0d\x64\x0c\x84\x00\x5a\x0e\x64\x0d\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -os_toplevel_consts_105_consts_2_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "str expected, not %s", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_105_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_105_consts_2_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_105_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_str._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_check_str = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "check_str", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -os_toplevel_consts_105_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_createenviron..check_str", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[56]; - } -os_toplevel_consts_105_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 55, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x13\x1d\x98\x65\xa5\x53\xd1\x13\x29\xd4\x13\x29\xf0\x00\x01\x0d\x4f\x01\xdd\x16\x1f\xd0\x20\x36\xbd\x14\xb8\x65\xb9\x1b\xbc\x1b\xd4\x39\x4d\xd1\x20\x4d\xd1\x16\x4e\xd4\x16\x4e\xd0\x10\x4e\xd8\x13\x18\x88\x4c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_105_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(120) -os_toplevel_consts_105_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 60, - }, - .co_consts = & os_toplevel_consts_105_consts_2_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_105_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 742, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_105_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_check_str._ascii.ob_base, - .co_qualname = & os_toplevel_consts_105_consts_2_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_105_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_105_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_upper._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -os_toplevel_consts_105_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_createenviron..encodekey", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[30]; - } -os_toplevel_consts_105_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 29, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd8\x13\x19\x90\x36\x98\x23\x91\x3b\x94\x3b\xd7\x13\x24\xd2\x13\x24\xd1\x13\x26\xd4\x13\x26\xd0\x0c\x26", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_105_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_key._ascii.ob_base, - &_Py_ID(encode), - }, - }, -}; -static - struct _PyCode_DEF(62) -os_toplevel_consts_105_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 31, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_105_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 748, - .co_nlocalsplus = 2, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & os_toplevel_consts_105_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_encodekey._ascii.ob_base, - .co_qualname = & os_toplevel_consts_105_consts_3_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_105_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x02\x00\x89\x01\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_105_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_105_consts_2_consts_1._ascii.ob_base, - & const_str_surrogateescape._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -os_toplevel_consts_105_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_str._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__name__), - &_Py_ID(encode), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -os_toplevel_consts_105_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_createenviron..encode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[73]; - } -os_toplevel_consts_105_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 72, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xdd\x13\x1d\x98\x65\xa5\x53\xd1\x13\x29\xd4\x13\x29\xf0\x00\x01\x0d\x4f\x01\xdd\x16\x1f\xd0\x20\x36\xbd\x14\xb8\x65\xb9\x1b\xbc\x1b\xd4\x39\x4d\xd1\x20\x4d\xd1\x16\x4e\xd4\x16\x4e\xd0\x10\x4e\xd8\x13\x18\x97\x3c\x92\x3c\xa0\x08\xd0\x2a\x3b\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_105_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_value._ascii.ob_base, - &_Py_ID(encoding), - }, - }, -}; -static - struct _PyCode_DEF(162) -os_toplevel_consts_105_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 81, - }, - .co_consts = & os_toplevel_consts_105_consts_4_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_105_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 756, - .co_nlocalsplus = 2, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & os_toplevel_consts_105_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(encode), - .co_qualname = & os_toplevel_consts_105_consts_4_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_105_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_105_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & const_str_surrogateescape._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_105_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(decode), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -os_toplevel_consts_105_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_createenviron..decode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -os_toplevel_consts_105_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xd8\x13\x18\x97\x3c\x92\x3c\xa0\x08\xd0\x2a\x3b\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c", -}; -static - struct _PyCode_DEF(48) -os_toplevel_consts_105_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & os_toplevel_consts_105_consts_5_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_105_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 760, - .co_nlocalsplus = 2, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & os_toplevel_consts_105_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & _collections_abc_toplevel_consts_44_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(decode), - .co_qualname = & os_toplevel_consts_105_consts_5_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_105_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -os_toplevel_consts_105_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - Py_None, - & const_str_nt._ascii.ob_base, - & os_toplevel_consts_105_consts_2.ob_base.ob_base, - & os_toplevel_consts_105_consts_3.ob_base.ob_base, - & os_toplevel_consts_105_consts_4.ob_base.ob_base, - & os_toplevel_consts_105_consts_5.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -os_toplevel_consts_105_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(name), - & const_str_str._ascii.ob_base, - & const_str_environ._ascii.ob_base, - &_Py_ID(items), - & const_str_sys._ascii.ob_base, - & const_str_getfilesystemencoding._ascii.ob_base, - & const_str__Environ._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__createenviron = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_createenviron", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[230]; - } -os_toplevel_consts_105_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 229, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xf8\x80\x00\xdd\x07\x0b\x88\x74\x82\x7c\x80\x7c\xf0\x04\x03\x09\x19\xf0\x00\x03\x09\x19\xf0\x00\x03\x09\x19\xf0\x08\x00\x12\x1b\x88\x06\xdd\x11\x14\x88\x06\xf0\x02\x01\x09\x27\xf0\x00\x01\x09\x27\xf0\x00\x01\x09\x27\xf0\x00\x01\x09\x27\xf0\x00\x01\x09\x27\xe0\x0f\x11\x88\x04\xdd\x1a\x21\x9f\x2d\x9a\x2d\x99\x2f\x9c\x2f\xf0\x00\x01\x09\x29\xf0\x00\x01\x09\x29\x89\x4a\x88\x43\x90\x15\xd8\x23\x28\x88\x44\x90\x19\x90\x19\x98\x33\x91\x1e\x94\x1e\xd1\x0c\x20\xd0\x0c\x20\xf0\x03\x01\x09\x29\xf5\x08\x00\x14\x17\xd4\x13\x2c\xd1\x13\x2e\xd4\x13\x2e\x88\x08\xf0\x02\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x00\x03\x09\x3d\xf0\x08\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xe0\x14\x1a\x88\x09\xdd\x0f\x16\x88\x04\xdd\x0b\x13\x90\x44\xd8\x08\x11\x90\x36\xd8\x08\x0e\x90\x06\xf1\x05\x02\x0c\x18\xf4\x00\x02\x0c\x18\xf0\x00\x02\x05\x18", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -os_toplevel_consts_105_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_check_str._ascii.ob_base, - &_Py_ID(decode), - & const_str_encodekey._ascii.ob_base, - & const_str_data._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_value._ascii.ob_base, - &_Py_ID(encode), - &_Py_ID(encoding), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[9]; - } -os_toplevel_consts_105_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 8, - }, - .ob_shash = -1, - .ob_sval = " @@", -}; -static - struct _PyCode_DEF(272) -os_toplevel_consts_105 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 136, - }, - .co_consts = & os_toplevel_consts_105_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_105_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 739, - .co_nlocalsplus = 8, - .co_nlocals = 6, - .co_nplaincellvars = 2, - .co_ncellvars = 2, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_105_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & os_toplevel_consts_105_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__createenviron._ascii.ob_base, - .co_qualname = & const_str__createenviron._ascii.ob_base, - .co_linetable = & os_toplevel_consts_105_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x06\x87\x07\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x41\x64\x02\x84\x00\x7d\x00\x7c\x00\x8a\x06\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x88\x06\x66\x01\x64\x03\x84\x08\x7d\x02\x69\x00\x7d\x03\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x13\x5c\x02\x00\x00\x7d\x04\x7d\x05\x7c\x05\x7c\x03\x02\x00\x7c\x02\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x8c\x14\x6e\x26\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x07\x88\x07\x66\x01\x64\x04\x84\x08\x8a\x06\x88\x07\x66\x01\x64\x05\x84\x08\x7d\x01\x89\x06\x7d\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x02\x7c\x01\x89\x06\x7c\x01\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[170]; - } -os_toplevel_consts_106_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 169, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x47\x65\x74\x20\x61\x6e\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x4e\x6f\x6e\x65\x20\x69\x66\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x65\x78\x69\x73\x74\x2e\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x73\x65\x63\x6f\x6e\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x6e\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x0a\x20\x20\x20\x20\x6b\x65\x79\x2c\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x20\x61\x72\x65\x20\x73\x74\x72\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_106_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_106_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_106_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_environ._ascii.ob_base, - &_Py_ID(get), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_getenv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getenv", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -os_toplevel_consts_106_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x08\x00\x0c\x13\x8f\x3b\x8a\x3b\x90\x73\x98\x47\xd1\x0b\x24\xd4\x0b\x24\xd0\x04\x24", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_106_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_key._ascii.ob_base, - &_Py_ID(default), - }, - }, -}; -static - struct _PyCode_DEF(56) -os_toplevel_consts_106 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & os_toplevel_consts_106_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_106_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 773, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_106_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getenv._ascii.ob_base, - .co_qualname = & const_str_getenv._ascii.ob_base, - .co_linetable = & os_toplevel_consts_106_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_107 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_getenv._ascii.ob_base, - & const_str_supports_bytes_environ._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -os_toplevel_consts_108_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bytes expected, not %s", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_108_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_108_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_108_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str__check_bytes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_check_bytes", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[56]; - } -os_toplevel_consts_108_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 55, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x25\xa5\x15\xd1\x0f\x27\xd4\x0f\x27\xf0\x00\x01\x09\x4d\x01\xdd\x12\x1b\xd0\x1c\x34\xb5\x74\xb8\x45\xb1\x7b\xb4\x7b\xd4\x37\x4b\xd1\x1c\x4b\xd1\x12\x4c\xd4\x12\x4c\xd0\x0c\x4c\xd8\x0f\x14\x88\x0c", -}; -static - struct _PyCode_DEF(120) -os_toplevel_consts_108 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 60, - }, - .co_consts = & os_toplevel_consts_108_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_108_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 783, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_105_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__check_bytes._ascii.ob_base, - .co_qualname = & const_str__check_bytes._ascii.ob_base, - .co_linetable = & os_toplevel_consts_108_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x24\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[180]; - } -os_toplevel_consts_109_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 179, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x47\x65\x74\x20\x61\x6e\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x4e\x6f\x6e\x65\x20\x69\x66\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x65\x78\x69\x73\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x65\x20\x6f\x70\x74\x69\x6f\x6e\x61\x6c\x20\x73\x65\x63\x6f\x6e\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x63\x61\x6e\x20\x73\x70\x65\x63\x69\x66\x79\x20\x61\x6e\x20\x61\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x6b\x65\x79\x2c\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x20\x61\x72\x65\x20\x62\x79\x74\x65\x73\x2e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_109_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_109_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_109_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_environb._ascii.ob_base, - &_Py_ID(get), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_getenvb = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getenvb", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -os_toplevel_consts_109_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x08\x00\x10\x18\x8f\x7c\x8a\x7c\x98\x43\xa0\x17\xd1\x0f\x29\xd4\x0f\x29\xd0\x08\x29", -}; -static - struct _PyCode_DEF(56) -os_toplevel_consts_109 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 28, - }, - .co_consts = & os_toplevel_consts_109_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_109_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 794, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_106_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_getenvb._ascii.ob_base, - .co_qualname = & const_str_getenvb._ascii.ob_base, - .co_linetable = & os_toplevel_consts_109_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_110 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_environb._ascii.ob_base, - & const_str_getenvb._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[280]; - } -os_toplevel_consts_111_consts_1_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 279, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x6e\x63\x6f\x64\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x28\x61\x6e\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x2c\x20\x62\x79\x74\x65\x73\x2c\x20\x6f\x72\x20\x73\x74\x72\x29\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x27\x73\x75\x72\x72\x6f\x67\x61\x74\x65\x65\x73\x63\x61\x70\x65\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x62\x79\x74\x65\x73\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x4f\x6e\x20\x57\x69\x6e\x64\x6f\x77\x73\x2c\x20\x75\x73\x65\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x73\x79\x73\x74\x65\x6d\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6d\x62\x63\x73\x27\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_111_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_111_consts_1_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_111_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_str._ascii.ob_base, - &_Py_ID(encode), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -os_toplevel_consts_111_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_fscodec..fsencode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[62]; - } -os_toplevel_consts_111_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 61, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x14\x1a\x98\x28\xd1\x13\x23\xd4\x13\x23\x88\x08\xdd\x0b\x15\x90\x68\xa5\x03\xd1\x0b\x24\xd4\x0b\x24\xf0\x00\x03\x09\x1c\xd8\x13\x1b\x97\x3f\x92\x3f\xa0\x38\xa8\x56\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34\xe0\x13\x1b\x88\x4f", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_111_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(filename), - &_Py_ID(encoding), - &_Py_ID(errors), - }, - }, -}; -static - struct _PyCode_DEF(124) -os_toplevel_consts_111_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 62, - }, - .co_consts = & os_toplevel_consts_111_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_111_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 806, - .co_nlocalsplus = 3, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 2, - .co_localsplusnames = & os_toplevel_consts_111_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_fsencode._ascii.ob_base, - .co_qualname = & os_toplevel_consts_111_consts_1_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_111_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x02\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x16\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x89\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[280]; - } -os_toplevel_consts_111_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 279, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x65\x63\x6f\x64\x65\x20\x66\x69\x6c\x65\x6e\x61\x6d\x65\x20\x28\x61\x6e\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x2c\x20\x62\x79\x74\x65\x73\x2c\x20\x6f\x72\x20\x73\x74\x72\x29\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x27\x73\x75\x72\x72\x6f\x67\x61\x74\x65\x65\x73\x63\x61\x70\x65\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x2c\x20\x72\x65\x74\x75\x72\x6e\x20\x73\x74\x72\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e\x20\x4f\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x57\x69\x6e\x64\x6f\x77\x73\x2c\x20\x75\x73\x65\x20\x27\x73\x74\x72\x69\x63\x74\x27\x20\x65\x72\x72\x6f\x72\x20\x68\x61\x6e\x64\x6c\x65\x72\x20\x69\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x20\x73\x79\x73\x74\x65\x6d\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x20\x69\x73\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x27\x6d\x62\x63\x73\x27\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x29\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_111_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_111_consts_2_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_111_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_fspath._ascii.ob_base, - &_Py_ID(isinstance), - & const_str_bytes._ascii.ob_base, - &_Py_ID(decode), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -os_toplevel_consts_111_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_fscodec..fsdecode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[62]; - } -os_toplevel_consts_111_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 61, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x14\x1a\x98\x28\xd1\x13\x23\xd4\x13\x23\x88\x08\xdd\x0b\x15\x90\x68\xa5\x05\xd1\x0b\x26\xd4\x0b\x26\xf0\x00\x03\x09\x1c\xd8\x13\x1b\x97\x3f\x92\x3f\xa0\x38\xa8\x56\xd1\x13\x34\xd4\x13\x34\xd0\x0c\x34\xe0\x13\x1b\x88\x4f", -}; -static - struct _PyCode_DEF(124) -os_toplevel_consts_111_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 62, - }, - .co_consts = & os_toplevel_consts_111_consts_2_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_111_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 818, - .co_nlocalsplus = 3, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 2, - .co_localsplusnames = & os_toplevel_consts_111_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_fsdecode._ascii.ob_base, - .co_qualname = & os_toplevel_consts_111_consts_2_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_111_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x02\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x16\x7c\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\x89\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_111_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_111_consts_1.ob_base.ob_base, - & os_toplevel_consts_111_consts_2.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -const_str_getfilesystemencodeerrors = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getfilesystemencodeerrors", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_111_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_getfilesystemencoding._ascii.ob_base, - & const_str_getfilesystemencodeerrors._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str__fscodec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_fscodec", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[106]; - } -os_toplevel_consts_111_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 105, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xf8\x80\x00\xdd\x0f\x12\xd4\x0f\x28\xd1\x0f\x2a\xd4\x0f\x2a\x80\x48\xdd\x0d\x10\xd4\x0d\x2a\xd1\x0d\x2c\xd4\x0d\x2c\x80\x46\xf0\x04\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x18\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x00\x0a\x05\x1c\xf0\x18\x00\x0c\x14\x90\x58\xd0\x0b\x1d\xd0\x04\x1d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_111_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_fsencode._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - &_Py_ID(encoding), - &_Py_ID(errors), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[5]; - } -os_toplevel_consts_111_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 4, - }, - .ob_shash = -1, - .ob_sval = " @@", -}; -static - struct _PyCode_DEF(114) -os_toplevel_consts_111 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 57, - }, - .co_consts = & os_toplevel_consts_111_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_111_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 802, - .co_nlocalsplus = 4, - .co_nlocals = 2, - .co_nplaincellvars = 2, - .co_ncellvars = 2, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_111_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & os_toplevel_consts_111_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__fscodec._ascii.ob_base, - .co_qualname = & const_str__fscodec._ascii.ob_base, - .co_linetable = & os_toplevel_consts_111_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x02\x87\x03\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x02\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x03\x88\x02\x88\x03\x66\x02\x64\x01\x84\x08\x7d\x00\x88\x02\x88\x03\x66\x02\x64\x02\x84\x08\x7d\x01\x7c\x00\x7c\x01\x66\x02\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_fork = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fork", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_spawnv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnv", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_P_WAIT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "P_WAIT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_P_NOWAIT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "P_NOWAIT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_P_NOWAITO = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "P_NOWAITO", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_115 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_P_WAIT._ascii.ob_base, - & const_str_P_NOWAIT._ascii.ob_base, - & const_str_P_NOWAITO._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -os_toplevel_consts_116_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "argv must be a tuple or a list", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[35]; - } -os_toplevel_consts_116_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 34, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "argv first element cannot be empty", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_116_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_116_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & os_toplevel_consts_116_consts_3._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 127], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_waitpid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "waitpid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_WIFSTOPPED = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "WIFSTOPPED", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str_waitstatus_to_exitcode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "waitstatus_to_exitcode", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -os_toplevel_consts_116_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_tuple._ascii.ob_base, - & const_str_list._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_fork._ascii.ob_base, - & const_str__exit._ascii.ob_base, - & const_str_P_NOWAIT._ascii.ob_base, - & const_str_waitpid._ascii.ob_base, - & const_str_WIFSTOPPED._ascii.ob_base, - & const_str_waitstatus_to_exitcode._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__spawnvef = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_spawnvef", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[255]; - } -os_toplevel_consts_116_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 254, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x19\x98\x24\xa5\x15\xad\x04\xa0\x0d\xd1\x0f\x2e\xd4\x0f\x2e\xf0\x00\x01\x09\x3e\xdd\x12\x1b\xd0\x1c\x3c\xd1\x12\x3d\xd4\x12\x3d\xd0\x0c\x3d\xd8\x0f\x13\xf0\x00\x01\x09\x43\x01\x98\x34\xa0\x01\x9c\x37\xf0\x00\x01\x09\x43\x01\xdd\x12\x1c\xd0\x1d\x41\xd1\x12\x42\xd4\x12\x42\xd0\x0c\x42\xdd\x0e\x12\x89\x66\x8c\x66\x88\x03\xd8\x0f\x12\xf0\x00\x12\x09\x33\xf0\x04\x06\x0d\x1b\xd8\x13\x16\x90\x3b\xd8\x14\x18\x90\x44\x98\x14\x98\x74\xd1\x14\x24\xd4\x14\x24\xd0\x14\x24\xd0\x14\x24\xe0\x14\x18\x90\x44\x98\x14\x98\x74\xa0\x53\xd1\x14\x29\xd4\x14\x29\xd0\x14\x29\xd0\x14\x29\xd0\x14\x29\xf0\x05\x00\x15\x25\xd0\x14\x24\xf8\xf0\x06\x01\x0d\x1b\xdd\x10\x15\x90\x63\x91\x0a\x94\x0a\x90\x0a\x90\x0a\x90\x0a\x90\x0a\xf8\xf8\xf8\xf0\x06\x00\x10\x14\x95\x78\xd2\x0f\x1f\xd0\x0f\x1f\xd8\x17\x1a\x90\x0a\xf0\x02\x05\x0d\x33\xdd\x1c\x23\xa0\x43\xa8\x11\x99\x4f\x9c\x4f\x91\x09\x90\x04\x90\x63\xdd\x13\x1d\x98\x63\x91\x3f\x94\x3f\xf0\x00\x01\x11\x1d\xd8\x14\x1c\xe5\x17\x2d\xa8\x63\xd1\x17\x32\xd4\x17\x32\xd0\x10\x32", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -os_toplevel_consts_116_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x16\x1c\x41\x36\x00\xc1\x36\x11\x42\x0a\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_func = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "func", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_pid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_wpid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "wpid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_sts = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sts", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -os_toplevel_consts_116_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(mode), - & const_str_file._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_env._ascii.ob_base, - & const_str_func._ascii.ob_base, - & const_str_pid._ascii.ob_base, - & const_str_wpid._ascii.ob_base, - & const_str_sts._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(410) -os_toplevel_consts_116 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 205, - }, - .co_consts = & os_toplevel_consts_116_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_116_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_116_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 5, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 847, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_116_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__spawnvef._ascii.ob_base, - .co_qualname = & const_str__spawnvef._ascii.ob_base, - .co_linetable = & os_toplevel_consts_116_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x02\x72\x08\x7c\x02\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x73\x38\x09\x00\x7c\x03\x80\x0d\x02\x00\x7c\x04\x7c\x01\x7c\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0f\x02\x00\x7c\x04\x7c\x01\x7c\x02\x7c\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00\x23\x00\x01\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x00\x53\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x05\x53\x00\x09\x00\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x06\x7d\x07\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x01\x8c\x24\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[278]; - } -os_toplevel_consts_117_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 277, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x76\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_117_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_117_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_117_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__spawnvef._ascii.ob_base, - & const_str_execv._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -os_toplevel_consts_117_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0e\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x34\xb5\x15\xd1\x0f\x37\xd4\x0f\x37\xd0\x08\x37", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_117_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(mode), - & const_str_file._ascii.ob_base, - & const_str_args._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(50) -os_toplevel_consts_117 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & os_toplevel_consts_117_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_117_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 874, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnv._ascii.ob_base, - .co_qualname = & const_str_spawnv._ascii.ob_base, - .co_linetable = & os_toplevel_consts_117_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[315]; - } -os_toplevel_consts_118_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 314, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x76\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_118_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_118_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_118_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__spawnvef._ascii.ob_base, - & const_str_execve._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_spawnve = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnve", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -os_toplevel_consts_118_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x33\xb5\x06\xd1\x0f\x37\xd4\x0f\x37\xd0\x08\x37", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_118_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(mode), - & const_str_file._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_env._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(50) -os_toplevel_consts_118 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & os_toplevel_consts_118_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_118_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 883, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnve._ascii.ob_base, - .co_qualname = & const_str_spawnve._ascii.ob_base, - .co_linetable = & os_toplevel_consts_118_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[313]; - } -os_toplevel_consts_119_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 312, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x76\x70\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_119_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & os_toplevel_consts_119_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_119_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__spawnvef._ascii.ob_base, - & const_str_execvp._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_spawnvp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnvp", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -os_toplevel_consts_119_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x34\xb5\x16\xd1\x0f\x38\xd4\x0f\x38\xd0\x08\x38", -}; -static - struct _PyCode_DEF(50) -os_toplevel_consts_119 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & os_toplevel_consts_119_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_119_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 895, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnvp._ascii.ob_base, - .co_qualname = & const_str_spawnvp._ascii.ob_base, - .co_linetable = & os_toplevel_consts_119_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[349]; - } -os_toplevel_consts_120_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 348, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x76\x70\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_120_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_120_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_120_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__spawnvef._ascii.ob_base, - & const_str_execvpe._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_spawnvpe = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnvpe", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[27]; - } -os_toplevel_consts_120_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 26, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x10\x19\x98\x14\x98\x74\xa0\x54\xa8\x33\xb5\x07\xd1\x0f\x38\xd4\x0f\x38\xd0\x08\x38", -}; -static - struct _PyCode_DEF(50) -os_toplevel_consts_120 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & os_toplevel_consts_120_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_120_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 905, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnvpe._ascii.ob_base, - .co_qualname = & const_str_spawnvpe._ascii.ob_base, - .co_linetable = & os_toplevel_consts_120_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_121 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_spawnv._ascii.ob_base, - & const_str_spawnve._ascii.ob_base, - & const_str_spawnvp._ascii.ob_base, - & const_str_spawnvpe._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[279]; - } -os_toplevel_consts_122_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 278, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x6c\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_122_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_122_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_122_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_spawnv._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_spawnl = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnl", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -os_toplevel_consts_122_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0e\x00\x10\x16\x90\x64\x98\x44\xa0\x24\xd1\x0f\x27\xd4\x0f\x27\xd0\x08\x27", -}; -static - struct _PyCode_DEF(36) -os_toplevel_consts_122 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & os_toplevel_consts_122_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_122_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 923, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnl._ascii.ob_base, - .co_qualname = & const_str_spawnl._ascii.ob_base, - .co_linetable = & os_toplevel_consts_122_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[315]; - } -os_toplevel_consts_123_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 314, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x6c\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_123_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & os_toplevel_consts_123_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_123_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_spawnve._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_spawnle = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnle", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[42]; - } -os_toplevel_consts_123_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 41, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x10\x00\x0f\x13\x90\x32\x8c\x68\x88\x03\xdd\x0f\x16\x90\x74\x98\x54\xa0\x34\xa8\x03\xa8\x12\xa8\x03\xa4\x39\xa8\x63\xd1\x0f\x32\xd4\x0f\x32\xd0\x08\x32", -}; -static - struct _PyCode_DEF(70) -os_toplevel_consts_123 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 35, - }, - .co_consts = & os_toplevel_consts_123_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_123_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 932, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnle._ascii.ob_base, - .co_qualname = & const_str_spawnle._ascii.ob_base, - .co_linetable = & os_toplevel_consts_123_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[344]; - } -os_toplevel_consts_127_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 343, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x6c\x70\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_127_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_127_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_127_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_spawnvp._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_spawnlp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnlp", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -os_toplevel_consts_127_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x10\x17\x90\x74\x98\x54\xa0\x34\xd1\x0f\x28\xd4\x0f\x28\xd0\x08\x28", -}; -static - struct _PyCode_DEF(36) -os_toplevel_consts_127 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & os_toplevel_consts_127_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_127_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 950, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_117_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnlp._ascii.ob_base, - .co_qualname = & const_str_spawnlp._ascii.ob_base, - .co_linetable = & os_toplevel_consts_127_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[350]; - } -os_toplevel_consts_128_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 349, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x73\x70\x61\x77\x6e\x6c\x70\x65\x28\x6d\x6f\x64\x65\x2c\x20\x66\x69\x6c\x65\x2c\x20\x2a\x61\x72\x67\x73\x2c\x20\x65\x6e\x76\x29\x20\x2d\x3e\x20\x69\x6e\x74\x65\x67\x65\x72\x0a\x0a\x45\x78\x65\x63\x75\x74\x65\x20\x66\x69\x6c\x65\x20\x28\x77\x68\x69\x63\x68\x20\x69\x73\x20\x6c\x6f\x6f\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x6c\x6f\x6e\x67\x20\x24\x50\x41\x54\x48\x29\x20\x77\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x66\x72\x6f\x6d\x0a\x61\x72\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x75\x62\x70\x72\x6f\x63\x65\x73\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x75\x70\x70\x6c\x69\x65\x64\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x4e\x4f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x69\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x2e\x0a\x49\x66\x20\x6d\x6f\x64\x65\x20\x3d\x3d\x20\x50\x5f\x57\x41\x49\x54\x20\x72\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x63\x65\x73\x73\x27\x73\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x20\x69\x66\x20\x69\x74\x20\x65\x78\x69\x74\x73\x20\x6e\x6f\x72\x6d\x61\x6c\x6c\x79\x3b\x0a\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x72\x65\x74\x75\x72\x6e\x20\x2d\x53\x49\x47\x2c\x20\x77\x68\x65\x72\x65\x20\x53\x49\x47\x20\x69\x73\x20\x74\x68\x65\x20\x73\x69\x67\x6e\x61\x6c\x20\x74\x68\x61\x74\x20\x6b\x69\x6c\x6c\x65\x64\x20\x69\x74\x2e\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_128_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & os_toplevel_consts_128_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_128_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_spawnvpe._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_spawnlpe = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "spawnlpe", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[42]; - } -os_toplevel_consts_128_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 41, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x10\x00\x0f\x13\x90\x32\x8c\x68\x88\x03\xdd\x0f\x17\x98\x04\x98\x64\xa0\x44\xa8\x13\xa8\x22\xa8\x13\xa4\x49\xa8\x73\xd1\x0f\x33\xd4\x0f\x33\xd0\x08\x33", -}; -static - struct _PyCode_DEF(70) -os_toplevel_consts_128 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 35, - }, - .co_consts = & os_toplevel_consts_128_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_128_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 960, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_118_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_spawnlpe._ascii.ob_base, - .co_qualname = & const_str_spawnlpe._ascii.ob_base, - .co_linetable = & os_toplevel_consts_128_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x64\x02\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -os_toplevel_consts_134_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "invalid cmd type (%s, expected string)", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_w = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "w", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_134_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_r._ascii.ob_base, - & const_str_w._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -os_toplevel_consts_134_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "invalid mode %r", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[44]; - } -os_toplevel_consts_134_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 43, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "popen() does not support unbuffered streams", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_shell = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "shell", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_bufsize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bufsize", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_134_consts_8 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_shell._ascii.ob_base, - &_Py_ID(text), - &_Py_ID(stdout), - & const_str_bufsize._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_134_consts_9 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_shell._ascii.ob_base, - &_Py_ID(text), - &_Py_ID(stdin), - & const_str_bufsize._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -os_toplevel_consts_134_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_134_consts_1._ascii.ob_base, - & os_toplevel_consts_134_consts_2._object.ob_base.ob_base, - & os_toplevel_consts_134_consts_3._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & os_toplevel_consts_134_consts_5._ascii.ob_base, - & const_str_r._ascii.ob_base, - Py_True, - & os_toplevel_consts_134_consts_8._object.ob_base.ob_base, - & os_toplevel_consts_134_consts_9._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_subprocess = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "subprocess", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_Popen = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Popen", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_PIPE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "PIPE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str__wrap_close = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap_close", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -os_toplevel_consts_134_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_str._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_type._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_subprocess._ascii.ob_base, - & const_str_Popen._ascii.ob_base, - & const_str_PIPE._ascii.ob_base, - & const_str__wrap_close._ascii.ob_base, - &_Py_ID(stdout), - &_Py_ID(stdin), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_popen = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "popen", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[251]; - } -os_toplevel_consts_134_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 250, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x19\x98\x23\x9d\x73\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x01\x09\x52\x01\xdd\x12\x1b\xd0\x1c\x44\xc5\x74\xc8\x43\xc1\x79\xc4\x79\xd1\x1c\x50\xd1\x12\x51\xd4\x12\x51\xd0\x0c\x51\xd8\x0b\x0f\x90\x7a\xd0\x0b\x21\xd0\x0b\x21\xdd\x12\x1c\xd0\x1d\x2e\xb0\x14\xd1\x1d\x35\xd1\x12\x36\xd4\x12\x36\xd0\x0c\x36\xd8\x0b\x14\x98\x01\x8a\x3e\x88\x3e\x98\x59\xd0\x1d\x2e\xdd\x12\x1c\xd0\x1d\x4a\xd1\x12\x4b\xd4\x12\x4b\xd0\x0c\x4b\xd8\x08\x19\xd0\x08\x19\xd0\x08\x19\xd0\x08\x19\xd8\x0b\x0f\x90\x33\x8a\x3b\x88\x3b\xd8\x13\x1d\xd7\x13\x23\xd2\x13\x23\xa0\x43\xd8\x2a\x2e\xb0\x54\xd8\x2b\x35\xac\x3f\xd8\x2c\x35\xf0\x07\x00\x14\x24\xf1\x00\x03\x14\x37\xf4\x00\x03\x14\x37\x88\x44\xf5\x08\x00\x14\x1f\x98\x74\x9c\x7b\xa8\x44\xd1\x13\x31\xd4\x13\x31\xd0\x0c\x31\xe0\x13\x1d\xd7\x13\x23\xd2\x13\x23\xa0\x43\xd8\x2a\x2e\xb0\x54\xd8\x2a\x34\xac\x2f\xd8\x2c\x35\xf0\x07\x00\x14\x24\xf1\x00\x03\x14\x37\xf4\x00\x03\x14\x37\x88\x44\xf5\x08\x00\x14\x1f\x98\x74\x9c\x7a\xa8\x34\xd1\x13\x30\xd4\x13\x30\xd0\x0c\x30", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_cmd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cmd", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_proc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "proc", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_134_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_cmd._ascii.ob_base, - &_Py_ID(mode), - & const_str_buffering._ascii.ob_base, - & const_str_subprocess._ascii.ob_base, - & const_str_proc._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(424) -os_toplevel_consts_134 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 212, - }, - .co_consts = & os_toplevel_consts_134_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_134_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 978, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_134_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_popen._ascii.ob_base, - .co_qualname = & const_str_popen._ascii.ob_base, - .co_linetable = & os_toplevel_consts_134_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x01\x64\x02\x76\x01\x72\x12\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7c\x01\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x02\x64\x04\x6b\x02\x00\x00\x00\x00\x73\x02\x7c\x02\x80\x0f\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x04\x64\x00\x6c\x05\x7d\x03\x7c\x01\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x34\x7c\x03\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x07\x64\x07\x7c\x03\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xac\x08\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x7c\x03\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x07\x64\x07\x7c\x03\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xac\x09\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__stream = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_stream", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__proc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_proc", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_135_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__stream._ascii.ob_base, - & const_str__proc._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -os_toplevel_consts_135_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap_close.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -os_toplevel_consts_135_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x1b\x21\x88\x44\x8c\x4c\xd8\x19\x1d\x88\x44\x8c\x4a\x88\x4a\x88\x4a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_135_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_stream._ascii.ob_base, - & const_str_proc._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(34) -os_toplevel_consts_135_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 17, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_135_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1001, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_135_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & os_toplevel_consts_135_consts_1_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_135_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & const_str_nt._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_wait = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "wait", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_135_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__stream._ascii.ob_base, - &_Py_ID(close), - & const_str__proc._ascii.ob_base, - & const_str_wait._ascii.ob_base, - &_Py_ID(name), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -os_toplevel_consts_135_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap_close.close", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[79]; - } -os_toplevel_consts_135_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 78, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0c\x10\x8c\x4c\xd7\x0c\x1e\xd2\x0c\x1e\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd8\x19\x1d\x9c\x1a\x9f\x1f\x9a\x1f\xd1\x19\x2a\xd4\x19\x2a\x88\x4a\xd8\x0f\x19\x98\x51\x8a\x7f\x88\x7f\xd8\x17\x1b\x90\x74\xdd\x0f\x13\x90\x74\x8a\x7c\x88\x7c\xd8\x17\x21\xd0\x10\x21\xe0\x17\x21\xa0\x51\x91\x7f\xd0\x10\x26", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_returncode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "returncode", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_135_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_returncode._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(154) -os_toplevel_consts_135_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 77, - }, - .co_consts = & os_toplevel_consts_135_consts_2_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_135_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1004, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_135_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(close), - .co_qualname = & os_toplevel_consts_135_consts_2_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x00\x53\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x02\x7c\x01\x53\x00\x7c\x01\x64\x03\x7a\x03\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -os_toplevel_consts_135_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap_close.__enter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -os_toplevel_consts_135_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x13\x17\x88\x4b", -}; -static - struct _PyCode_DEF(6) -os_toplevel_consts_135_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1013, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & os_toplevel_consts_135_consts_3_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_135_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(close), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -os_toplevel_consts_135_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap_close.__exit__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -os_toplevel_consts_135_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0c\x10\x8f\x4a\x8a\x4a\x89\x4c\x8c\x4c\x88\x4c\x88\x4c\x88\x4c", -}; -static - struct _PyCode_DEF(46) -os_toplevel_consts_135_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 23, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_135_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1015, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & os_toplevel_consts_135_consts_4_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_135_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(getattr), - & const_str__stream._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -os_toplevel_consts_135_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap_close.__getattr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -os_toplevel_consts_135_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x13\x1a\x98\x34\x9c\x3c\xa8\x14\xd1\x13\x2e\xd4\x13\x2e\xd0\x0c\x2e", -}; -static - struct _PyCode_DEF(44) -os_toplevel_consts_135_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_135_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1017, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__getattr__), - .co_qualname = & os_toplevel_consts_135_consts_5_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_135_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(iter), - & const_str__stream._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -os_toplevel_consts_135_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_wrap_close.__iter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -os_toplevel_consts_135_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x13\x17\x98\x04\x9c\x0c\xd1\x13\x25\xd4\x13\x25\xd0\x0c\x25", -}; -static - struct _PyCode_DEF(42) -os_toplevel_consts_135_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 21, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_135_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1019, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__iter__), - .co_qualname = & os_toplevel_consts_135_consts_6_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -os_toplevel_consts_135_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str__wrap_close._ascii.ob_base, - & os_toplevel_consts_135_consts_1.ob_base.ob_base, - & os_toplevel_consts_135_consts_2.ob_base.ob_base, - & os_toplevel_consts_135_consts_3.ob_base.ob_base, - & os_toplevel_consts_135_consts_4.ob_base.ob_base, - & os_toplevel_consts_135_consts_5.ob_base.ob_base, - & os_toplevel_consts_135_consts_6.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -os_toplevel_consts_135_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__init__), - &_Py_ID(close), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - &_Py_ID(__getattr__), - &_Py_ID(__iter__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[111]; - } -os_toplevel_consts_135_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 110, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x09\x1e\xf0\x00\x02\x09\x1e\xf0\x00\x02\x09\x1e\xf0\x06\x08\x09\x27\xf0\x00\x08\x09\x27\xf0\x00\x08\x09\x27\xf0\x12\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x04\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x04\x01\x09\x2f\xf0\x00\x01\x09\x2f\xf0\x00\x01\x09\x2f\xf0\x04\x01\x09\x26\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26", -}; -static - struct _PyCode_DEF(50) -os_toplevel_consts_135 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & os_toplevel_consts_135_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_135_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1000, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__wrap_close._ascii.ob_base, - .co_qualname = & const_str__wrap_close._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x84\x00\x5a\x08\x64\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -os_toplevel_consts_138_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "invalid fd type (%s, expected integer)", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_138_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_138_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & const_str_b._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -os_toplevel_consts_138_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_int._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_type._ascii.ob_base, - & const_str_io._ascii.ob_base, - & const_str_text_encoding._ascii.ob_base, - &_Py_ID(open), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[125]; - } -os_toplevel_consts_138_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 124, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0b\x15\x90\x62\x9d\x23\xd1\x0b\x1e\xd4\x0b\x1e\xf0\x00\x01\x05\x4d\x01\xdd\x0e\x17\xd0\x18\x40\xc5\x34\xc8\x02\xc1\x38\xc4\x38\xd1\x18\x4b\xd1\x0e\x4c\xd4\x0e\x4c\xd0\x08\x4c\xd8\x04\x0d\x80\x49\x80\x49\x80\x49\xd8\x07\x0a\x90\x24\x80\x7f\x80\x7f\xd8\x13\x15\xd7\x13\x23\xd2\x13\x23\xa0\x48\xd1\x13\x2d\xd4\x13\x2d\x88\x08\xd8\x0b\x12\x88\x32\x8c\x37\x90\x32\x90\x74\x98\x59\xa8\x08\xd0\x0b\x42\xb0\x34\xd0\x0b\x42\xd0\x0b\x42\xd0\x0b\x42\xb8\x36\xd0\x0b\x42\xd0\x0b\x42\xd0\x04\x42", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -os_toplevel_consts_138_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_fd._ascii.ob_base, - &_Py_ID(mode), - & const_str_buffering._ascii.ob_base, - &_Py_ID(encoding), - & const_str_args._ascii.ob_base, - & const_str_kwargs._ascii.ob_base, - & const_str_io._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(204) -os_toplevel_consts_138 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 102, - }, - .co_consts = & os_toplevel_consts_138_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_138_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 15, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 1025, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_138_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_fdopen._ascii.ob_base, - .co_qualname = & const_str_fdopen._ascii.ob_base, - .co_linetable = & os_toplevel_consts_138_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x1f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x02\x64\x00\x6c\x04\x7d\x06\x64\x03\x7c\x01\x76\x01\x72\x15\x7c\x06\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x02\x00\x7c\x06\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\x7c\x02\x7c\x03\x67\x04\x7c\x04\xa2\x01\x52\x00\x69\x00\x7c\x05\xa4\x01\x8e\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[354]; - } -os_toplevel_consts_139_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 353, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x61\x20\x70\x61\x74\x68\x2d\x6c\x69\x6b\x65\x20\x6f\x62\x6a\x65\x63\x74\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x73\x74\x72\x20\x6f\x72\x20\x62\x79\x74\x65\x73\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x69\x6e\x2c\x20\x69\x74\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x75\x6e\x63\x68\x61\x6e\x67\x65\x64\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x20\x69\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x69\x73\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x67\x65\x74\x20\x74\x68\x65\x20\x70\x61\x74\x68\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x61\x74\x69\x6f\x6e\x2e\x20\x49\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x70\x61\x74\x68\x20\x72\x65\x70\x72\x65\x73\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x69\x73\x20\x6e\x6f\x74\x20\x73\x74\x72\x20\x6f\x72\x20\x62\x79\x74\x65\x73\x2c\x20\x54\x79\x70\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x70\x72\x6f\x76\x69\x64\x65\x64\x20\x70\x61\x74\x68\x20\x69\x73\x20\x6e\x6f\x74\x20\x73\x74\x72\x2c\x20\x62\x79\x74\x65\x73\x2c\x20\x6f\x72\x20\x6f\x73\x2e\x50\x61\x74\x68\x4c\x69\x6b\x65\x2c\x20\x54\x79\x70\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[48]; - } -os_toplevel_consts_139_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 47, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "expected str, bytes or os.PathLike object, not ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[56]; - } -os_toplevel_consts_139_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 55, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "expected {}.__fspath__() to return str or bytes, not {}", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_139_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & os_toplevel_consts_139_consts_0._ascii.ob_base, - &_Py_ID(__fspath__), - & os_toplevel_consts_139_consts_2._ascii.ob_base, - & os_toplevel_consts_139_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -os_toplevel_consts_139_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(isinstance), - & const_str_str._ascii.ob_base, - & const_str_bytes._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__fspath__), - & const_str_AttributeError._ascii.ob_base, - & const_str_hasattr._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - &_Py_ID(__name__), - & const_str_format._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__fspath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_fspath", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[244]; - } -os_toplevel_consts_139_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 243, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x08\x12\x90\x24\x9d\x13\x9d\x65\x98\x0c\xd1\x07\x25\xd4\x07\x25\xf0\x00\x01\x05\x14\xd8\x0f\x13\x88\x0b\xf5\x08\x00\x11\x15\x90\x54\x91\x0a\x94\x0a\x80\x49\xf0\x02\x07\x05\x39\xd8\x14\x1d\xd7\x14\x28\xd2\x14\x28\xa8\x14\xd1\x14\x2e\xd4\x14\x2e\x88\x09\x88\x09\xf8\xdd\x0b\x19\xf0\x00\x05\x05\x39\xf0\x00\x05\x05\x39\xf0\x00\x05\x05\x39\xdd\x0b\x12\x90\x39\x98\x6c\xd1\x0b\x2b\xd4\x0b\x2b\xf0\x00\x04\x09\x39\xd8\x0c\x11\xe5\x12\x1b\xf0\x00\x01\x1d\x23\xd8\x25\x2e\xd4\x25\x37\xf1\x03\x01\x1d\x38\xf1\x00\x01\x13\x39\xf4\x00\x01\x13\x39\xf0\x00\x01\x0d\x39\xf0\x09\x05\x05\x39\xf8\xf8\xf8\xf5\x0c\x00\x08\x12\x90\x29\x9d\x63\xa5\x35\x98\x5c\xd1\x07\x2a\xd4\x07\x2a\xf0\x00\x05\x05\x43\x01\xd8\x0f\x18\xd0\x08\x18\xe5\x0e\x17\xf0\x00\x01\x19\x21\xdf\x21\x27\xa2\x16\xa8\x09\xd4\x28\x3a\xdd\x28\x2c\xa8\x59\xa9\x0f\xac\x0f\xd4\x28\x40\xf1\x03\x01\x22\x42\x01\xf4\x00\x01\x22\x42\x01\xf1\x03\x02\x0f\x43\x01\xf4\x00\x02\x0f\x43\x01\xf0\x00\x02\x09\x43\x01", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[12]; - } -os_toplevel_consts_139_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 11, - }, - .ob_shash = -1, - .ob_sval = "\xaf\x15\x41\x05\x00\xc1\x05\x33\x41\x38\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_path_type = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_type", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_path_repr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_repr", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_139_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(path), - & const_str_path_type._ascii.ob_base, - & const_str_path_repr._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(422) -os_toplevel_consts_139 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 211, - }, - .co_consts = & os_toplevel_consts_139_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_139_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_consts_139_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 1036, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_139_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__fspath._ascii.ob_base, - .co_qualname = & const_str__fspath._ascii.ob_base, - .co_linetable = & os_toplevel_consts_139_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x7c\x00\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x6e\x36\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x29\x01\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x01\x82\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x7c\x01\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x7c\x02\x53\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_PathLike = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "PathLike", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[68]; - } -os_toplevel_consts_141_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 67, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Abstract base class for implementing the file system path protocol.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[58]; - } -os_toplevel_consts_141_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 57, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the file system path representation of the object.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -os_toplevel_consts_141_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & os_toplevel_consts_141_consts_2_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -os_toplevel_consts_141_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "PathLike.__fspath__", -}; -static - struct _PyCode_DEF(16) -os_toplevel_consts_141_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 8, - }, - .co_consts = & os_toplevel_consts_141_consts_2_consts._object.ob_base.ob_base, - .co_names = & codecs_toplevel_consts_14_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1076, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__fspath__), - .co_qualname = & os_toplevel_consts_141_consts_2_qualname._ascii.ob_base, - .co_linetable = & codecs_toplevel_consts_18_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_141_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - &_Py_ID(__fspath__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_141_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_PathLike._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_NotImplemented._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -os_toplevel_consts_141_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "PathLike.__subclasshook__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -os_toplevel_consts_141_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0e\x95\x28\x88\x3f\x88\x3f\xdd\x13\x21\xa0\x28\xa8\x4c\xd1\x13\x39\xd4\x13\x39\xd0\x0c\x39\xdd\x0f\x1d\xd0\x08\x1d", -}; -static - struct _PyCode_DEF(66) -os_toplevel_consts_141_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 33, - }, - .co_consts = & os_toplevel_consts_141_consts_3_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_141_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1081, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & abc_toplevel_consts_10_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__subclasshook__), - .co_qualname = & os_toplevel_consts_141_consts_3_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_141_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -os_toplevel_consts_141_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_PathLike._ascii.ob_base, - & os_toplevel_consts_141_consts_1._ascii.ob_base, - & os_toplevel_consts_141_consts_2.ob_base.ob_base, - & os_toplevel_consts_141_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -os_toplevel_consts_141_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - & const_str_abc._ascii.ob_base, - & const_str_abstractmethod._ascii.ob_base, - &_Py_ID(__fspath__), - & const_str_classmethod._ascii.ob_base, - &_Py_ID(__subclasshook__), - & const_str_GenericAlias._ascii.ob_base, - &_Py_ID(__class_getitem__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[97]; - } -os_toplevel_consts_141_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 96, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x04\x4d\xd0\x04\x4d\xe0\x05\x08\xd4\x05\x17\xf0\x02\x02\x05\x22\xf0\x00\x02\x05\x22\xf1\x03\x00\x06\x18\xd4\x05\x17\xf0\x02\x02\x05\x22\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x1e\xf0\x00\x03\x05\x1e\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x1e\xf0\x0a\x00\x19\x24\x98\x0b\xa0\x4c\xd1\x18\x31\xd4\x18\x31\xd0\x04\x15\xd0\x04\x15\xd0\x04\x15", -}; -static - struct _PyCode_DEF(94) -os_toplevel_consts_141 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 47, - }, - .co_consts = & os_toplevel_consts_141_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_141_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1072, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_PathLike._ascii.ob_base, - .co_qualname = & const_str_PathLike._ascii.ob_base, - .co_linetable = & os_toplevel_consts_141_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x06\x65\x07\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x08\x02\x00\x65\x07\x65\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str__AddedDllDirectory = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_AddedDllDirectory", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__cookie = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_cookie", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str__remove_dll_directory = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_remove_dll_directory", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_143_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(path), - & const_str__cookie._ascii.ob_base, - & const_str__remove_dll_directory._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -os_toplevel_consts_143_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_AddedDllDirectory.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[31]; - } -os_toplevel_consts_143_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 30, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x18\x1c\x88\x44\x8c\x49\xd8\x1b\x21\x88\x44\x8c\x4c\xd8\x29\x3d\x88\x44\xd4\x0c\x26\xd0\x0c\x26\xd0\x0c\x26", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_cookie = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "cookie", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str_remove_dll_directory = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "remove_dll_directory", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_143_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - &_Py_ID(path), - & const_str_cookie._ascii.ob_base, - & const_str_remove_dll_directory._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(48) -os_toplevel_consts_143_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_143_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1092, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_143_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & os_toplevel_consts_143_consts_1_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_143_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_143_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str__remove_dll_directory._ascii.ob_base, - & const_str__cookie._ascii.ob_base, - &_Py_ID(path), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -os_toplevel_consts_143_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_AddedDllDirectory.close", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -os_toplevel_consts_143_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0c\x10\xd7\x0c\x26\xd2\x0c\x26\xa0\x74\xa4\x7c\xd1\x0c\x34\xd4\x0c\x34\xd0\x0c\x34\xd8\x18\x1c\x88\x44\x8c\x49\x88\x49\x88\x49", -}; -static - struct _PyCode_DEF(72) -os_toplevel_consts_143_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_143_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1096, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(close), - .co_qualname = & os_toplevel_consts_143_consts_2_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_143_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -os_toplevel_consts_143_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_AddedDllDirectory.__enter__", -}; -static - struct _PyCode_DEF(6) -os_toplevel_consts_143_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1099, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & os_toplevel_consts_143_consts_3_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -os_toplevel_consts_143_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_AddedDllDirectory.__exit__", -}; -static - struct _PyCode_DEF(46) -os_toplevel_consts_143_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 23, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_135_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1101, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & os_toplevel_consts_143_consts_4_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_135_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -os_toplevel_consts_143_consts_5_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -os_toplevel_consts_143_consts_5_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_143_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & os_toplevel_consts_143_consts_5_consts_1._ascii.ob_base, - & os_toplevel_consts_143_consts_5_consts_2._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_143_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(path), - & const_str_format._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -os_toplevel_consts_143_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_AddedDllDirectory.__repr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[42]; - } -os_toplevel_consts_143_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 41, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x79\xf0\x00\x01\x0d\x45\x01\xd8\x17\x32\xd7\x17\x39\xd2\x17\x39\xb8\x24\xbc\x29\xd1\x17\x44\xd4\x17\x44\xd0\x10\x44\xd8\x13\x2a\xd0\x13\x2a", -}; -static - struct _PyCode_DEF(72) -os_toplevel_consts_143_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & os_toplevel_consts_143_consts_5_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_143_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1103, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_ID(__repr__), - .co_qualname = & os_toplevel_consts_143_consts_5_qualname._ascii.ob_base, - .co_linetable = & os_toplevel_consts_143_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1a\x64\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -os_toplevel_consts_143_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__AddedDllDirectory._ascii.ob_base, - & os_toplevel_consts_143_consts_1.ob_base.ob_base, - & os_toplevel_consts_143_consts_2.ob_base.ob_base, - & os_toplevel_consts_143_consts_3.ob_base.ob_base, - & os_toplevel_consts_143_consts_4.ob_base.ob_base, - & os_toplevel_consts_143_consts_5.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -os_toplevel_consts_143_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__init__), - &_Py_ID(close), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - &_Py_ID(__repr__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[96]; - } -os_toplevel_consts_143_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 95, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x03\x09\x3e\xf0\x00\x03\x09\x3e\xf0\x00\x03\x09\x3e\xf0\x08\x02\x09\x1d\xf0\x00\x02\x09\x1d\xf0\x00\x02\x09\x1d\xf0\x06\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x00\x01\x09\x18\xf0\x04\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x00\x01\x09\x19\xf0\x04\x03\x09\x2b\xf0\x00\x03\x09\x2b\xf0\x00\x03\x09\x2b\xf0\x00\x03\x09\x2b\xf0\x00\x03\x09\x2b", -}; -static - struct _PyCode_DEF(44) -os_toplevel_consts_143 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 22, - }, - .co_consts = & os_toplevel_consts_143_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_143_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1091, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str__AddedDllDirectory._ascii.ob_base, - .co_qualname = & const_str__AddedDllDirectory._ascii.ob_base, - .co_linetable = & os_toplevel_consts_143_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x84\x00\x5a\x07\x64\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[336]; - } -os_toplevel_consts_145_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 335, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x64\x64\x20\x61\x20\x70\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x44\x4c\x4c\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x54\x68\x69\x73\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x20\x69\x73\x20\x75\x73\x65\x64\x20\x77\x68\x65\x6e\x20\x72\x65\x73\x6f\x6c\x76\x69\x6e\x67\x20\x64\x65\x70\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x20\x6d\x6f\x64\x75\x6c\x65\x73\x20\x28\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x74\x73\x65\x6c\x66\x20\x69\x73\x20\x72\x65\x73\x6f\x6c\x76\x65\x64\x20\x74\x68\x72\x6f\x75\x67\x68\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x29\x2c\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x61\x6c\x73\x6f\x20\x62\x79\x20\x63\x74\x79\x70\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x52\x65\x6d\x6f\x76\x65\x20\x74\x68\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x62\x79\x20\x63\x61\x6c\x6c\x69\x6e\x67\x20\x63\x6c\x6f\x73\x65\x28\x29\x20\x6f\x6e\x20\x74\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x20\x6f\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x75\x73\x69\x6e\x67\x20\x69\x74\x20\x69\x6e\x20\x61\x20\x77\x69\x74\x68\x20\x73\x74\x61\x74\x65\x6d\x65\x6e\x74\x2e\x0a\x20\x20\x20\x20\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_145_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & os_toplevel_consts_145_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str__add_dll_directory = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_add_dll_directory", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -os_toplevel_consts_145_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_nt._ascii.ob_base, - & const_str__add_dll_directory._ascii.ob_base, - & const_str__AddedDllDirectory._ascii.ob_base, - & const_str__remove_dll_directory._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_add_dll_directory = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "add_dll_directory", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[62]; - } -os_toplevel_consts_145_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 61, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x14\x00\x09\x12\x88\x09\x88\x09\x88\x09\xd8\x11\x26\x90\x12\xd4\x11\x26\xa0\x74\xd1\x11\x2c\xd4\x11\x2c\x88\x06\xdd\x0f\x21\xd8\x0c\x10\xd8\x0c\x12\xd8\x0c\x0e\xd4\x0c\x24\xf1\x07\x04\x10\x0a\xf4\x00\x04\x10\x0a\xf0\x00\x04\x09\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_145_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(path), - & const_str_nt._ascii.ob_base, - & const_str_cookie._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(86) -os_toplevel_consts_145 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 43, - }, - .co_consts = & os_toplevel_consts_145_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_consts_145_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1108, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & os_toplevel_consts_145_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = & const_str_add_dll_directory._ascii.ob_base, - .co_qualname = & const_str_add_dll_directory._ascii.ob_base, - .co_linetable = & os_toplevel_consts_145_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x64\x02\x6c\x00\x7d\x01\x02\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_146 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_int_511.ob_base.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_147 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_True, - Py_None, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_148 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_STR(dot), - Py_True, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -os_toplevel_consts_150 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_r._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -os_toplevel_consts_151 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_r._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[152]; - }_object; - } -os_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 152, - }, - .ob_item = { - & os_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & os_toplevel_consts_3._object.ob_base.ob_base, - & os_toplevel_consts_4._object.ob_base.ob_base, - & os_toplevel_consts_5.ob_base.ob_base, - & os_toplevel_consts_6.ob_base.ob_base, - & const_str_posix._ascii.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, - & codecs_toplevel_consts_3._object.ob_base.ob_base, - & os_toplevel_consts_10._object.ob_base.ob_base, - & const_str__exit._ascii.ob_base, - & os_toplevel_consts_12._object.ob_base.ob_base, - & const_str_nt._ascii.ob_base, - & os_toplevel_consts_14._ascii.ob_base, - & os_toplevel_consts_15._ascii.ob_base, - & os_toplevel_consts_16._ascii.ob_base, - & os_toplevel_consts_17._object.ob_base.ob_base, - & const_str__have_functions._ascii.ob_base, - & os_toplevel_consts_19.ob_base.ob_base, - & const_str_HAVE_FACCESSAT._ascii.ob_base, - & const_str_access._ascii.ob_base, - & const_str_HAVE_FCHMODAT._ascii.ob_base, - & const_str_chmod._ascii.ob_base, - & const_str_HAVE_FCHOWNAT._ascii.ob_base, - & const_str_chown._ascii.ob_base, - & const_str_HAVE_FSTATAT._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_HAVE_FUTIMESAT._ascii.ob_base, - & const_str_utime._ascii.ob_base, - & const_str_HAVE_LINKAT._ascii.ob_base, - & const_str_link._ascii.ob_base, - & const_str_HAVE_MKDIRAT._ascii.ob_base, - & const_str_mkdir._ascii.ob_base, - & const_str_HAVE_MKFIFOAT._ascii.ob_base, - & const_str_mkfifo._ascii.ob_base, - & const_str_HAVE_MKNODAT._ascii.ob_base, - & const_str_mknod._ascii.ob_base, - & const_str_HAVE_OPENAT._ascii.ob_base, - &_Py_ID(open), - & const_str_HAVE_READLINKAT._ascii.ob_base, - & const_str_readlink._ascii.ob_base, - & const_str_HAVE_RENAMEAT._ascii.ob_base, - & const_str_rename._ascii.ob_base, - & const_str_HAVE_SYMLINKAT._ascii.ob_base, - & const_str_symlink._ascii.ob_base, - & const_str_HAVE_UNLINKAT._ascii.ob_base, - & const_str_unlink._ascii.ob_base, - & const_str_rmdir._ascii.ob_base, - & const_str_HAVE_UTIMENSAT._ascii.ob_base, - & const_str_HAVE_FCHDIR._ascii.ob_base, - & const_str_chdir._ascii.ob_base, - & const_str_HAVE_FCHMOD._ascii.ob_base, - & const_str_HAVE_FCHOWN._ascii.ob_base, - & const_str_HAVE_FDOPENDIR._ascii.ob_base, - & const_str_listdir._ascii.ob_base, - & const_str_scandir._ascii.ob_base, - & const_str_HAVE_FEXECVE._ascii.ob_base, - & const_str_execve._ascii.ob_base, - & const_str_HAVE_FTRUNCATE._ascii.ob_base, - &_Py_ID(truncate), - & const_str_HAVE_FUTIMENS._ascii.ob_base, - & const_str_HAVE_FUTIMES._ascii.ob_base, - & const_str_HAVE_FPATHCONF._ascii.ob_base, - & const_str_pathconf._ascii.ob_base, - & const_str_statvfs._ascii.ob_base, - & const_str_fstatvfs._ascii.ob_base, - & const_str_HAVE_FSTATVFS._ascii.ob_base, - & const_str_HAVE_LCHFLAGS._ascii.ob_base, - & const_str_chflags._ascii.ob_base, - & const_str_HAVE_LCHMOD._ascii.ob_base, - & const_str_lchown._ascii.ob_base, - & const_str_HAVE_LCHOWN._ascii.ob_base, - & const_str_HAVE_LUTIMES._ascii.ob_base, - & const_str_HAVE_LSTAT._ascii.ob_base, - & const_str_MS_WINDOWS._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & const_int_511.ob_base.ob_base, - Py_False, - & os_toplevel_consts_80.ob_base.ob_base, - & os_toplevel_consts_81.ob_base.ob_base, - & os_toplevel_consts_82.ob_base.ob_base, - & os_toplevel_consts_83._object.ob_base.ob_base, - Py_True, - & os_toplevel_consts_85.ob_base.ob_base, - & os_toplevel_consts_86.ob_base.ob_base, - & const_str_walk._ascii.ob_base, - &_Py_STR(dot), - & os_toplevel_consts_89._object.ob_base.ob_base, - & os_toplevel_consts_90.ob_base.ob_base, - & os_toplevel_consts_91.ob_base.ob_base, - & const_str_fwalk._ascii.ob_base, - & os_toplevel_consts_93.ob_base.ob_base, - & os_toplevel_consts_94.ob_base.ob_base, - & os_toplevel_consts_95.ob_base.ob_base, - & os_toplevel_consts_96.ob_base.ob_base, - & os_toplevel_consts_97.ob_base.ob_base, - & os_toplevel_consts_98.ob_base.ob_base, - & os_toplevel_consts_99._object.ob_base.ob_base, - & os_toplevel_consts_100.ob_base.ob_base, - & os_toplevel_consts_101.ob_base.ob_base, - & os_toplevel_consts_102._object.ob_base.ob_base, - & os_toplevel_consts_103.ob_base.ob_base, - & const_str__Environ._ascii.ob_base, - & os_toplevel_consts_105.ob_base.ob_base, - & os_toplevel_consts_106.ob_base.ob_base, - & os_toplevel_consts_107._object.ob_base.ob_base, - & os_toplevel_consts_108.ob_base.ob_base, - & os_toplevel_consts_109.ob_base.ob_base, - & os_toplevel_consts_110._object.ob_base.ob_base, - & os_toplevel_consts_111.ob_base.ob_base, - & const_str_fork._ascii.ob_base, - & const_str_spawnv._ascii.ob_base, - & const_str_execv._ascii.ob_base, - & os_toplevel_consts_115._object.ob_base.ob_base, - & os_toplevel_consts_116.ob_base.ob_base, - & os_toplevel_consts_117.ob_base.ob_base, - & os_toplevel_consts_118.ob_base.ob_base, - & os_toplevel_consts_119.ob_base.ob_base, - & os_toplevel_consts_120.ob_base.ob_base, - & os_toplevel_consts_121._object.ob_base.ob_base, - & os_toplevel_consts_122.ob_base.ob_base, - & os_toplevel_consts_123.ob_base.ob_base, - & const_str_spawnl._ascii.ob_base, - & const_str_spawnle._ascii.ob_base, - & const_str_spawnvp._ascii.ob_base, - & os_toplevel_consts_127.ob_base.ob_base, - & os_toplevel_consts_128.ob_base.ob_base, - & const_str_spawnlp._ascii.ob_base, - & const_str_spawnlpe._ascii.ob_base, - & const_str_vxworks._ascii.ob_base, - & const_str_r._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -1], - & os_toplevel_consts_134.ob_base.ob_base, - & os_toplevel_consts_135.ob_base.ob_base, - & const_str__wrap_close._ascii.ob_base, - & const_str_popen._ascii.ob_base, - & os_toplevel_consts_138.ob_base.ob_base, - & os_toplevel_consts_139.ob_base.ob_base, - & const_str_fspath._ascii.ob_base, - & os_toplevel_consts_141.ob_base.ob_base, - & const_str_PathLike._ascii.ob_base, - & os_toplevel_consts_143.ob_base.ob_base, - & const_str__AddedDllDirectory._ascii.ob_base, - & os_toplevel_consts_145.ob_base.ob_base, - & os_toplevel_consts_146._object.ob_base.ob_base, - & os_toplevel_consts_147._object.ob_base.ob_base, - & os_toplevel_consts_148._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - & os_toplevel_consts_150._object.ob_base.ob_base, - & os_toplevel_consts_151._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__collections_abc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_collections_abc", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str__names = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_names", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_posixpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "posixpath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_ntpath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ntpath", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_supports_dir_fd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "supports_dir_fd", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str_supports_effective_ids = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "supports_effective_ids", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_supports_fd = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "supports_fd", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str_supports_follow_symlinks = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "supports_follow_symlinks", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[106]; - }_object; - } -os_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 106, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_abc._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_st._ascii.ob_base, - & const_str__collections_abc._ascii.ob_base, - & const_str__check_methods._ascii.ob_base, - & const_str_type._ascii.ob_base, - & const_str_list._ascii.ob_base, - & const_str_int._ascii.ob_base, - & const_str_GenericAlias._ascii.ob_base, - & const_str_builtin_module_names._ascii.ob_base, - & const_str__names._ascii.ob_base, - &_Py_ID(__all__), - & const_str__exists._ascii.ob_base, - & const_str__get_exports_list._ascii.ob_base, - &_Py_ID(name), - & const_str_linesep._ascii.ob_base, - & const_str_posix._ascii.ob_base, - & const_str__exit._ascii.ob_base, - &_Py_ID(append), - & const_str_ImportError._ascii.ob_base, - & const_str_posixpath._ascii.ob_base, - &_Py_ID(path), - & const_str__have_functions._ascii.ob_base, - &_Py_ID(extend), - & const_str_nt._ascii.ob_base, - & const_str_ntpath._ascii.ob_base, - &_Py_ID(modules), - & os_toplevel_consts_16._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_pardir._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - & const_str_defpath._ascii.ob_base, - & const_str_extsep._ascii.ob_base, - & const_str_altsep._ascii.ob_base, - & const_str_devnull._ascii.ob_base, - & const_str_globals._ascii.ob_base, - & const_str__globals._ascii.ob_base, - & const_str__add._ascii.ob_base, - & const_str_set._ascii.ob_base, - & const_str__set._ascii.ob_base, - & const_str_supports_dir_fd._ascii.ob_base, - & const_str_supports_effective_ids._ascii.ob_base, - &_Py_ID(add), - & const_str_supports_fd._ascii.ob_base, - & const_str_supports_follow_symlinks._ascii.ob_base, - & const_str_SEEK_SET._ascii.ob_base, - & const_str_SEEK_CUR._ascii.ob_base, - & const_str_SEEK_END._ascii.ob_base, - & const_str_makedirs._ascii.ob_base, - & const_str_removedirs._ascii.ob_base, - & const_str_renames._ascii.ob_base, - & const_str_walk._ascii.ob_base, - & const_str__walk._ascii.ob_base, - &_Py_ID(open), - & const_str_scandir._ascii.ob_base, - & const_str_fwalk._ascii.ob_base, - & const_str__fwalk._ascii.ob_base, - & const_str_execl._ascii.ob_base, - & const_str_execle._ascii.ob_base, - & const_str_execlp._ascii.ob_base, - & const_str_execlpe._ascii.ob_base, - & const_str_execvp._ascii.ob_base, - & const_str_execvpe._ascii.ob_base, - & const_str__execvpe._ascii.ob_base, - & const_str_get_exec_path._ascii.ob_base, - & const_str_MutableMapping._ascii.ob_base, - & const_str_Mapping._ascii.ob_base, - & const_str__Environ._ascii.ob_base, - & const_str__createenviron._ascii.ob_base, - & const_str_environ._ascii.ob_base, - & const_str_getenv._ascii.ob_base, - & const_str_supports_bytes_environ._ascii.ob_base, - & const_str__check_bytes._ascii.ob_base, - & const_str__data._ascii.ob_base, - & const_str_bytes._ascii.ob_base, - & const_str_environb._ascii.ob_base, - & const_str_getenvb._ascii.ob_base, - & const_str__fscodec._ascii.ob_base, - & const_str_fsencode._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - & const_str_P_WAIT._ascii.ob_base, - & const_str_P_NOWAIT._ascii.ob_base, - & const_str_P_NOWAITO._ascii.ob_base, - & const_str__spawnvef._ascii.ob_base, - & const_str_spawnv._ascii.ob_base, - & const_str_spawnve._ascii.ob_base, - & const_str_spawnvp._ascii.ob_base, - & const_str_spawnvpe._ascii.ob_base, - & const_str_spawnl._ascii.ob_base, - & const_str_spawnle._ascii.ob_base, - & const_str_spawnlp._ascii.ob_base, - & const_str_spawnlpe._ascii.ob_base, - & const_str_platform._ascii.ob_base, - & const_str_popen._ascii.ob_base, - & const_str__wrap_close._ascii.ob_base, - & const_str_fdopen._ascii.ob_base, - & const_str__fspath._ascii.ob_base, - & const_str_fspath._ascii.ob_base, - &_Py_ID(__name__), - & const_str_ABC._ascii.ob_base, - & const_str_PathLike._ascii.ob_base, - & const_str__AddedDllDirectory._ascii.ob_base, - & const_str_add_dll_directory._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3010]; - } -os_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 3009, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x15\x01\x04\xf0\x00\x15\x01\x04\xf0\x30\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x11\xd0\x00\x11\xd0\x00\x11\xd0\x00\x11\xe0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xe0\x0f\x13\x88\x74\x90\x44\x98\x13\x94\x49\x89\x7f\x8c\x7f\x80\x0c\xe0\x09\x0c\xd4\x09\x21\x80\x06\xf0\x06\x03\x0b\x15\xf0\x00\x03\x0b\x15\xf0\x00\x03\x0b\x15\x80\x07\xf0\x0a\x01\x01\x1d\xf0\x00\x01\x01\x1d\xf0\x00\x01\x01\x1d\xf0\x06\x04\x01\x37\xf0\x00\x04\x01\x37\xf0\x00\x04\x01\x37\xf0\x10\x00\x04\x0b\x88\x66\xd0\x03\x14\xd0\x03\x14\xd8\x0b\x12\x80\x44\xd8\x0e\x12\x80\x47\xd8\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xf0\x02\x04\x05\x0d\xd8\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xd8\x08\x0f\x8f\x0e\x8a\x0e\x90\x77\xd1\x08\x1f\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xe0\x04\x1c\xd0\x04\x1c\xd0\x04\x1c\xd0\x04\x1c\xf0\x04\x03\x05\x0d\xd8\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xd0\x08\x29\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x06\x00\x05\x11\x80\x4c\x80\x4c\x80\x4c\xd8\x04\x0b\x87\x4e\x82\x4e\xd0\x13\x24\xd0\x13\x24\xa0\x55\xd1\x13\x2b\xd4\x13\x2b\xd1\x04\x2c\xd4\x04\x2c\xd0\x04\x2c\xd8\x08\x0d\x88\x05\xe0\x05\x09\x88\x56\x80\x5e\x80\x5e\xd8\x0b\x0f\x80\x44\xd8\x0e\x14\x80\x47\xd8\x04\x14\xd0\x04\x14\xd0\x04\x14\xd0\x04\x14\xf0\x02\x04\x05\x0d\xd8\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd0\x08\x1c\xd8\x08\x0f\x8f\x0e\x8a\x0e\x90\x77\xd1\x08\x1f\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xe0\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19\xe0\x04\x0d\x80\x49\x80\x49\x80\x49\xd8\x04\x0b\x87\x4e\x82\x4e\xd0\x13\x24\xd0\x13\x24\xa0\x52\xd1\x13\x28\xd4\x13\x28\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xd8\x08\x0a\xf0\x04\x03\x05\x0d\xd8\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xd0\x08\x26\xf8\xd8\x0b\x16\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xf0\x08\x00\x0b\x16\x88\x2b\xd0\x16\x33\xd1\x0a\x34\xd4\x0a\x34\xd0\x04\x34\xe0\x19\x1d\x80\x03\x84\x0b\x88\x49\xd1\x00\x16\xf0\x02\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x00\x01\x01\x0d\xf0\x06\x00\x05\x0b\xf0\x06\x00\x04\x0b\x80\x37\xd0\x0b\x1c\xd1\x03\x1d\xd4\x03\x1d\xf1\x00\x55\x01\x01\x0d\xd8\x0f\x16\x88\x77\x89\x79\x8c\x79\x80\x48\xf0\x02\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x00\x02\x05\x23\xf0\x08\x00\x0c\x0f\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1e\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1f\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\xd0\x09\x1a\x98\x4a\xd1\x04\x27\xd4\x04\x27\xd0\x04\x27\xd8\x04\x08\x80\x44\x88\x1f\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\x88\x1f\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x16\x1a\x80\x4f\xe0\x0b\x0e\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x1d\x21\xd0\x04\x1a\xe0\x0b\x0e\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\x88\x1e\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xd8\x04\x08\x87\x48\x82\x48\x88\x54\x81\x4e\x84\x4e\x80\x4e\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x4a\xd1\x04\x27\xd4\x04\x27\xd0\x04\x27\xd8\x04\x08\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x4a\xd1\x04\x27\xd4\x04\x27\xd0\x04\x27\xd8\x07\x0e\x80\x77\x88\x79\xd1\x07\x19\xd4\x07\x19\xf0\x00\x01\x05\x29\x98\x67\x98\x67\xa0\x6a\xd1\x1e\x31\xd4\x1e\x31\xf0\x00\x01\x05\x29\xd8\x08\x0c\x88\x04\x88\x5f\x98\x69\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x12\x16\x80\x4b\xe0\x0b\x0e\x88\x33\x89\x35\x8c\x35\x80\x44\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x48\xd1\x04\x25\xd4\x04\x25\xd0\x04\x25\xf0\x2c\x00\x05\x09\x80\x44\x88\x1f\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1e\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1f\x98\x49\xd1\x04\x26\xd4\x04\x26\xd0\x04\x26\xd8\x04\x08\x80\x44\x88\x1d\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x07\x0e\x80\x77\x88\x78\xd1\x07\x18\xd4\x07\x18\xf0\x00\x01\x05\x25\xd8\x08\x0c\x88\x04\x88\x5d\x98\x47\xd1\x08\x24\xd4\x08\x24\xd0\x08\x24\xd8\x04\x08\x80\x44\x88\x1d\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1e\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1c\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\x88\x1e\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x04\x08\x80\x44\xd0\x09\x19\x98\x47\xd1\x04\x24\xd4\x04\x24\xd0\x04\x24\xd8\x04\x08\x80\x44\x88\x1c\x98\x46\xd1\x04\x23\xd4\x04\x23\xd0\x04\x23\xd8\x1f\x23\xd0\x04\x1c\xe0\x08\x0c\xd8\x08\x17\xd8\x08\x10\xd8\x08\x0c\xf0\x0c\x00\x0c\x0d\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xf0\x0a\x1e\x01\x12\xf0\x00\x1e\x01\x12\xf0\x00\x1e\x01\x12\xf0\x00\x1e\x01\x12\xf0\x40\x01\x14\x01\x26\xf0\x00\x14\x01\x26\xf0\x00\x14\x01\x26\xf0\x2c\x18\x01\x11\xf0\x00\x18\x01\x11\xf0\x00\x18\x01\x11\xf0\x34\x00\x01\x08\x87\x0e\x82\x0e\xd0\x0f\x34\xd0\x0f\x34\xd0\x0f\x34\xd1\x00\x35\xd4\x00\x35\xd0\x00\x35\xf0\x04\x3d\x01\x3d\xf0\x00\x3d\x01\x3d\xf0\x00\x3d\x01\x3d\xf0\x00\x3d\x01\x3d\xf0\x7e\x01\x50\x01\x01\x21\xf0\x00\x50\x01\x01\x21\xf0\x00\x50\x01\x01\x21\xf0\x64\x02\x00\x01\x08\x87\x0e\x82\x0e\x88\x76\xd1\x00\x16\xd4\x00\x16\xd0\x00\x16\xe0\x04\x08\x88\x24\x80\x3c\x90\x3f\xd2\x03\x22\xd0\x03\x22\xa8\x07\xb0\x14\xa0\x7f\xb8\x2b\xd2\x27\x45\xd0\x27\x45\xf0\x04\x2e\x05\x19\xc0\x65\xd0\x54\x58\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x00\x2e\x05\x19\xf0\x60\x01\x36\x05\x30\xf0\x00\x36\x05\x30\xf0\x00\x36\x05\x30\xf0\x70\x01\x00\x05\x0c\x87\x4e\x82\x4e\x90\x37\xd1\x04\x1b\xd4\x04\x1b\xd0\x04\x1b\xf0\x04\x05\x01\x16\xf0\x00\x05\x01\x16\xf0\x00\x05\x01\x16\xf0\x0e\x06\x01\x21\xf0\x00\x06\x01\x21\xf0\x00\x06\x01\x21\xf0\x10\x05\x01\x17\xf0\x00\x05\x01\x17\xf0\x00\x05\x01\x17\xf0\x0e\x07\x01\x22\xf0\x00\x07\x01\x22\xf0\x00\x07\x01\x22\xf0\x12\x06\x01\x19\xf0\x00\x06\x01\x19\xf0\x00\x06\x01\x19\xf0\x10\x07\x01\x1e\xf0\x00\x07\x01\x1e\xf0\x00\x07\x01\x1e\xf0\x12\x00\x01\x08\x87\x0e\x82\x0e\xd0\x0f\x47\xd0\x0f\x47\xd0\x0f\x47\xd1\x00\x48\xd4\x00\x48\xd0\x00\x48\xf0\x04\x1d\x01\x13\xf0\x00\x1d\x01\x13\xf0\x00\x1d\x01\x13\xf0\x00\x1d\x01\x13\xf0\x40\x01\x29\x01\x24\xf0\x00\x29\x01\x24\xf0\x00\x29\x01\x24\xf0\x00\x29\x01\x24\xf0\x5a\x01\x00\x01\x35\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xf0\x04\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\x88\x7e\xf1\x00\x47\x01\x01\x13\xf4\x00\x47\x01\x01\x13\xf0\x00\x47\x01\x01\x13\xf0\x52\x02\x1b\x01\x18\xf0\x00\x1b\x01\x18\xf0\x00\x1b\x01\x18\xf0\x3c\x00\x0b\x19\x88\x2e\xd1\x0a\x1a\xd4\x0a\x1a\x80\x07\xd8\x04\x12\xf0\x06\x04\x01\x25\xf0\x00\x04\x01\x25\xf0\x00\x04\x01\x25\xf0\x00\x04\x01\x25\xf0\x0c\x00\x1b\x1f\xa0\x24\x9a\x2c\xd0\x00\x16\xd8\x00\x07\x87\x0e\x82\x0e\xd0\x0f\x33\xd1\x00\x34\xd4\x00\x34\xd0\x00\x34\xe0\x03\x19\xf0\x00\x12\x01\x2c\xf0\x02\x03\x05\x15\xf0\x00\x03\x05\x15\xf0\x00\x03\x05\x15\xf0\x0c\x00\x10\x18\x88\x78\x98\x07\x9c\x0d\xd8\x08\x14\x90\x65\xd8\x08\x14\x90\x65\xf1\x05\x02\x10\x1d\xf4\x00\x02\x10\x1d\x80\x48\xf0\x06\x00\x09\x15\xf0\x04\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x00\x04\x05\x2a\xf0\x0c\x00\x05\x0c\x87\x4e\x82\x4e\xd0\x13\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xf0\x04\x1c\x01\x1e\xf0\x00\x1c\x01\x1e\xf0\x00\x1c\x01\x1e\xf0\x3c\x00\x16\x1e\x90\x58\x91\x5a\x94\x5a\xd1\x00\x12\x80\x08\x88\x28\xd8\x04\x0c\xf0\x06\x00\x04\x0b\x80\x37\x88\x36\x81\x3f\x84\x3f\xf0\x00\x50\x01\x01\x41\x01\x98\x37\x98\x37\xa0\x38\xd1\x1b\x2c\xd4\x1b\x2c\xf0\x00\x50\x01\x01\x41\x01\xb0\x17\xb0\x17\xb8\x17\xd1\x31\x41\xd4\x31\x41\xf0\x00\x50\x01\x01\x41\x01\xe0\x0d\x0e\x80\x46\xd8\x1b\x1c\xd0\x04\x1c\x80\x48\x88\x79\xe0\x04\x0b\x87\x4e\x82\x4e\xd0\x13\x36\xd0\x13\x36\xd0\x13\x36\xd1\x04\x37\xd4\x04\x37\xd0\x04\x37\xf0\x0c\x19\x05\x33\xf0\x00\x19\x05\x33\xf0\x00\x19\x05\x33\xf0\x36\x07\x05\x38\xf0\x00\x07\x05\x38\xf0\x00\x07\x05\x38\xf0\x12\x08\x05\x38\xf0\x00\x08\x05\x38\xf0\x00\x08\x05\x38\xf0\x18\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x14\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x00\x08\x05\x39\xf0\x16\x00\x05\x0c\x87\x4e\x82\x4e\xd0\x13\x3f\xd0\x13\x3f\xd0\x13\x3f\xd1\x04\x40\xd4\x04\x40\xd0\x04\x40\xf0\x06\x00\x04\x0b\x80\x37\x88\x38\xd1\x03\x14\xd4\x03\x14\xf0\x00\x19\x01\x2a\xf0\x08\x07\x05\x28\xf0\x00\x07\x05\x28\xf0\x00\x07\x05\x28\xf0\x12\x09\x05\x33\xf0\x00\x09\x05\x33\xf0\x00\x09\x05\x33\xf0\x18\x00\x05\x0c\x87\x4e\x82\x4e\x90\x48\x98\x69\xd0\x13\x28\xd1\x04\x29\xd4\x04\x29\xd0\x04\x29\xf0\x06\x00\x04\x0b\x80\x37\x88\x39\xd1\x03\x15\xd4\x03\x15\xf0\x00\x19\x01\x2c\xf0\x06\x08\x05\x29\xf0\x00\x08\x05\x29\xf0\x00\x08\x05\x29\xf0\x14\x09\x05\x34\xf0\x00\x09\x05\x34\xf0\x00\x09\x05\x34\xf0\x18\x00\x05\x0c\x87\x4e\x82\x4e\x90\x49\x98\x7a\xd0\x13\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xf0\x08\x00\x04\x07\x84\x3c\x90\x39\xd2\x03\x1c\xd0\x03\x1c\xf0\x04\x13\x05\x31\xf0\x00\x13\x05\x31\xf0\x00\x13\x05\x31\xf0\x00\x13\x05\x31\xf0\x2c\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf1\x00\x14\x05\x26\xf4\x00\x14\x05\x26\xf0\x00\x14\x05\x26\xf0\x2c\x00\x05\x0c\x87\x4e\x82\x4e\x90\x37\xd1\x04\x1b\xd4\x04\x1b\xd0\x04\x1b\xf0\x06\x06\x01\x43\x01\xf0\x00\x06\x01\x43\x01\xf0\x00\x06\x01\x43\x01\xf0\x00\x06\x01\x43\x01\xf0\x16\x1b\x01\x43\x01\xf0\x00\x1b\x01\x43\x01\xf0\x00\x1b\x01\x43\x01\xf0\x3e\x00\x08\x0f\x80\x77\x88\x78\xd1\x07\x18\xd4\x07\x18\xf0\x00\x02\x01\x1f\xd8\x0d\x14\x80\x46\xd8\x16\x1e\x80\x46\x84\x4f\xf0\x06\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\x88\x73\x8c\x77\xf1\x00\x0f\x01\x32\xf4\x00\x0f\x01\x32\xf0\x00\x0f\x01\x32\xf0\x24\x00\x04\x08\x88\x34\x82\x3c\x80\x3c\xf0\x02\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf1\x00\x0f\x05\x2b\xf4\x00\x0f\x05\x2b\xf0\x00\x0f\x05\x2b\xf0\x22\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x00\x10\x05\x0a\xf0\x25\x00\x04\x10\x80\x3c", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[73]; - } -os_toplevel_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 72, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x04\x1b\x41\x20\x00\xc1\x20\x05\x41\x28\x03\xc1\x27\x01\x41\x28\x03\xc1\x30\x06\x41\x37\x00\xc1\x37\x05\x41\x3f\x03\xc1\x3e\x01\x41\x3f\x03\xc2\x33\x1b\x43\x0f\x00\xc3\x0f\x05\x43\x17\x03\xc3\x16\x01\x43\x17\x03\xc4\x02\x06\x44\x09\x00\xc4\x09\x05\x44\x11\x03\xc4\x10\x01\x44\x11\x03", -}; -static - struct _PyCode_DEF(3058) -os_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 1529, - }, - .co_consts = & os_toplevel_consts._object.ob_base.ob_base, - .co_names = & os_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = & os_toplevel_exceptiontable.ob_base.ob_base, - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & os_toplevel_consts_5_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & os_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x64\x01\x64\x02\x6c\x03\x5a\x04\x64\x01\x64\x03\x6c\x05\x6d\x06\x5a\x06\x01\x00\x02\x00\x65\x07\x65\x08\x65\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0a\x65\x02\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0c\x67\x00\x64\x04\xa2\x01\x5a\x0d\x64\x05\x84\x00\x5a\x0e\x64\x06\x84\x00\x5a\x0f\x64\x07\x65\x0c\x76\x00\x72\x6b\x64\x07\x5a\x10\x64\x08\x5a\x11\x64\x01\x64\x09\x6c\x12\x54\x00\x09\x00\x64\x01\x64\x0a\x6c\x12\x6d\x13\x5a\x13\x01\x00\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x02\x6c\x16\x5a\x17\x09\x00\x64\x01\x64\x0c\x6c\x12\x6d\x18\x5a\x18\x01\x00\x6e\x0b\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x02\x6c\x12\x5a\x12\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x65\x0f\x65\x12\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x5b\x12\x6e\x79\x64\x0d\x65\x0c\x76\x00\x72\x6a\x64\x0d\x5a\x10\x64\x0e\x5a\x11\x64\x01\x64\x09\x6c\x1a\x54\x00\x09\x00\x64\x01\x64\x0a\x6c\x1a\x6d\x13\x5a\x13\x01\x00\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x02\x6c\x1b\x5a\x17\x64\x01\x64\x02\x6c\x1a\x5a\x1a\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x65\x0f\x65\x1a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x5b\x1a\x09\x00\x64\x01\x64\x0c\x6c\x1a\x6d\x18\x5a\x18\x01\x00\x6e\x16\x23\x00\x65\x15\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x0f\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x65\x15\x64\x0f\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x65\x17\x65\x02\x6a\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\x3c\x00\x00\x00\x64\x01\x64\x11\x6c\x1d\x6d\x1e\x5a\x1e\x6d\x1f\x5a\x1f\x6d\x20\x5a\x20\x6d\x21\x5a\x21\x6d\x22\x5a\x22\x6d\x23\x5a\x23\x6d\x24\x5a\x24\x6d\x25\x5a\x25\x01\x00\x5b\x0c\x02\x00\x65\x0e\x64\x12\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x90\x02\x72\x57\x02\x00\x65\x26\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x27\x64\x13\x84\x00\x5a\x28\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x14\x64\x15\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x16\x64\x17\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x18\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1c\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1e\x64\x1f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x20\x64\x21\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x22\x64\x23\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x24\x64\x25\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x26\x64\x27\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x28\x64\x29\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2a\x64\x2b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2c\x64\x2d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2e\x64\x2f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x2e\x64\x30\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x31\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2b\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x14\x64\x15\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2c\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x32\x64\x33\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x34\x64\x17\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x35\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x36\x64\x37\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x36\x64\x38\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x39\x64\x3a\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\xa0\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x65\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3b\x64\x3c\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3d\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3e\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x3f\x64\x40\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x41\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x17\x02\x00\x65\x0e\x64\x42\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x28\x64\x43\x64\x41\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2e\x02\x00\x65\x29\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x2a\x02\x00\x65\x28\x64\x14\x64\x15\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x18\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x44\x64\x45\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x46\x64\x17\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x47\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x28\x64\x48\x64\x19\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1e\x64\x1f\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x49\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x4a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x1a\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x31\x64\x1d\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x28\x64\x4b\x64\x1b\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x2a\x5a\x2f\x5b\x2a\x5b\x18\x5b\x27\x5b\x28\x64\x01\x5a\x30\x64\x4c\x5a\x31\x64\x4d\x5a\x32\x64\x92\x64\x50\x84\x01\x5a\x33\x64\x51\x84\x00\x5a\x34\x64\x52\x84\x00\x5a\x35\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x53\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x93\x64\x55\x84\x01\x5a\x36\x64\x56\x84\x00\x5a\x37\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x57\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x38\x65\x03\x68\x02\x65\x2b\x6b\x01\x00\x00\x00\x00\x72\x28\x65\x39\x65\x03\x68\x02\x65\x2e\x6b\x01\x00\x00\x00\x00\x72\x20\x64\x94\x64\x4f\x64\x02\x64\x59\x9c\x02\x64\x5a\x84\x03\x5a\x3a\x64\x5b\x84\x00\x5a\x3b\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x5c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x5d\x84\x00\x5a\x3c\x64\x5e\x84\x00\x5a\x3d\x64\x5f\x84\x00\x5a\x3e\x64\x60\x84\x00\x5a\x3f\x64\x61\x84\x00\x5a\x40\x64\x62\x84\x00\x5a\x41\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x63\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x95\x64\x64\x84\x01\x5a\x42\x64\x95\x64\x65\x84\x01\x5a\x43\x64\x01\x64\x66\x6c\x05\x6d\x44\x5a\x44\x6d\x45\x5a\x45\x01\x00\x02\x00\x47\x00\x64\x67\x84\x00\x64\x68\x65\x44\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x46\x64\x69\x84\x00\x5a\x47\x02\x00\x65\x47\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x48\x5b\x47\x64\x95\x64\x6a\x84\x01\x5a\x49\x65\x10\x64\x0d\x6b\x03\x00\x00\x00\x00\x5a\x4a\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x6b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x4a\x72\x31\x64\x6c\x84\x00\x5a\x4b\x02\x00\x65\x46\x65\x48\x6a\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x65\x4b\x65\x4d\x65\x4b\x65\x4d\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x4e\x5b\x4b\x64\x95\x64\x6d\x84\x01\x5a\x4f\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x6e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x6f\x84\x00\x5a\x50\x02\x00\x65\x50\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x5a\x51\x5a\x52\x5b\x50\x02\x00\x65\x0e\x64\x70\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x59\x02\x00\x65\x0e\x64\x71\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x4e\x02\x00\x65\x0e\x64\x72\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x43\x64\x01\x5a\x53\x64\x4c\x78\x01\x5a\x54\x5a\x55\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x73\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x74\x84\x00\x5a\x56\x64\x75\x84\x00\x5a\x57\x64\x76\x84\x00\x5a\x58\x64\x77\x84\x00\x5a\x59\x64\x78\x84\x00\x5a\x5a\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x64\x79\xa2\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x71\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1d\x64\x7a\x84\x00\x5a\x5b\x64\x7b\x84\x00\x5a\x5c\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x7c\x64\x7d\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x65\x0e\x64\x7e\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1d\x64\x7f\x84\x00\x5a\x5d\x64\x80\x84\x00\x5a\x5e\x65\x0d\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x81\x64\x82\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x65\x02\x6a\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x83\x6b\x03\x00\x00\x00\x00\x72\x26\x64\x96\x64\x86\x84\x01\x5a\x60\x02\x00\x47\x00\x64\x87\x84\x00\x64\x88\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x61\x65\x0d\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x89\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x97\x64\x8a\x84\x01\x5a\x62\x64\x8b\x84\x00\x5a\x63\x02\x00\x65\x0e\x64\x8c\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x09\x65\x63\x5a\x64\x64\x8c\x65\x64\x5f\x65\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x47\x00\x64\x8d\x84\x00\x64\x8e\x65\x01\x6a\x66\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x67\x65\x10\x64\x0d\x6b\x02\x00\x00\x00\x00\x72\x12\x02\x00\x47\x00\x64\x8f\x84\x00\x64\x90\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x68\x64\x91\x84\x00\x5a\x69\x64\x02\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void os_do_patchups(void) { -} - -PyObject * -_Py_get_os_toplevel(void) -{ - os_do_patchups(); - return Py_NewRef((PyObject *) &os_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2999]; - } -site_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2998, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x70\x70\x65\x6e\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x73\x20\x66\x6f\x72\x20\x74\x68\x69\x72\x64\x2d\x70\x61\x72\x74\x79\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2e\x0a\x0a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x0a\x2a\x20\x54\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x64\x75\x72\x69\x6e\x67\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x61\x74\x69\x6f\x6e\x2e\x20\x2a\x0a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x0a\x0a\x54\x68\x69\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x6e\x64\x20\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x70\x61\x74\x68\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x2e\x20\x20\x4f\x6e\x0a\x55\x6e\x69\x78\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x4d\x61\x63\x20\x4f\x53\x58\x29\x2c\x20\x69\x74\x20\x73\x74\x61\x72\x74\x73\x20\x77\x69\x74\x68\x20\x73\x79\x73\x2e\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x0a\x73\x79\x73\x2e\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x28\x69\x66\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x74\x29\x20\x61\x6e\x64\x20\x61\x70\x70\x65\x6e\x64\x73\x0a\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x3c\x76\x65\x72\x73\x69\x6f\x6e\x3e\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x2e\x0a\x4f\x6e\x20\x6f\x74\x68\x65\x72\x20\x70\x6c\x61\x74\x66\x6f\x72\x6d\x73\x20\x28\x73\x75\x63\x68\x20\x61\x73\x20\x57\x69\x6e\x64\x6f\x77\x73\x29\x2c\x20\x69\x74\x20\x74\x72\x69\x65\x73\x20\x65\x61\x63\x68\x20\x6f\x66\x20\x74\x68\x65\x0a\x70\x72\x65\x66\x69\x78\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2c\x20\x61\x73\x20\x77\x65\x6c\x6c\x20\x61\x73\x20\x77\x69\x74\x68\x20\x6c\x69\x62\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x61\x70\x70\x65\x6e\x64\x65\x64\x2e\x20\x20\x54\x68\x65\x0a\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x20\x69\x66\x20\x74\x68\x65\x79\x20\x65\x78\x69\x73\x74\x2c\x20\x61\x72\x65\x20\x61\x70\x70\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2c\x20\x61\x6e\x64\x0a\x61\x6c\x73\x6f\x20\x69\x6e\x73\x70\x65\x63\x74\x65\x64\x20\x66\x6f\x72\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x73\x2e\x0a\x0a\x49\x66\x20\x61\x20\x66\x69\x6c\x65\x20\x6e\x61\x6d\x65\x64\x20\x22\x70\x79\x76\x65\x6e\x76\x2e\x63\x66\x67\x22\x20\x65\x78\x69\x73\x74\x73\x20\x6f\x6e\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x62\x6f\x76\x65\x20\x73\x79\x73\x2e\x65\x78\x65\x63\x75\x74\x61\x62\x6c\x65\x2c\x0a\x73\x79\x73\x2e\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x20\x73\x79\x73\x2e\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x61\x72\x65\x20\x73\x65\x74\x20\x74\x6f\x20\x74\x68\x61\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x61\x6e\x64\x0a\x69\x74\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x63\x68\x65\x63\x6b\x65\x64\x20\x66\x6f\x72\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x28\x73\x79\x73\x2e\x62\x61\x73\x65\x5f\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x0a\x73\x79\x73\x2e\x62\x61\x73\x65\x5f\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x62\x65\x20\x74\x68\x65\x20\x22\x72\x65\x61\x6c\x22\x20\x70\x72\x65\x66\x69\x78\x65\x73\x20\x6f\x66\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x0a\x69\x6e\x73\x74\x61\x6c\x6c\x61\x74\x69\x6f\x6e\x29\x2e\x20\x49\x66\x20\x22\x70\x79\x76\x65\x6e\x76\x2e\x63\x66\x67\x22\x20\x28\x61\x20\x62\x6f\x6f\x74\x73\x74\x72\x61\x70\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x29\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x0a\x74\x68\x65\x20\x6b\x65\x79\x20\x22\x69\x6e\x63\x6c\x75\x64\x65\x2d\x73\x79\x73\x74\x65\x6d\x2d\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x22\x20\x73\x65\x74\x20\x74\x6f\x20\x61\x6e\x79\x74\x68\x69\x6e\x67\x20\x6f\x74\x68\x65\x72\x20\x74\x68\x61\x6e\x20\x22\x66\x61\x6c\x73\x65\x22\x0a\x28\x63\x61\x73\x65\x2d\x69\x6e\x73\x65\x6e\x73\x69\x74\x69\x76\x65\x29\x2c\x20\x74\x68\x65\x20\x73\x79\x73\x74\x65\x6d\x2d\x6c\x65\x76\x65\x6c\x20\x70\x72\x65\x66\x69\x78\x65\x73\x20\x77\x69\x6c\x6c\x20\x73\x74\x69\x6c\x6c\x20\x61\x6c\x73\x6f\x20\x62\x65\x0a\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x3b\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x74\x68\x65\x79\x20\x77\x6f\x6e\x27\x74\x2e\x0a\x0a\x41\x6c\x6c\x20\x6f\x66\x20\x74\x68\x65\x20\x72\x65\x73\x75\x6c\x74\x69\x6e\x67\x20\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x20\x69\x66\x20\x74\x68\x65\x79\x20\x65\x78\x69\x73\x74\x2c\x20\x61\x72\x65\x0a\x61\x70\x70\x65\x6e\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2c\x20\x61\x6e\x64\x20\x61\x6c\x73\x6f\x20\x69\x6e\x73\x70\x65\x63\x74\x65\x64\x20\x66\x6f\x72\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x0a\x66\x69\x6c\x65\x73\x2e\x0a\x0a\x41\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x20\x69\x73\x20\x61\x20\x66\x69\x6c\x65\x20\x77\x68\x6f\x73\x65\x20\x6e\x61\x6d\x65\x20\x68\x61\x73\x20\x74\x68\x65\x20\x66\x6f\x72\x6d\x0a\x3c\x70\x61\x63\x6b\x61\x67\x65\x3e\x2e\x70\x74\x68\x3b\x20\x69\x74\x73\x20\x63\x6f\x6e\x74\x65\x6e\x74\x73\x20\x61\x72\x65\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x28\x6f\x6e\x65\x20\x70\x65\x72\x20\x6c\x69\x6e\x65\x29\x0a\x74\x6f\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2e\x20\x20\x4e\x6f\x6e\x2d\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x28\x6f\x72\x0a\x6e\x6f\x6e\x2d\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x29\x20\x61\x72\x65\x20\x6e\x65\x76\x65\x72\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x3b\x20\x6e\x6f\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x0a\x73\x79\x73\x2e\x70\x61\x74\x68\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x6f\x6e\x63\x65\x2e\x20\x20\x42\x6c\x61\x6e\x6b\x20\x6c\x69\x6e\x65\x73\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x73\x20\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x0a\x27\x23\x27\x20\x61\x72\x65\x20\x73\x6b\x69\x70\x70\x65\x64\x2e\x20\x4c\x69\x6e\x65\x73\x20\x73\x74\x61\x72\x74\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x27\x69\x6d\x70\x6f\x72\x74\x27\x20\x61\x72\x65\x20\x65\x78\x65\x63\x75\x74\x65\x64\x2e\x0a\x0a\x46\x6f\x72\x20\x65\x78\x61\x6d\x70\x6c\x65\x2c\x20\x73\x75\x70\x70\x6f\x73\x65\x20\x73\x79\x73\x2e\x70\x72\x65\x66\x69\x78\x20\x61\x6e\x64\x20\x73\x79\x73\x2e\x65\x78\x65\x63\x5f\x70\x72\x65\x66\x69\x78\x20\x61\x72\x65\x20\x73\x65\x74\x20\x74\x6f\x0a\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x20\x61\x6e\x64\x20\x74\x68\x65\x72\x65\x20\x69\x73\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x32\x2e\x35\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x0a\x77\x69\x74\x68\x20\x74\x68\x72\x65\x65\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2c\x20\x66\x6f\x6f\x2c\x20\x62\x61\x72\x20\x61\x6e\x64\x20\x73\x70\x61\x6d\x2c\x20\x61\x6e\x64\x20\x74\x77\x6f\x20\x70\x61\x74\x68\x0a\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x73\x2c\x20\x66\x6f\x6f\x2e\x70\x74\x68\x20\x61\x6e\x64\x20\x62\x61\x72\x2e\x70\x74\x68\x2e\x20\x20\x41\x73\x73\x75\x6d\x65\x20\x66\x6f\x6f\x2e\x70\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x74\x68\x65\x0a\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x3a\x0a\x0a\x20\x20\x23\x20\x66\x6f\x6f\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x0a\x20\x20\x66\x6f\x6f\x0a\x20\x20\x62\x61\x72\x0a\x20\x20\x62\x6c\x65\x74\x63\x68\x0a\x0a\x61\x6e\x64\x20\x62\x61\x72\x2e\x70\x74\x68\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x3a\x0a\x0a\x20\x20\x23\x20\x62\x61\x72\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x0a\x20\x20\x62\x61\x72\x0a\x0a\x54\x68\x65\x6e\x20\x74\x68\x65\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x72\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x2c\x20\x69\x6e\x20\x74\x68\x69\x73\x20\x6f\x72\x64\x65\x72\x3a\x0a\x0a\x20\x20\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x32\x2e\x35\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x2f\x62\x61\x72\x0a\x20\x20\x2f\x75\x73\x72\x2f\x6c\x6f\x63\x61\x6c\x2f\x6c\x69\x62\x2f\x70\x79\x74\x68\x6f\x6e\x32\x2e\x35\x2f\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x2f\x66\x6f\x6f\x0a\x0a\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x62\x6c\x65\x74\x63\x68\x20\x69\x73\x20\x6f\x6d\x69\x74\x74\x65\x64\x20\x62\x65\x63\x61\x75\x73\x65\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x65\x78\x69\x73\x74\x3b\x20\x62\x61\x72\x20\x70\x72\x65\x63\x65\x64\x65\x73\x20\x66\x6f\x6f\x0a\x62\x65\x63\x61\x75\x73\x65\x20\x62\x61\x72\x2e\x70\x74\x68\x20\x63\x6f\x6d\x65\x73\x20\x61\x6c\x70\x68\x61\x62\x65\x74\x69\x63\x61\x6c\x6c\x79\x20\x62\x65\x66\x6f\x72\x65\x20\x66\x6f\x6f\x2e\x70\x74\x68\x3b\x20\x61\x6e\x64\x20\x73\x70\x61\x6d\x20\x69\x73\x0a\x6f\x6d\x69\x74\x74\x65\x64\x20\x62\x65\x63\x61\x75\x73\x65\x20\x69\x74\x20\x69\x73\x20\x6e\x6f\x74\x20\x6d\x65\x6e\x74\x69\x6f\x6e\x65\x64\x20\x69\x6e\x20\x65\x69\x74\x68\x65\x72\x20\x70\x61\x74\x68\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x66\x69\x6c\x65\x2e\x0a\x0a\x54\x68\x65\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x61\x6c\x73\x6f\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x65\x64\x20\x74\x6f\x20\x65\x6e\x61\x62\x6c\x65\x0a\x63\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x20\x66\x6f\x72\x20\x73\x79\x73\x74\x65\x6d\x73\x20\x74\x68\x61\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x69\x74\x2e\x20\x20\x54\x68\x69\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x6f\x76\x65\x72\x72\x69\x64\x64\x65\x6e\x20\x69\x6e\x0a\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x2c\x20\x75\x73\x65\x72\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x20\x6f\x72\x20\x50\x59\x54\x48\x4f\x4e\x53\x54\x41\x52\x54\x55\x50\x2e\x20\x20\x53\x74\x61\x72\x74\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x69\x6e\x0a\x69\x73\x6f\x6c\x61\x74\x65\x64\x20\x6d\x6f\x64\x65\x20\x28\x2d\x49\x29\x20\x64\x69\x73\x61\x62\x6c\x65\x73\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x2e\x0a\x0a\x41\x66\x74\x65\x72\x20\x74\x68\x65\x73\x65\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x73\x2c\x20\x61\x6e\x20\x61\x74\x74\x65\x6d\x70\x74\x20\x69\x73\x20\x6d\x61\x64\x65\x20\x74\x6f\x20\x69\x6d\x70\x6f\x72\x74\x20\x61\x20\x6d\x6f\x64\x75\x6c\x65\x0a\x6e\x61\x6d\x65\x64\x20\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x2c\x20\x77\x68\x69\x63\x68\x20\x63\x61\x6e\x20\x70\x65\x72\x66\x6f\x72\x6d\x20\x61\x72\x62\x69\x74\x72\x61\x72\x79\x20\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x0a\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x63\x75\x73\x74\x6f\x6d\x69\x7a\x61\x74\x69\x6f\x6e\x73\x2e\x20\x20\x49\x66\x20\x74\x68\x69\x73\x20\x69\x6d\x70\x6f\x72\x74\x20\x66\x61\x69\x6c\x73\x20\x77\x69\x74\x68\x20\x61\x6e\x0a\x49\x6d\x70\x6f\x72\x74\x45\x72\x72\x6f\x72\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x2c\x20\x69\x74\x20\x69\x73\x20\x73\x69\x6c\x65\x6e\x74\x6c\x79\x20\x69\x67\x6e\x6f\x72\x65\x64\x2e\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -site_toplevel_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_verbose._ascii.ob_base, - & const_str_print._ascii.ob_base, - &_Py_ID(stderr), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -site_toplevel_consts_3_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str__trace = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_trace", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[53]; - } -site_toplevel_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 52, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x07\x0a\x84\x79\xd4\x07\x18\xf0\x00\x01\x05\x28\xdd\x08\x0d\x88\x67\x9d\x43\x9c\x4a\xd0\x08\x27\xd1\x08\x27\xd4\x08\x27\xd0\x08\x27\xd0\x08\x27\xd0\x08\x27\xf0\x03\x01\x05\x28\xf0\x00\x01\x05\x28", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -site_toplevel_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_message._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(98) -site_toplevel_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & site_toplevel_consts_3_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 92, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str__trace._ascii.ob_base, - .co_qualname = & const_str__trace._ascii.ob_base, - .co_linetable = & site_toplevel_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x1d\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xac\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -site_toplevel_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - &_Py_ID(path), - &_Py_ID(join), - & const_str_abspath._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_normcase._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_makepath = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "makepath", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[102]; - } -site_toplevel_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 101, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0a\x0c\x8c\x27\x8c\x2c\x98\x05\xd0\x0a\x1e\x80\x43\xf0\x02\x03\x05\x0d\xdd\x0e\x10\x8c\x67\x8f\x6f\x8a\x6f\x98\x63\xd1\x0e\x22\xd4\x0e\x22\x88\x03\x88\x03\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xf0\x00\x01\x05\x0d\xd8\x08\x0c\x88\x04\xf0\x03\x01\x05\x0d\xf8\xf8\xf8\xe0\x0b\x0e\x95\x02\x94\x07\xd7\x10\x20\xd2\x10\x20\xa0\x13\xd1\x10\x25\xd4\x10\x25\xd0\x0b\x25\xd0\x04\x25", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -site_toplevel_consts_4_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x95\x1f\x35\x00\xb5\x0a\x41\x02\x03\xc1\x01\x01\x41\x02\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_paths._ascii.ob_base, - & const_str_dir._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(204) -site_toplevel_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 102, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 97, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_makepath._ascii.ob_base, - .co_qualname = & const_str_makepath._ascii.ob_base, - .co_linetable = & site_toplevel_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x8e\x00\x7d\x01\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x10\x23\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[70]; - } -site_toplevel_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 69, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set all module __file__ and __cached__ attributes to an absolute path", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_5_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__frozen_importlib._ascii.ob_base, - & const_str__frozen_importlib_external._ascii.ob_base, - }, - }, -}; -// TODO: The above tuple should be a frozenset -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & site_toplevel_consts_5_consts_0._ascii.ob_base, - Py_None, - & site_toplevel_consts_5_consts_2._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -site_toplevel_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & const_str_set._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - &_Py_ID(values), - &_Py_ID(__loader__), - &_Py_ID(__module__), - & const_str_AttributeError._ascii.ob_base, - &_Py_ID(__spec__), - & const_str_loader._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_abspath._ascii.ob_base, - &_Py_ID(__file__), - & const_str_OSError._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str___cached__._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_abs_paths = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "abs_paths", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[308]; - } -site_toplevel_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 307, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0d\x10\x95\x13\x94\x1b\xd7\x11\x23\xd2\x11\x23\xd1\x11\x25\xd4\x11\x25\xd1\x0d\x26\xd4\x0d\x26\xf0\x00\x12\x05\x11\xf0\x00\x12\x05\x11\x88\x01\xd8\x18\x1c\x88\x0d\xf0\x02\x06\x09\x15\xd8\x1c\x1d\x9c\x4c\xd4\x1c\x33\x88\x4d\x88\x4d\xf8\xdd\x0f\x1d\xf0\x00\x04\x09\x15\xf0\x00\x04\x09\x15\xf0\x00\x04\x09\x15\xf0\x02\x03\x0d\x15\xd8\x20\x21\xa4\x0a\xd4\x20\x31\xd4\x20\x3c\x90\x0d\x90\x0d\xf8\xdd\x13\x21\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf8\xf0\x07\x04\x09\x15\xf8\xf8\xf8\xf0\x0a\x00\x0c\x19\xd0\x20\x53\xd0\x0b\x53\xd0\x0b\x53\xd8\x0c\x14\xf0\x02\x03\x09\x11\xdd\x19\x1b\x9c\x17\x9f\x1f\x9a\x1f\xa8\x11\xac\x1a\xd1\x19\x34\xd4\x19\x34\x88\x41\x8c\x4a\x88\x4a\xf8\xdd\x10\x1e\xa5\x07\xad\x19\xd0\x0f\x33\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x04\x03\x09\x11\xdd\x1b\x1d\x9c\x37\x9f\x3f\x9a\x3f\xa8\x31\xac\x3c\xd1\x1b\x38\xd4\x1b\x38\x88\x41\x8c\x4c\x88\x4c\xf8\xdd\x10\x1e\xa5\x07\xad\x19\xd0\x0f\x33\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xf0\x23\x12\x05\x11\xf0\x00\x12\x05\x11", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[88]; - } -site_toplevel_consts_5_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 87, - }, - .ob_shash = -1, - .ob_sval = "\xb1\x0c\x3e\x02\xbe\x0a\x41\x2e\x05\xc1\x09\x11\x41\x1b\x04\xc1\x1a\x01\x41\x2e\x05\xc1\x1b\x0a\x41\x28\x07\xc1\x25\x02\x41\x2e\x05\xc1\x27\x01\x41\x28\x07\xc1\x28\x03\x41\x2e\x05\xc1\x2d\x01\x41\x2e\x05\xc1\x37\x29\x42\x21\x02\xc2\x21\x17\x42\x3b\x05\xc2\x3a\x01\x42\x3b\x05\xc2\x3f\x29\x43\x29\x02\xc3\x29\x17\x44\x03\x05\xc4\x02\x01\x44\x03\x05", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_loader_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "loader_module", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_m._ascii.ob_base, - & const_str_loader_module._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(528) -site_toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 264, - }, - .co_consts = & site_toplevel_consts_5_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_5_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 106, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_abs_paths._ascii.ob_base, - .co_qualname = & const_str_abs_paths._ascii.ob_base, - .co_linetable = & site_toplevel_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\xd9\x7d\x00\x64\x01\x7d\x01\x09\x00\x7c\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x33\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x26\x01\x00\x09\x00\x7c\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x6e\x10\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x01\x64\x02\x76\x01\x72\x01\x8c\x4a\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x1d\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x8c\xbd\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x03\x24\x00\x72\x03\x01\x00\x59\x00\x8c\xd6\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[76]; - } -site_toplevel_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 75, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x52\x65\x6d\x6f\x76\x65\x20\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x66\x72\x6f\x6d\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x20\x61\x6c\x6f\x6e\x67\x20\x77\x69\x74\x68\x20\x6d\x61\x6b\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x20\x20\x20\x20\x61\x62\x73\x6f\x6c\x75\x74\x65", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & site_toplevel_consts_6_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -site_toplevel_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_set._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(path), - & const_str_makepath._ascii.ob_base, - &_Py_ID(append), - &_Py_ID(add), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_removeduppaths = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "removeduppaths", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[119]; - } -site_toplevel_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 118, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x09\x0b\x80\x41\xdd\x12\x15\x91\x25\x94\x25\x80\x4b\xdd\x0f\x12\x8c\x78\xf0\x00\x07\x05\x25\xf0\x00\x07\x05\x25\x88\x03\xf5\x08\x00\x18\x20\xa0\x03\x91\x7d\x94\x7d\x89\x0c\x88\x03\x88\x57\xd8\x0b\x12\x98\x2b\xd0\x0b\x25\xd0\x0b\x25\xd8\x0c\x0d\x8f\x48\x8a\x48\x90\x53\x89\x4d\x8c\x4d\x88\x4d\xd8\x0c\x17\x8f\x4f\x8a\x4f\x98\x47\xd1\x0c\x24\xd4\x0c\x24\xd0\x0c\x24\xf8\xd8\x12\x13\x85\x43\x84\x48\x88\x51\x88\x51\x88\x51\x81\x4b\xd8\x0b\x16\xd0\x04\x16", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_L = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "L", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_known_paths = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "known_paths", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_dircase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dircase", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -site_toplevel_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_L._ascii.ob_base, - & const_str_known_paths._ascii.ob_base, - & const_str_dir._ascii.ob_base, - & const_str_dircase._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(230) -site_toplevel_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 115, - }, - .co_consts = & site_toplevel_consts_6_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 129, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_removeduppaths._ascii.ob_base, - .co_qualname = & const_str_removeduppaths._ascii.ob_base, - .co_linetable = & site_toplevel_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7d\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x42\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x03\x7c\x01\x76\x01\x72\x2a\x7c\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x43\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x01\x85\x02\x3c\x00\x00\x00\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[70]; - } -site_toplevel_consts_7_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 69, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return a set containing all existing file system items from sys.path.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -site_toplevel_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & site_toplevel_consts_7_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -site_toplevel_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_set._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(path), - & const_str_os._ascii.ob_base, - & const_str_exists._ascii.ob_base, - & const_str_makepath._ascii.ob_base, - &_Py_ID(add), - & const_str_TypeError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__init_pathinfo = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_init_pathinfo", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[124]; - } -site_toplevel_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 123, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x08\x0b\x89\x05\x8c\x05\x80\x41\xdd\x10\x13\x94\x08\xf0\x00\x06\x05\x15\xf0\x00\x06\x05\x15\x88\x04\xf0\x02\x05\x09\x15\xdd\x0f\x11\x8c\x77\x8f\x7e\x8a\x7e\x98\x64\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x02\x0d\x20\xdd\x1e\x26\xa0\x74\x99\x6e\x9c\x6e\x91\x0b\x90\x01\x90\x38\xd8\x10\x11\x97\x05\x92\x05\x90\x68\x91\x0f\x94\x0f\x90\x0f\xf8\xf8\xdd\x0f\x18\xf0\x00\x01\x09\x15\xf0\x00\x01\x09\x15\xf0\x00\x01\x09\x15\xd8\x0c\x14\x88\x48\xf0\x03\x01\x09\x15\xf8\xf8\xf8\xe0\x0b\x0c\x80\x48", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -site_toplevel_consts_7_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\x9e\x41\x06\x41\x25\x02\xc1\x25\x0a\x41\x32\x05\xc1\x31\x01\x41\x32\x05", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_itemcase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "itemcase", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -site_toplevel_consts_7_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_d._ascii.ob_base, - & const_str_item._ascii.ob_base, - &_Py_ID(_), - & const_str_itemcase._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(238) -site_toplevel_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 119, - }, - .co_consts = & site_toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_7_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 148, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_7_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str__init_pathinfo._ascii.ob_base, - .co_qualname = & const_str__init_pathinfo._ascii.ob_base, - .co_linetable = & site_toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x59\x7d\x01\x09\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x27\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x02\x7d\x03\x7c\x00\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x4a\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x8c\x56\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[215]; - } -site_toplevel_consts_8_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 214, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x50\x72\x6f\x63\x65\x73\x73\x20\x61\x20\x2e\x70\x74\x68\x20\x66\x69\x6c\x65\x20\x77\x69\x74\x68\x69\x6e\x20\x74\x68\x65\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x46\x6f\x72\x20\x65\x61\x63\x68\x20\x6c\x69\x6e\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x2c\x20\x65\x69\x74\x68\x65\x72\x20\x63\x6f\x6d\x62\x69\x6e\x65\x20\x69\x74\x20\x77\x69\x74\x68\x20\x73\x69\x74\x65\x64\x69\x72\x20\x74\x6f\x20\x61\x20\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x61\x6e\x64\x20\x61\x64\x64\x20\x74\x68\x61\x74\x20\x74\x6f\x20\x6b\x6e\x6f\x77\x6e\x5f\x70\x61\x74\x68\x73\x2c\x20\x6f\x72\x20\x65\x78\x65\x63\x75\x74\x65\x20\x69\x74\x20\x69\x66\x20\x69\x74\x20\x73\x74\x61\x72\x74\x73\x20\x77\x69\x74\x68\x20\x27\x69\x6d\x70\x6f\x72\x74\x20\x27\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_st_flags = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "st_flags", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_st_file_attributes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "st_file_attributes", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[28]; - } -site_toplevel_consts_8_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 27, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Skipping hidden .pth file: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -site_toplevel_consts_8_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Processing .pth file: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -site_toplevel_consts_8_consts_13_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x69\x6d\x70\x6f\x72\x74\x09", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_8_consts_13 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_18_consts_1_1._ascii.ob_base, - & site_toplevel_consts_8_consts_13_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[35]; - } -site_toplevel_consts_8_consts_14 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 34, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x72\x72\x6f\x72\x20\x70\x72\x6f\x63\x65\x73\x73\x69\x6e\x67\x20\x6c\x69\x6e\x65\x20\x7b\x3a\x64\x7d\x20\x6f\x66\x20\x7b\x7d\x3a\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -site_toplevel_consts_8_consts_17 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -site_toplevel_consts_8_consts_18 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x0a\x52\x65\x6d\x61\x69\x6e\x64\x65\x72\x20\x6f\x66\x20\x66\x69\x6c\x65\x20\x69\x67\x6e\x6f\x72\x65\x64", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[19]; - }_object; - } -site_toplevel_consts_8_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 19, - }, - .ob_item = { - & site_toplevel_consts_8_consts_0._ascii.ob_base, - Py_None, - Py_True, - Py_False, - & const_str_st_flags._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & const_str_st_file_attributes._ascii.ob_base, - & site_toplevel_consts_8_consts_7._ascii.ob_base, - & site_toplevel_consts_8_consts_8._ascii.ob_base, - &_Py_ID(locale), - & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_18_consts_1_0._ascii.ob_base, - &_Py_STR(empty), - & site_toplevel_consts_8_consts_13._object.ob_base.ob_base, - & site_toplevel_consts_8_consts_14._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, - & site_toplevel_consts_8_consts_17._ascii.ob_base, - & site_toplevel_consts_8_consts_18._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_UF_HIDDEN = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UF_HIDDEN", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_FILE_ATTRIBUTE_HIDDEN = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_HIDDEN", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_strip = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "strip", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_traceback = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "traceback", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_format_exception = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "format_exception", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_exc_info = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exc_info", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[32]; - }_object; - } -site_toplevel_consts_8_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 32, - }, - .ob_item = { - & const_str__init_pathinfo._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(path), - &_Py_ID(join), - & const_str_lstat._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - &_Py_ID(getattr), - & const_str_stat._ascii.ob_base, - & const_str_UF_HIDDEN._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_HIDDEN._ascii.ob_base, - & const_str__trace._ascii.ob_base, - & const_str_io._ascii.ob_base, - &_Py_ID(TextIOWrapper), - & const_str_open_code._ascii.ob_base, - & const_str_enumerate._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - & const_str_strip._ascii.ob_base, - & const_str_exec._ascii.ob_base, - & const_str_rstrip._ascii.ob_base, - & const_str_makepath._ascii.ob_base, - & const_str_exists._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(append), - &_Py_ID(add), - & const_str_Exception._ascii.ob_base, - & const_str_print._ascii.ob_base, - & const_str_format._ascii.ob_base, - &_Py_ID(stderr), - & const_str_traceback._ascii.ob_base, - & const_str_format_exception._ascii.ob_base, - & const_str_exc_info._ascii.ob_base, - & const_str_splitlines._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_addpackage = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "addpackage", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[825]; - } -site_toplevel_consts_8_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 824, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x08\x13\xd0\x07\x1a\xdd\x16\x24\xd1\x16\x26\xd4\x16\x26\x88\x0b\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x15\x88\x05\xdd\x0f\x11\x8c\x77\x8f\x7c\x8a\x7c\x98\x47\xa0\x54\xd1\x0f\x2a\xd4\x0f\x2a\x80\x48\xf0\x02\x03\x05\x0f\xdd\x0d\x0f\x8c\x58\x90\x68\xd1\x0d\x1f\xd4\x0d\x1f\x88\x02\x88\x02\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xd8\x08\x0e\x88\x06\x88\x06\xf0\x03\x01\x05\x0f\xf8\xf8\xf8\xe5\x09\x10\x90\x12\x90\x5a\xa0\x11\xd1\x09\x23\xd4\x09\x23\xa5\x64\xa4\x6e\xd1\x09\x34\xf0\x00\x03\x05\x0f\xdd\x09\x10\x90\x12\xd0\x15\x29\xa8\x31\xd1\x09\x2d\xd4\x09\x2d\xb5\x04\xd4\x30\x4a\xd1\x09\x4a\xf0\x03\x03\x05\x0f\xe5\x08\x0e\xd0\x0f\x39\xa8\x58\xd0\x0f\x39\xd0\x0f\x39\xd1\x08\x3a\xd4\x08\x3a\xd0\x08\x3a\xd8\x08\x0e\x88\x06\xdd\x04\x0a\xd0\x0b\x30\xa0\x48\xd0\x0b\x30\xd0\x0b\x30\xd1\x04\x31\xd4\x04\x31\xd0\x04\x31\xf0\x02\x05\x05\x0f\xf5\x06\x00\x0d\x0f\xd4\x0c\x1c\x9d\x52\x9c\x5c\xa8\x28\xd1\x1d\x33\xd4\x1d\x33\xb8\x68\xd0\x0c\x47\xd1\x0c\x47\xd4\x0c\x47\x88\x01\x88\x01\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xd8\x08\x0e\x88\x06\x88\x06\xf0\x03\x01\x05\x0f\xf8\xf8\xf8\xe0\x09\x0a\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xdd\x17\x20\xa0\x11\x91\x7c\x94\x7c\xf0\x00\x16\x09\x16\xf1\x00\x16\x09\x16\x89\x47\x88\x41\x88\x74\xd8\x0f\x13\x8f\x7f\x8a\x7f\x98\x73\xd1\x0f\x23\xd4\x0f\x23\xf0\x00\x01\x0d\x19\xd8\x10\x18\xd8\x0f\x13\x8f\x7a\x8a\x7a\x89\x7c\x8c\x7c\x98\x72\xd2\x0f\x21\xd0\x0f\x21\xd8\x10\x18\xf0\x02\x11\x0d\x16\xd8\x13\x17\x97\x3f\x92\x3f\xd0\x23\x3a\xd1\x13\x3b\xd4\x13\x3b\xf0\x00\x02\x11\x1d\xdd\x14\x18\x98\x14\x91\x4a\x94\x4a\x90\x4a\xd8\x14\x1c\xd8\x17\x1b\x97\x7b\x92\x7b\x91\x7d\x94\x7d\x90\x04\xdd\x1f\x27\xa8\x07\xb0\x14\xd1\x1f\x36\xd4\x1f\x36\x91\x0c\x90\x03\x90\x57\xd8\x17\x1e\xa0\x2b\xd0\x17\x2d\xd0\x17\x2d\xb5\x22\xb4\x27\xb7\x2e\xb2\x2e\xc0\x13\xd1\x32\x45\xd4\x32\x45\xd0\x17\x2d\xdd\x14\x17\x94\x48\x97\x4f\x92\x4f\xa0\x43\xd1\x14\x28\xd4\x14\x28\xd0\x14\x28\xd8\x14\x1f\x97\x4f\x92\x4f\xa0\x47\xd1\x14\x2c\xd4\x14\x2c\xd0\x14\x2c\xf8\xf8\xdd\x13\x1c\xf0\x00\x08\x0d\x16\xf0\x00\x08\x0d\x16\xf0\x00\x08\x0d\x16\xdd\x10\x15\xd0\x16\x3b\xd7\x16\x42\xd2\x16\x42\xc0\x31\xc0\x51\xc1\x33\xc8\x08\xd1\x16\x51\xd4\x16\x51\xdd\x1b\x1e\x9c\x3a\xf0\x03\x01\x11\x27\xf1\x00\x01\x11\x27\xf4\x00\x01\x11\x27\xf0\x00\x01\x11\x27\xe0\x10\x20\xd0\x10\x20\xd0\x10\x20\xd0\x10\x20\xd8\x1e\x38\x98\x69\xd4\x1e\x38\xbd\x23\xbc\x2c\xb9\x2e\xbc\x2e\xd0\x1e\x49\xf0\x00\x02\x11\x3a\xf0\x00\x02\x11\x3a\x90\x46\xd8\x20\x26\xd7\x20\x31\xd2\x20\x31\xd1\x20\x33\xd4\x20\x33\xf0\x00\x01\x15\x3a\xf0\x00\x01\x15\x3a\x98\x04\xdd\x18\x1d\x98\x64\xa0\x34\x99\x69\xad\x63\xac\x6a\xd0\x18\x39\xd1\x18\x39\xd4\x18\x39\xd0\x18\x39\xd0\x18\x39\xf0\x03\x01\x15\x3a\xe5\x10\x15\xd0\x16\x33\xbd\x23\xbc\x2a\xd0\x10\x45\xd1\x10\x45\xd4\x10\x45\xd0\x10\x45\xd8\x10\x15\x90\x05\x90\x05\xf0\x11\x08\x0d\x16\xf8\xf8\xf8\xf0\x1f\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf1\x00\x17\x05\x16\xf4\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf8\xf8\xf8\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x00\x17\x05\x16\xf0\x30\x00\x08\x0d\xf0\x00\x01\x05\x1b\xd8\x16\x1a\x88\x0b\xd8\x0b\x16\xd0\x04\x16", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[105]; - } -site_toplevel_consts_8_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 104, - }, - .ob_shash = -1, - .ob_sval = "\xb7\x14\x41\x0c\x00\xc1\x0c\x0a\x41\x1a\x03\xc1\x19\x01\x41\x1a\x03\xc3\x00\x28\x43\x29\x00\xc3\x29\x0a\x43\x37\x03\xc3\x36\x01\x43\x37\x03\xc3\x3c\x41\x05\x4a\x27\x03\xc5\x02\x24\x47\x26\x04\xc5\x26\x01\x4a\x27\x03\xc5\x27\x41\x3e\x47\x26\x04\xc7\x25\x01\x4a\x27\x03\xc7\x26\x42\x2e\x4a\x18\x07\xca\x14\x03\x4a\x27\x03\xca\x17\x01\x4a\x18\x07\xca\x18\x03\x4a\x27\x03\xca\x27\x04\x4a\x2b\x07\xca\x2e\x01\x4a\x2b\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_sitedir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sitedir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_record = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "record", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -site_toplevel_consts_8_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_sitedir._ascii.ob_base, - &_Py_ID(name), - & const_str_known_paths._ascii.ob_base, - &_Py_ID(reset), - & const_str_fullname._ascii.ob_base, - & const_str_st._ascii.ob_base, - & const_str_f._ascii.ob_base, - & const_str_n._ascii.ob_base, - &_Py_ID(line), - & const_str_dir._ascii.ob_base, - & const_str_dircase._ascii.ob_base, - & const_str_traceback._ascii.ob_base, - & const_str_record._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(1392) -site_toplevel_consts_8 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 696, - }, - .co_consts = & site_toplevel_consts_8_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_8_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_8_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 9, - .co_firstlineno = 161, - .co_nlocalsplus = 13, - .co_nlocals = 13, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_8_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_addpackage._ascii.ob_base, - .co_qualname = & const_str_addpackage._ascii.ob_base, - .co_linetable = & site_toplevel_consts_8_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x80\x11\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x02\x7d\x03\x6e\x02\x64\x03\x7d\x03\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x09\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x11\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x04\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x01\x00\x00\x73\x1e\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x06\x64\x05\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x01\x00\x00\x72\x14\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x7c\x04\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x04\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xac\x0a\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x6e\x11\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x06\x35\x00\x01\x00\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x90\x01\x5d\x8d\x5c\x02\x00\x00\x7d\x07\x7d\x08\x7c\x08\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x01\x8c\x1c\x7c\x08\xa0\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x6b\x02\x00\x00\x00\x00\x72\x01\x8c\x35\x09\x00\x7c\x08\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x5b\x7c\x08\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x74\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x7c\x0a\x7c\x02\x76\x01\x72\x53\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x34\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x02\xa0\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xda\x23\x00\x74\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\xa8\x01\x00\x74\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0e\xa0\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x64\x0f\x7a\x00\x00\x00\x7c\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x10\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x05\x64\x01\x6c\x1c\x7d\x0b\x02\x00\x7c\x0b\x6a\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x74\x2b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1e\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x00\x44\x00\x5d\x37\x7d\x0c\x7c\x0c\xa0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x20\x7d\x08\x74\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\x7c\x08\x7a\x00\x00\x00\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x10\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x21\x8c\x38\x74\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x12\x74\x2a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x1b\x00\x00\x00\x00\x00\x00\x00\x00\xac\x10\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x01\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x03\x72\x02\x64\x01\x7d\x02\x7c\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[85]; - } -site_toplevel_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 84, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x64\x64\x20\x27\x73\x69\x74\x65\x64\x69\x72\x27\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x20\x69\x66\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x61\x6e\x64\x20\x68\x61\x6e\x64\x6c\x65\x20\x2e\x70\x74\x68\x20\x66\x69\x6c\x65\x73\x20\x69\x6e\x0a\x20\x20\x20\x20\x27\x73\x69\x74\x65\x64\x69\x72\x27", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -site_toplevel_consts_9_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Adding directory: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -site_toplevel_consts_9_consts_5_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ".pth", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_9_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & site_toplevel_consts_9_consts_5_consts_0._ascii.ob_base, - &_Py_STR(dot), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_9_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_endswith._ascii.ob_base, - & const_str_startswith._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -site_toplevel_consts_9_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "addsitedir..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[85]; - } -site_toplevel_consts_9_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 84, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\x90\x64\xd8\x10\x14\x97\x0d\x92\x0d\x98\x66\xd1\x10\x25\xd4\x10\x25\xf0\x03\x01\x0d\x44\x01\xd8\x2e\x32\xaf\x6f\xaa\x6f\xb8\x63\xd1\x2e\x42\xd4\x2e\x42\xf0\x03\x01\x0d\x44\x01\x88\x54\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_9_consts_5_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - &_Py_ID(name), - }, - }, -}; -static - struct _PyCode_DEF(102) -site_toplevel_consts_9_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 51, - }, - .co_consts = & site_toplevel_consts_9_consts_5_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_9_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 233, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_9_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & site_toplevel_consts_9_consts_5_qualname._ascii.ob_base, - .co_linetable = & site_toplevel_consts_9_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x2e\x7d\x01\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x17\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x2c\x7c\x01\x91\x02\x8c\x2f\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -site_toplevel_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & site_toplevel_consts_9_consts_0._ascii.ob_base, - & site_toplevel_consts_9_consts_1._ascii.ob_base, - Py_None, - Py_True, - Py_False, - & site_toplevel_consts_9_consts_5.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -site_toplevel_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - & const_str__trace._ascii.ob_base, - & const_str__init_pathinfo._ascii.ob_base, - & const_str_makepath._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(path), - &_Py_ID(append), - &_Py_ID(add), - & const_str_os._ascii.ob_base, - & const_str_listdir._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_sorted._ascii.ob_base, - & const_str_addpackage._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_addsitedir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "addsitedir", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[275]; - } -site_toplevel_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 274, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x05\x0b\xd0\x0b\x2b\xa0\x07\xd0\x0b\x2b\xd0\x0b\x2b\xd1\x04\x2c\xd4\x04\x2c\xd0\x04\x2c\xd8\x07\x12\xd0\x07\x1a\xdd\x16\x24\xd1\x16\x26\xd4\x16\x26\x88\x0b\xd8\x10\x14\x88\x05\x88\x05\xe0\x10\x15\x88\x05\xdd\x1b\x23\xa0\x47\xd1\x1b\x2c\xd4\x1b\x2c\xd1\x04\x18\x80\x47\x88\x5b\xd8\x0b\x16\x98\x2b\xd0\x0b\x25\xd0\x0b\x25\xdd\x08\x0b\x8c\x08\x8f\x0f\x8a\x0f\x98\x07\xd1\x08\x20\xd4\x08\x20\xd0\x08\x20\xd8\x08\x13\x8f\x0f\x8a\x0f\x98\x0b\xd1\x08\x24\xd4\x08\x24\xd0\x08\x24\xf0\x02\x03\x05\x0f\xdd\x10\x12\x94\x0a\x98\x37\xd1\x10\x23\xd4\x10\x23\x88\x05\x88\x05\xf8\xdd\x0b\x12\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xf0\x00\x01\x05\x0f\xd8\x08\x0e\x88\x06\x88\x06\xf0\x03\x01\x05\x0f\xf8\xf8\xf8\xf0\x04\x01\x0d\x44\x01\xf0\x00\x01\x0d\x44\x01\x98\x65\xf0\x00\x01\x0d\x44\x01\xf1\x00\x01\x0d\x44\x01\xf4\x00\x01\x0d\x44\x01\x80\x45\xe5\x10\x16\x90\x75\x91\x0d\x94\x0d\xf0\x00\x01\x05\x2f\xf0\x00\x01\x05\x2f\x88\x04\xdd\x08\x12\x90\x37\x98\x44\xa0\x2b\xd1\x08\x2e\xd4\x08\x2e\xd0\x08\x2e\xd0\x08\x2e\xd8\x07\x0c\xf0\x00\x01\x05\x1b\xd8\x16\x1a\x88\x0b\xd8\x0b\x16\xd0\x04\x16", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -site_toplevel_consts_9_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x33\x14\x42\x08\x00\xc2\x08\x0a\x42\x16\x03\xc2\x15\x01\x42\x16\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_sitedircase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sitedircase", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -site_toplevel_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_sitedir._ascii.ob_base, - & const_str_known_paths._ascii.ob_base, - &_Py_ID(reset), - & const_str_sitedircase._ascii.ob_base, - & const_str_names._ascii.ob_base, - &_Py_ID(name), - }, - }, -}; -static - struct _PyCode_DEF(412) -site_toplevel_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 206, - }, - .co_consts = & site_toplevel_consts_9_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_9_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 216, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_addsitedir._ascii.ob_base, - .co_qualname = & const_str_addsitedir._ascii.ob_base, - .co_linetable = & site_toplevel_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7c\x00\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x80\x11\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x64\x03\x7d\x02\x6e\x02\x64\x04\x7d\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x00\x7d\x03\x7c\x03\x7c\x01\x76\x01\x72\x34\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x6e\x11\x23\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x02\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x64\x05\x84\x00\x7c\x04\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x13\x7d\x05\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x05\x7c\x01\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x14\x7c\x02\x72\x02\x64\x02\x7d\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[301]; - } -site_toplevel_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 300, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x68\x65\x63\x6b\x20\x69\x66\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x73\x61\x66\x65\x20\x66\x6f\x72\x20\x69\x6e\x63\x6c\x75\x73\x69\x6f\x6e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x65\x73\x74\x73\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6c\x69\x6e\x65\x20\x66\x6c\x61\x67\x20\x28\x69\x6e\x63\x6c\x75\x64\x69\x6e\x67\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x76\x61\x72\x29\x2c\x0a\x20\x20\x20\x20\x70\x72\x6f\x63\x65\x73\x73\x20\x75\x69\x64\x2f\x67\x69\x64\x20\x65\x71\x75\x61\x6c\x20\x74\x6f\x20\x65\x66\x66\x65\x63\x74\x69\x76\x65\x20\x75\x69\x64\x2f\x67\x69\x64\x2e\x0a\x0a\x20\x20\x20\x20\x4e\x6f\x6e\x65\x3a\x20\x44\x69\x73\x61\x62\x6c\x65\x64\x20\x66\x6f\x72\x20\x73\x65\x63\x75\x72\x69\x74\x79\x20\x72\x65\x61\x73\x6f\x6e\x73\x0a\x20\x20\x20\x20\x46\x61\x6c\x73\x65\x3a\x20\x44\x69\x73\x61\x62\x6c\x65\x64\x20\x62\x79\x20\x75\x73\x65\x72\x20\x28\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6c\x69\x6e\x65\x20\x6f\x70\x74\x69\x6f\x6e\x29\x0a\x20\x20\x20\x20\x54\x72\x75\x65\x3a\x20\x53\x61\x66\x65\x20\x61\x6e\x64\x20\x65\x6e\x61\x62\x6c\x65\x64\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_geteuid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "geteuid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_getgid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getgid", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_getegid = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getegid", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -site_toplevel_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & site_toplevel_consts_10_consts_0._ascii.ob_base, - Py_False, - & const_str_getuid._ascii.ob_base, - & const_str_geteuid._ascii.ob_base, - Py_None, - & const_str_getgid._ascii.ob_base, - & const_str_getegid._ascii.ob_base, - Py_True, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_no_user_site = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "no_user_site", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -site_toplevel_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_no_user_site._ascii.ob_base, - & const_str_hasattr._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_geteuid._ascii.ob_base, - & const_str_getuid._ascii.ob_base, - & const_str_getegid._ascii.ob_base, - & const_str_getgid._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str_check_enableusersite = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "check_enableusersite", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[154]; - } -site_toplevel_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 153, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x14\x00\x08\x0b\x84\x79\xd4\x07\x1d\xf0\x00\x01\x05\x15\xd8\x0f\x14\x88\x75\xe5\x07\x0e\x8d\x72\x90\x38\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x03\x05\x18\xa5\x17\xad\x12\xa8\x59\xd1\x21\x37\xd4\x21\x37\xf0\x00\x03\x05\x18\xe5\x0b\x0d\x8c\x3a\x89\x3c\x8c\x3c\x9d\x32\x9c\x39\x99\x3b\x9c\x3b\xd2\x0b\x26\xd0\x0b\x26\xd8\x13\x17\x90\x34\xdd\x07\x0e\x8d\x72\x90\x38\xd1\x07\x1c\xd4\x07\x1c\xf0\x00\x03\x05\x18\xa5\x17\xad\x12\xa8\x59\xd1\x21\x37\xd4\x21\x37\xf0\x00\x03\x05\x18\xe5\x0b\x0d\x8c\x3a\x89\x3c\x8c\x3c\x9d\x32\x9c\x39\x99\x3b\x9c\x3b\xd2\x0b\x26\xd0\x0b\x26\xd8\x13\x17\x90\x34\xe0\x0b\x0f\x88\x34", -}; -static - struct _PyCode_DEF(380) -site_toplevel_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 190, - }, - .co_consts = & site_toplevel_consts_10_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 242, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_check_enableusersite._ascii.ob_base, - .co_qualname = & const_str_check_enableusersite._ascii.ob_base, - .co_linetable = & site_toplevel_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x3f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2a\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x3f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2a\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x02\x64\x04\x53\x00\x64\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_PYTHONUSERBASE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "PYTHONUSERBASE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_emscripten = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "emscripten", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_wasi = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "wasi", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_11_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_emscripten._ascii.ob_base, - & const_str_vxworks._ascii.ob_base, - & const_str_wasi._ascii.ob_base, - }, - }, -}; -// TODO: The above tuple should be a frozenset -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -site_toplevel_consts_11_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_expanduser._ascii.ob_base, - &_Py_ID(join), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_joinuser = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "joinuser", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -site_toplevel_consts_11_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_getuserbase..joinuser", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -site_toplevel_consts_11_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x11\x8c\x77\xd7\x0f\x21\xd2\x0f\x21\xa5\x22\xa4\x27\xa4\x2c\xb0\x04\xd0\x22\x35\xd1\x0f\x36\xd4\x0f\x36\xd0\x08\x36", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -site_toplevel_consts_11_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_args._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(98) -site_toplevel_consts_11_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_11_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 23, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 283, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_11_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_joinuser._ascii.ob_base, - .co_qualname = & site_toplevel_consts_11_consts_3_qualname._ascii.ob_base, - .co_linetable = & site_toplevel_consts_11_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x8e\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_APPDATA = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "APPDATA", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_Python = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Python", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_Library = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Library", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -site_toplevel_consts_11_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ".local", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -site_toplevel_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - Py_None, - & const_str_PYTHONUSERBASE._ascii.ob_base, - & site_toplevel_consts_11_consts_2._object.ob_base.ob_base, - & site_toplevel_consts_11_consts_3.ob_base.ob_base, - & const_str_nt._ascii.ob_base, - & const_str_APPDATA._ascii.ob_base, - & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, - & const_str_Python._ascii.ob_base, - & const_str_darwin._ascii.ob_base, - & const_str_Library._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_53_consts_6_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & site_toplevel_consts_11_consts_12._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str__framework = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_framework", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -site_toplevel_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_environ._ascii.ob_base, - &_Py_ID(get), - & const_str_sys._ascii.ob_base, - & const_str_platform._ascii.ob_base, - &_Py_ID(name), - & const_str__framework._ascii.ob_base, - & const_str_version_info._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str__getuserbase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_getuserbase", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[217]; - } -site_toplevel_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 216, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0f\x11\x8c\x7a\x8f\x7e\x8a\x7e\xd0\x1e\x2e\xb0\x04\xd1\x0f\x35\xd4\x0f\x35\x80\x48\xd8\x07\x0f\xf0\x00\x01\x05\x18\xd8\x0f\x17\x88\x0f\xf5\x06\x00\x08\x0b\x84\x7c\xd0\x17\x38\xd0\x07\x38\xd0\x07\x38\xd8\x0f\x13\x88\x74\xf0\x04\x01\x05\x37\xf0\x00\x01\x05\x37\xf0\x00\x01\x05\x37\xf5\x06\x00\x08\x0a\x84\x77\x90\x24\x82\x7f\x80\x7f\xdd\x0f\x11\x8c\x7a\x8f\x7e\x8a\x7e\x98\x69\xd1\x0f\x28\xd4\x0f\x28\xd0\x0f\x2f\xa8\x43\x88\x04\xd8\x0f\x17\x88\x78\x98\x04\x98\x68\xd1\x0f\x27\xd4\x0f\x27\xd0\x08\x27\xe5\x07\x0a\x84\x7c\x90\x78\xd2\x07\x1f\xd0\x07\x1f\xa5\x43\xa4\x4e\xd0\x07\x1f\xd8\x0f\x17\x88\x78\x98\x03\x98\x59\xad\x03\xac\x0e\xd8\x18\x1f\xa5\x23\xd4\x22\x32\xb0\x32\xb0\x41\xb0\x32\xd4\x22\x36\xd1\x18\x36\xf1\x03\x01\x10\x38\xf4\x00\x01\x10\x38\xf0\x00\x01\x09\x38\xf0\x06\x00\x0c\x14\x88\x38\x90\x43\x98\x18\xd1\x0b\x22\xd4\x0b\x22\xd0\x04\x22", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_env_base = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "env_base", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_env_base._ascii.ob_base, - & const_str_joinuser._ascii.ob_base, - & const_str_base._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(404) -site_toplevel_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 202, - }, - .co_consts = & site_toplevel_consts_11_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 9, - .co_firstlineno = 274, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str__getuserbase._ascii.ob_base, - .co_qualname = & const_str__getuserbase._ascii.ob_base, - .co_linetable = & site_toplevel_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x72\x02\x7c\x00\x53\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x76\x00\x72\x02\x64\x00\x53\x00\x64\x03\x84\x00\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x6b\x02\x00\x00\x00\x00\x72\x2d\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x70\x01\x64\x06\x7d\x02\x02\x00\x7c\x01\x7c\x02\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x39\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2d\x02\x00\x7c\x01\x64\x06\x64\x09\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x02\x00\x7c\x01\x64\x06\x64\x0c\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -site_toplevel_consts_12_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\\Python", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -site_toplevel_consts_12_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\\site-packages", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -site_toplevel_consts_12_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "/lib/python/site-packages", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -site_toplevel_consts_12_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "/lib/python", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -site_toplevel_consts_12_consts_11 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "/site-packages", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[12]; - }_object; - } -site_toplevel_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 12, - }, - .ob_item = { - Py_None, - & const_str_nt._ascii.ob_base, - &_Py_STR(dot), - &_Py_STR(empty), - & site_toplevel_consts_12_consts_4._ascii.ob_base, - & site_toplevel_consts_12_consts_5._ascii.ob_base, - & const_str_darwin._ascii.ob_base, - & site_toplevel_consts_12_consts_7._ascii.ob_base, - & site_toplevel_consts_12_consts_8._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & site_toplevel_consts_12_consts_11._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_winver = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "winver", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -site_toplevel_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_version_info._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(name), - & const_str_winver._ascii.ob_base, - &_Py_ID(replace), - & const_str_platform._ascii.ob_base, - & const_str__framework._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__get_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_path", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[142]; - } -site_toplevel_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 141, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x0e\x11\xd4\x0e\x1e\x80\x47\xe5\x07\x09\x84\x77\x90\x24\x82\x7f\x80\x7f\xdd\x14\x17\x94\x4a\xd7\x14\x26\xd2\x14\x26\xa0\x73\xa8\x42\xd1\x14\x2f\xd4\x14\x2f\x88\x09\xd8\x12\x1a\xd0\x0f\x3e\xd0\x0f\x3e\xa0\x49\xd0\x0f\x3e\xd0\x0f\x3e\xd0\x0f\x3e\xd0\x08\x3e\xe5\x07\x0a\x84\x7c\x90\x78\xd2\x07\x1f\xd0\x07\x1f\xa5\x43\xa4\x4e\xd0\x07\x1f\xd8\x12\x1a\xd0\x0f\x35\xd0\x0f\x35\xd0\x0f\x35\xd0\x08\x35\xe0\x0e\x16\xd0\x0b\x4a\xd0\x0b\x4a\xa0\x37\xa8\x31\xa4\x3a\xd0\x0b\x4a\xd0\x0b\x4a\xb0\x07\xb8\x01\xb4\x0a\xd0\x0b\x4a\xd0\x0b\x4a\xd0\x0b\x4a\xd0\x04\x4a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_userbase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "userbase", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_ver_nodot = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ver_nodot", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_12_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_userbase._ascii.ob_base, - &_Py_ID(version), - & const_str_ver_nodot._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(250) -site_toplevel_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 125, - }, - .co_consts = & site_toplevel_consts_12_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 298, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_12_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str__get_path._ascii.ob_base, - .co_qualname = & const_str__get_path._ascii.ob_base, - .co_linetable = & site_toplevel_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x28\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x9b\x00\x64\x04\x7c\x02\x9b\x00\x64\x05\x9d\x04\x53\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x11\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x72\x05\x7c\x00\x9b\x00\x64\x07\x9d\x02\x53\x00\x7c\x00\x9b\x00\x64\x08\x7c\x01\x64\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x02\x7c\x01\x64\x0a\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0b\x9d\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[204]; - } -site_toplevel_consts_13_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 203, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x60\x75\x73\x65\x72\x20\x62\x61\x73\x65\x60\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x60\x75\x73\x65\x72\x20\x62\x61\x73\x65\x60\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x63\x61\x6e\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x73\x74\x6f\x72\x65\x20\x64\x61\x74\x61\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x0a\x20\x20\x20\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x60\x60\x55\x53\x45\x52\x5f\x42\x41\x53\x45\x60\x60\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64\x20\x79\x65\x74\x2c\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x61\x6c\x73\x6f\x20\x73\x65\x74\x0a\x20\x20\x20\x20\x69\x74\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -site_toplevel_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & site_toplevel_consts_13_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_USER_BASE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "USER_BASE", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_USER_BASE._ascii.ob_base, - & const_str__getuserbase._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_getuserbase = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getuserbase", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -site_toplevel_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x08\x11\xd0\x07\x18\xdd\x14\x20\x91\x4e\x94\x4e\x88\x09\xdd\x0b\x14\xd0\x04\x14", -}; -static - struct _PyCode_DEF(58) -site_toplevel_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 29, - }, - .co_consts = & site_toplevel_consts_13_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 311, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_getuserbase._ascii.ob_base, - .co_qualname = & const_str_getuserbase._ascii.ob_base, - .co_linetable = & site_toplevel_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0e\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[163]; - } -site_toplevel_consts_14_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 162, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x74\x68\x65\x20\x75\x73\x65\x72\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x20\x60\x60\x55\x53\x45\x52\x5f\x53\x49\x54\x45\x60\x60\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x69\x74\x69\x61\x6c\x69\x7a\x65\x64\x20\x79\x65\x74\x2c\x20\x74\x68\x69\x73\x0a\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x61\x6c\x73\x6f\x20\x73\x65\x74\x20\x69\x74\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_14_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & site_toplevel_consts_14_consts_0._ascii.ob_base, - Py_None, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_USER_SITE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "USER_SITE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_ENABLE_USER_SITE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ENABLE_USER_SITE", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -site_toplevel_consts_14_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_getuserbase._ascii.ob_base, - & const_str_USER_SITE._ascii.ob_base, - & const_str_ENABLE_USER_SITE._ascii.ob_base, - & const_str__get_path._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str_getusersitepackages = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getusersitepackages", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[54]; - } -site_toplevel_consts_14_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 53, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0e\x00\x10\x1b\x89\x7d\x8c\x7d\x80\x48\xe5\x07\x10\xd0\x07\x18\xd8\x0b\x13\xd0\x0b\x1b\xd8\x1f\x24\xd0\x0c\x1c\xd0\x0c\x1c\xe5\x18\x21\xa0\x28\xd1\x18\x2b\xd4\x18\x2b\x88\x49\xe5\x0b\x14\xd0\x04\x14", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -site_toplevel_consts_14_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_userbase._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(98) -site_toplevel_consts_14 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 49, - }, - .co_consts = & site_toplevel_consts_14_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_14_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 324, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_14_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_getusersitepackages._ascii.ob_base, - .co_qualname = & const_str_getusersitepackages._ascii.ob_base, - .co_linetable = & site_toplevel_consts_14_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x14\x7c\x00\x80\x03\x64\x02\x61\x02\x6e\x0f\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x61\x01\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[135]; - } -site_toplevel_consts_15_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 134, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x64\x64\x20\x61\x20\x70\x65\x72\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x20\x74\x6f\x20\x73\x79\x73\x2e\x70\x61\x74\x68\x0a\x0a\x20\x20\x20\x20\x45\x61\x63\x68\x20\x75\x73\x65\x72\x20\x68\x61\x73\x20\x69\x74\x73\x20\x6f\x77\x6e\x20\x70\x79\x74\x68\x6f\x6e\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x77\x69\x74\x68\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x68\x6f\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -site_toplevel_consts_15_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Processing user site-packages", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & site_toplevel_consts_15_consts_0._ascii.ob_base, - & site_toplevel_consts_15_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -site_toplevel_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__trace._ascii.ob_base, - & const_str_getusersitepackages._ascii.ob_base, - & const_str_ENABLE_USER_SITE._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_isdir._ascii.ob_base, - & const_str_addsitedir._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str_addusersitepackages = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "addusersitepackages", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[82]; - } -site_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 81, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x05\x0b\xd0\x0b\x2a\xd1\x04\x2b\xd4\x04\x2b\xd0\x04\x2b\xdd\x10\x23\xd1\x10\x25\xd4\x10\x25\x80\x49\xe5\x07\x17\xf0\x00\x01\x05\x2b\x9d\x42\x9c\x47\x9f\x4d\x9a\x4d\xa8\x29\xd1\x1c\x34\xd4\x1c\x34\xf0\x00\x01\x05\x2b\xdd\x08\x12\x90\x39\x98\x6b\xd1\x08\x2a\xd4\x08\x2a\xd0\x08\x2a\xd8\x0b\x16\xd0\x04\x16", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_user_site = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "user_site", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_15_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_known_paths._ascii.ob_base, - & const_str_user_site._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(172) -site_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 86, - }, - .co_consts = & site_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 341, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_addusersitepackages._ascii.ob_base, - .co_qualname = & const_str_addusersitepackages._ascii.ob_base, - .co_linetable = & site_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x2f\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[287]; - } -site_toplevel_consts_16_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 286, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x73\x20\x61\x20\x6c\x69\x73\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x6c\x6c\x20\x67\x6c\x6f\x62\x61\x6c\x20\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x46\x6f\x72\x20\x65\x61\x63\x68\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x70\x72\x65\x73\x65\x6e\x74\x20\x69\x6e\x20\x60\x60\x70\x72\x65\x66\x69\x78\x65\x73\x60\x60\x20\x28\x6f\x72\x20\x74\x68\x65\x20\x67\x6c\x6f\x62\x61\x6c\x20\x60\x60\x50\x52\x45\x46\x49\x58\x45\x53\x60\x60\x29\x2c\x0a\x20\x20\x20\x20\x74\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x77\x69\x6c\x6c\x20\x66\x69\x6e\x64\x20\x69\x74\x73\x20\x60\x73\x69\x74\x65\x2d\x70\x61\x63\x6b\x61\x67\x65\x73\x60\x20\x73\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x64\x65\x70\x65\x6e\x64\x69\x6e\x67\x20\x6f\x6e\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x73\x79\x73\x74\x65\x6d\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2c\x20\x61\x6e\x64\x20\x77\x69\x6c\x6c\x20\x72\x65\x74\x75\x72\x6e\x20\x61\x20\x6c\x69\x73\x74\x20\x6f\x66\x20\x66\x75\x6c\x6c\x20\x70\x61\x74\x68\x73\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_lib = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "lib", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -site_toplevel_consts_16_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "python%d.%d", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -site_toplevel_consts_16_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "site-packages", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_Lib = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Lib", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -site_toplevel_consts_16_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & site_toplevel_consts_16_consts_0._ascii.ob_base, - Py_None, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_5._ascii.ob_base, - & const_str_lib._ascii.ob_base, - & site_toplevel_consts_16_consts_4._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & site_toplevel_consts_16_consts_6._ascii.ob_base, - & const_str_Lib._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_PREFIXES = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "PREFIXES", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_platlibdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "platlibdir", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -site_toplevel_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_set._ascii.ob_base, - & const_str_PREFIXES._ascii.ob_base, - &_Py_ID(add), - & const_str_os._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_platlibdir._ascii.ob_base, - &_Py_ID(append), - &_Py_ID(path), - &_Py_ID(join), - & const_str_version_info._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_getsitepackages = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "getsitepackages", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[298]; - } -site_toplevel_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 297, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0e\x00\x14\x16\x80\x4c\xdd\x0b\x0e\x89\x35\x8c\x35\x80\x44\xe0\x07\x0f\xd0\x07\x17\xdd\x13\x1b\x88\x08\xe0\x12\x1a\xf0\x00\x11\x05\x4e\x01\xf0\x00\x11\x05\x4e\x01\x88\x06\xd8\x0f\x15\xf0\x00\x01\x09\x15\x98\x16\xa0\x34\x98\x1e\x98\x1e\xd8\x0c\x14\xd8\x08\x0c\x8f\x08\x8a\x08\x90\x16\xd1\x08\x18\xd4\x08\x18\xd0\x08\x18\xe5\x0b\x0d\x8c\x36\x90\x53\x8a\x3d\x88\x3d\xdd\x17\x1a\x94\x7e\xd0\x16\x26\x88\x47\xdd\x0f\x12\x8c\x7e\xa0\x15\xd2\x0f\x26\xd0\x0f\x26\xd8\x10\x17\x97\x0e\x92\x0e\x98\x75\xd1\x10\x25\xd4\x10\x25\xd0\x10\x25\xe0\x1a\x21\xf0\x00\x04\x0d\x2a\xf0\x00\x04\x0d\x2a\x90\x06\xdd\x17\x19\x94\x77\x97\x7c\x92\x7c\xa0\x46\xa8\x46\xd8\x24\x31\xb5\x43\xd4\x34\x44\xc0\x52\xc0\x61\xc0\x52\xd4\x34\x48\xd1\x24\x48\xd8\x24\x33\xf1\x05\x02\x18\x35\xf4\x00\x02\x18\x35\x90\x04\xf0\x06\x00\x11\x1d\xd7\x10\x23\xd2\x10\x23\xa0\x44\xd1\x10\x29\xd4\x10\x29\xd0\x10\x29\xd0\x10\x29\xf0\x09\x04\x0d\x2a\xf0\x0c\x00\x0d\x19\xd7\x0c\x1f\xd2\x0c\x1f\xa0\x06\xd1\x0c\x27\xd4\x0c\x27\xd0\x0c\x27\xd8\x0c\x18\xd7\x0c\x1f\xd2\x0c\x1f\xa5\x02\xa4\x07\xa7\x0c\xa2\x0c\xa8\x56\xb0\x55\xb8\x4f\xd1\x20\x4c\xd4\x20\x4c\xd1\x0c\x4d\xd4\x0c\x4d\xd0\x0c\x4d\xd0\x0c\x4d\xd8\x0b\x17\xd0\x04\x17", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_prefixes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "prefixes", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_sitepackages = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sitepackages", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_libdirs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "libdirs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_libdir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "libdir", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -site_toplevel_consts_16_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_prefixes._ascii.ob_base, - & const_str_sitepackages._ascii.ob_base, - & const_str_seen._ascii.ob_base, - & const_str_prefix._ascii.ob_base, - & const_str_libdirs._ascii.ob_base, - & const_str_libdir._ascii.ob_base, - &_Py_ID(path), - }, - }, -}; -static - struct _PyCode_DEF(564) -site_toplevel_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 282, - }, - .co_consts = & site_toplevel_consts_16_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 10, - .co_firstlineno = 356, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_getsitepackages._ascii.ob_base, - .co_qualname = & const_str_getsitepackages._ascii.ob_base, - .co_linetable = & site_toplevel_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7d\x01\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x00\x80\x07\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x7c\x00\x44\x00\x5d\xfb\x7d\x03\x7c\x03\x72\x04\x7c\x03\x7c\x02\x76\x00\x72\x01\x8c\x09\x7c\x02\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x84\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x67\x01\x7d\x04\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x03\x00\x00\x00\x00\x72\x15\x7c\x04\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x04\x44\x00\x5d\x4e\x7d\x05\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x05\x64\x04\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x05\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x06\x00\x00\x64\x06\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x4f\x8c\xb2\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x07\x64\x06\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\xfc\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[30]; - } -site_toplevel_consts_17_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 29, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Add site-packages to sys.path", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -site_toplevel_consts_17_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Processing global site-packages", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_17_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & site_toplevel_consts_17_consts_0._ascii.ob_base, - & site_toplevel_consts_17_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -site_toplevel_consts_17_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str__trace._ascii.ob_base, - & const_str_getsitepackages._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_isdir._ascii.ob_base, - & const_str_addsitedir._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_addsitepackages = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "addsitepackages", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[86]; - } -site_toplevel_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 85, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x04\x0a\xd0\x0b\x2c\xd1\x04\x2d\xd4\x04\x2d\xd0\x04\x2d\xdd\x13\x22\xa0\x38\xd1\x13\x2c\xd4\x13\x2c\xf0\x00\x02\x05\x2d\xf0\x00\x02\x05\x2d\x88\x07\xdd\x0b\x0d\x8c\x37\x8f\x3d\x8a\x3d\x98\x17\xd1\x0b\x21\xd4\x0b\x21\xf0\x00\x01\x09\x2d\xdd\x0c\x16\x90\x77\xa0\x0b\xd1\x0c\x2c\xd4\x0c\x2c\xd0\x0c\x2c\xf8\xe0\x0b\x16\xd0\x04\x16", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_17_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_known_paths._ascii.ob_base, - & const_str_prefixes._ascii.ob_base, - & const_str_sitedir._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(166) -site_toplevel_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 83, - }, - .co_consts = & site_toplevel_consts_17_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_17_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 389, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_addsitepackages._ascii.ob_base, - .co_qualname = & const_str_addsitepackages._ascii.ob_base, - .co_linetable = & site_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x31\x7d\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x32\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[174]; - } -site_toplevel_consts_18_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 173, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x65\x66\x69\x6e\x65\x20\x6e\x65\x77\x20\x62\x75\x69\x6c\x74\x69\x6e\x73\x20\x27\x71\x75\x69\x74\x27\x20\x61\x6e\x64\x20\x27\x65\x78\x69\x74\x27\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x73\x65\x20\x61\x72\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x68\x69\x63\x68\x20\x6d\x61\x6b\x65\x20\x74\x68\x65\x20\x69\x6e\x74\x65\x72\x70\x72\x65\x74\x65\x72\x20\x65\x78\x69\x74\x20\x77\x68\x65\x6e\x20\x63\x61\x6c\x6c\x65\x64\x2e\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x72\x65\x70\x72\x20\x6f\x66\x20\x65\x61\x63\x68\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x68\x69\x6e\x74\x20\x61\x74\x20\x68\x6f\x77\x20\x69\x74\x20\x77\x6f\x72\x6b\x73\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -site_toplevel_consts_18_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Ctrl-Z plus Return", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -site_toplevel_consts_18_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Ctrl-D (i.e. EOF)", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_quit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "quit", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_exit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exit", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -site_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & site_toplevel_consts_18_consts_0._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_4._ascii.ob_base, - & site_toplevel_consts_18_consts_2._ascii.ob_base, - & site_toplevel_consts_18_consts_3._ascii.ob_base, - & const_str_quit._ascii.ob_base, - & const_str_exit._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__sitebuiltins = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_sitebuiltins", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -site_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_sep._ascii.ob_base, - & const_str__sitebuiltins._ascii.ob_base, - & const_str_Quitter._ascii.ob_base, - &_Py_ID(builtins), - & const_str_quit._ascii.ob_base, - & const_str_exit._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_setquit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "setquit", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[72]; - } -site_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 71, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x0e\x00\x08\x0a\x84\x76\x90\x14\x82\x7e\x80\x7e\xd8\x0e\x22\x88\x03\x88\x03\xe0\x0e\x21\x88\x03\xe5\x14\x21\xd4\x14\x29\xa8\x26\xb0\x23\xd1\x14\x36\xd4\x14\x36\x85\x48\x84\x4d\xdd\x14\x21\xd4\x14\x29\xa8\x26\xb0\x23\xd1\x14\x36\xd4\x14\x36\x85\x48\x84\x4d\x80\x4d\x80\x4d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -site_toplevel_consts_18_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_eof._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(172) -site_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 86, - }, - .co_consts = & site_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 398, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_setquit._ascii.ob_base, - .co_qualname = & const_str_setquit._ascii.ob_base, - .co_linetable = & site_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x03\x64\x02\x7d\x00\x6e\x02\x64\x03\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[42]; - } -site_toplevel_consts_19_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 41, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Set 'copyright' and 'credits' in builtins", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_copyright = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "copyright", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_java = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "java", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_credits = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "credits", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[64]; - } -site_toplevel_consts_19_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 63, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Jython is maintained by the Jython developers (www.jython.org).", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[159]; - } -site_toplevel_consts_19_consts_7 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 158, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x20\x20\x20\x54\x68\x61\x6e\x6b\x73\x20\x74\x6f\x20\x43\x57\x49\x2c\x20\x43\x4e\x52\x49\x2c\x20\x42\x65\x4f\x70\x65\x6e\x2e\x63\x6f\x6d\x2c\x20\x5a\x6f\x70\x65\x20\x43\x6f\x72\x70\x6f\x72\x61\x74\x69\x6f\x6e\x20\x61\x6e\x64\x20\x61\x20\x63\x61\x73\x74\x20\x6f\x66\x20\x74\x68\x6f\x75\x73\x61\x6e\x64\x73\x0a\x20\x20\x20\x20\x66\x6f\x72\x20\x73\x75\x70\x70\x6f\x72\x74\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x64\x65\x76\x65\x6c\x6f\x70\x6d\x65\x6e\x74\x2e\x20\x20\x53\x65\x65\x20\x77\x77\x77\x2e\x70\x79\x74\x68\x6f\x6e\x2e\x6f\x72\x67\x20\x66\x6f\x72\x20\x6d\x6f\x72\x65\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x2e", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -site_toplevel_consts_19_consts_10 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LICENSE.txt", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_LICENSE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LICENSE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_license = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "license", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[40]; - } -site_toplevel_consts_19_consts_13 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 39, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "See https://www.python.org/psf/license/", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -site_toplevel_consts_19_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - & site_toplevel_consts_19_consts_0._ascii.ob_base, - & const_str_copyright._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], - & const_str_java._ascii.ob_base, - & const_str_credits._ascii.ob_base, - & site_toplevel_consts_19_consts_6._ascii.ob_base, - & site_toplevel_consts_19_consts_7._ascii.ob_base, - & const_str__stdlib_dir._ascii.ob_base, - &_Py_ID(__file__), - & site_toplevel_consts_19_consts_10._ascii.ob_base, - & const_str_LICENSE._ascii.ob_base, - & const_str_license._ascii.ob_base, - & site_toplevel_consts_19_consts_13._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[18]; - }_object; - } -site_toplevel_consts_19_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 18, - }, - .ob_item = { - & const_str__sitebuiltins._ascii.ob_base, - & const_str__Printer._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_copyright._ascii.ob_base, - &_Py_ID(builtins), - & const_str_platform._ascii.ob_base, - & const_str_credits._ascii.ob_base, - &_Py_ID(getattr), - & const_str_hasattr._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_dirname._ascii.ob_base, - &_Py_ID(__file__), - &_Py_ID(extend), - &_Py_ID(join), - & const_str_pardir._ascii.ob_base, - & const_str_curdir._ascii.ob_base, - & const_str_license._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_setcopyright = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "setcopyright", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[304]; - } -site_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 303, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x19\x26\xd4\x19\x2f\xb0\x0b\xbd\x53\xbc\x5d\xd1\x19\x4b\xd4\x19\x4b\x85\x48\xd4\x04\x16\xdd\x07\x0a\x84\x7c\x90\x42\x90\x51\x90\x42\xd4\x07\x17\x98\x36\xd2\x07\x21\xd0\x07\x21\xdd\x1b\x28\xd4\x1b\x31\xd8\x0c\x15\xd8\x0c\x4d\xf1\x05\x02\x1c\x4f\x01\xf4\x00\x02\x1c\x4f\x01\x8d\x08\xd4\x08\x18\xd0\x08\x18\xf5\x08\x00\x1c\x29\xd4\x1b\x31\xb0\x29\xf0\x00\x02\x3e\x54\x01\xf1\x00\x02\x1c\x55\x01\xf4\x00\x02\x1c\x55\x01\x8d\x08\xd4\x08\x18\xf0\x06\x00\x13\x15\x90\x62\x88\x34\x80\x45\xf5\x06\x00\x0c\x13\x95\x33\x98\x0d\xa0\x74\xd1\x0b\x2c\xd4\x0b\x2c\x80\x44\xd8\x0b\x0f\xf0\x00\x01\x05\x2c\x95\x47\x9d\x42\xa0\x0a\xd1\x14\x2b\xd4\x14\x2b\xf0\x00\x01\x05\x2c\xdd\x0f\x11\x8c\x77\x8f\x7f\x8a\x7f\x9d\x72\x9c\x7b\xd1\x0f\x2b\xd4\x0f\x2b\x88\x04\xd8\x07\x0b\xf0\x00\x02\x05\x46\x01\xd8\x08\x0d\x8f\x0c\x8a\x0c\x90\x6d\xa0\x59\xd0\x15\x2f\xd1\x08\x30\xd4\x08\x30\xd0\x08\x30\xd8\x08\x0c\x8f\x0b\x8a\x0b\x95\x52\x94\x57\x97\x5c\x92\x5c\xa0\x24\xad\x02\xac\x09\xd1\x15\x32\xd4\x15\x32\xb0\x44\xbd\x22\xbc\x29\xd0\x14\x44\xd1\x08\x45\xd4\x08\x45\xd0\x08\x45\xdd\x17\x24\xd4\x17\x2d\xd8\x08\x11\xd8\x08\x31\xd8\x08\x0d\x88\x74\xf1\x07\x03\x18\x15\xf4\x00\x03\x18\x15\x85\x48\xd4\x04\x14\xd0\x04\x14\xd0\x04\x14", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_here = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "here", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_files._ascii.ob_base, - & const_str_dirs._ascii.ob_base, - & const_str_here._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(706) -site_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 353, - }, - .co_consts = & site_toplevel_consts_19_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 414, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_setcopyright._ascii.ob_base, - .co_qualname = & const_str_setcopyright._ascii.ob_base, - .co_linetable = & site_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x03\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x6b\x02\x00\x00\x00\x00\x72\x20\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x1f\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x67\x00\x7d\x01\x7d\x00\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x64\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x73\x3e\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x72\x29\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x72\x61\x7c\x00\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\x64\x0b\x67\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x67\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x64\x0d\x7c\x00\x7c\x01\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x11\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -site_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__sitebuiltins._ascii.ob_base, - & const_str__Helper._ascii.ob_base, - &_Py_ID(builtins), - & const_str_help._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_sethelper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sethelper", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -site_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x14\x21\xd4\x14\x29\xd1\x14\x2b\xd4\x14\x2b\x85\x48\x84\x4d\x80\x4d\x80\x4d", -}; -static - struct _PyCode_DEF(64) -site_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 32, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 440, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_sethelper._ascii.ob_base, - .co_qualname = & const_str_sethelper._ascii.ob_base, - .co_linetable = & site_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[363]; - } -site_toplevel_consts_21_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 362, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x6e\x61\x62\x6c\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x6f\x6e\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x70\x72\x6f\x6d\x70\x74\x73\x2c\x20\x62\x79\x0a\x20\x20\x20\x20\x72\x65\x67\x69\x73\x74\x65\x72\x69\x6e\x67\x20\x61\x20\x73\x79\x73\x2e\x5f\x5f\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x68\x6f\x6f\x6b\x5f\x5f\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x72\x65\x61\x64\x6c\x69\x6e\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x63\x61\x6e\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2c\x20\x74\x68\x65\x20\x68\x6f\x6f\x6b\x20\x77\x69\x6c\x6c\x20\x73\x65\x74\x20\x74\x68\x65\x20\x54\x61\x62\x20\x6b\x65\x79\x0a\x20\x20\x20\x20\x61\x73\x20\x63\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x20\x6b\x65\x79\x20\x61\x6e\x64\x20\x72\x65\x67\x69\x73\x74\x65\x72\x20\x7e\x2f\x2e\x70\x79\x74\x68\x6f\x6e\x5f\x68\x69\x73\x74\x6f\x72\x79\x20\x61\x73\x20\x68\x69\x73\x74\x6f\x72\x79\x20\x66\x69\x6c\x65\x2e\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x63\x61\x6e\x20\x62\x65\x20\x6f\x76\x65\x72\x72\x69\x64\x64\x65\x6e\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x20\x6f\x72\x20\x75\x73\x65\x72\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x20\x6d\x6f\x64\x75\x6c\x65\x2c\x0a\x20\x20\x20\x20\x6f\x72\x20\x69\x6e\x20\x61\x20\x50\x59\x54\x48\x4f\x4e\x53\x54\x41\x52\x54\x55\x50\x20\x66\x69\x6c\x65\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_libedit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "libedit", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -site_toplevel_consts_21_consts_1_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bind ^I rl_complete", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -site_toplevel_consts_21_consts_1_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "tab: complete", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -site_toplevel_consts_21_consts_1_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ".python_history", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_write_history_file = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "write_history_file", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_21_consts_1_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_write_history_file._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_write_history = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "write_history", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[68]; - } -site_toplevel_consts_21_consts_1_consts_9_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 67, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "enablerlcompleter..register_readline..write_history", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[71]; - } -site_toplevel_consts_21_consts_1_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 70, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf0\x02\x05\x11\x19\xd8\x14\x1c\xd7\x14\x2f\xd2\x14\x2f\xb0\x07\xd1\x14\x38\xd4\x14\x38\xd0\x14\x38\xd0\x14\x38\xd0\x14\x38\xf8\xdd\x17\x1e\xf0\x00\x03\x11\x19\xf0\x00\x03\x11\x19\xf0\x00\x03\x11\x19\xf0\x06\x00\x15\x19\x90\x44\x90\x44\xf0\x07\x03\x11\x19\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[13]; - } -site_toplevel_consts_21_consts_1_consts_9_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 12, - }, - .ob_shash = -1, - .ob_sval = "\x83\x15\x1a\x00\x9a\x0a\x28\x03\xa7\x01\x28\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_history = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "history", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_21_consts_1_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_history._ascii.ob_base, - &_Py_ID(readline), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -site_toplevel_consts_21_consts_1_consts_9_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "\x80\x80", -}; -static - struct _PyCode_DEF(86) -site_toplevel_consts_21_consts_1_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 43, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_21_consts_1_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_21_consts_1_consts_9_exceptiontable.ob_base.ob_base, - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 490, - .co_nlocalsplus = 2, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 2, - .co_localsplusnames = & site_toplevel_consts_21_consts_1_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & site_toplevel_consts_21_consts_1_consts_9_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_write_history._ascii.ob_base, - .co_qualname = & site_toplevel_consts_21_consts_1_consts_9_qualname._ascii.ob_base, - .co_linetable = & site_toplevel_consts_21_consts_1_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x02\x97\x00\x09\x00\x89\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -site_toplevel_consts_21_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - &_Py_ID(__doc__), - &_Py_STR(empty), - & const_str_libedit._ascii.ob_base, - & site_toplevel_consts_21_consts_1_consts_5._ascii.ob_base, - & site_toplevel_consts_21_consts_1_consts_6._ascii.ob_base, - & ntpath_toplevel_consts_27_consts_2._ascii.ob_base, - & site_toplevel_consts_21_consts_1_consts_8._ascii.ob_base, - & site_toplevel_consts_21_consts_1_consts_9.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_atexit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "atexit", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_rlcompleter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "rlcompleter", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_parse_and_bind = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "parse_and_bind", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_read_init_file = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "read_init_file", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -const_str_get_current_history_length = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "get_current_history_length", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_read_history_file = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "read_history_file", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -site_toplevel_consts_21_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & const_str_atexit._ascii.ob_base, - &_Py_ID(readline), - & const_str_rlcompleter._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - &_Py_ID(getattr), - & const_str_parse_and_bind._ascii.ob_base, - & const_str_read_init_file._ascii.ob_base, - & const_str_OSError._ascii.ob_base, - & const_str_get_current_history_length._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(path), - &_Py_ID(join), - & const_str_expanduser._ascii.ob_base, - & const_str_read_history_file._ascii.ob_base, - & const_str_register._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_register_readline = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "register_readline", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -site_toplevel_consts_21_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "enablerlcompleter..register_readline", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[409]; - } -site_toplevel_consts_21_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 408, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xf8\x80\x00\xd8\x08\x15\x88\x0d\x88\x0d\x88\x0d\xf0\x02\x04\x09\x13\xd8\x0c\x1b\x88\x4f\x88\x4f\x88\x4f\xd8\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xd0\x0c\x1e\xf8\xdd\x0f\x1a\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xf0\x00\x01\x09\x13\xd8\x0c\x12\x88\x46\x88\x46\xf0\x03\x01\x09\x13\xf8\xf8\xf8\xf5\x0a\x00\x18\x1f\x98\x78\xa8\x19\xb0\x42\xd1\x17\x37\xd4\x17\x37\x88\x0c\xd8\x0b\x17\xd0\x0b\x23\xa8\x09\xb0\x5c\xd0\x28\x41\xd0\x28\x41\xd8\x0c\x14\xd7\x0c\x23\xd2\x0c\x23\xd0\x24\x39\xd1\x0c\x3a\xd4\x0c\x3a\xd0\x0c\x3a\xd0\x0c\x3a\xe0\x0c\x14\xd7\x0c\x23\xd2\x0c\x23\xa0\x4f\xd1\x0c\x34\xd4\x0c\x34\xd0\x0c\x34\xf0\x04\x07\x09\x11\xd8\x0c\x14\xd7\x0c\x23\xd2\x0c\x23\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xf8\xdd\x0f\x16\xf0\x00\x05\x09\x11\xf0\x00\x05\x09\x11\xf0\x00\x05\x09\x11\xf0\x0a\x00\x0d\x11\x88\x44\xf0\x0b\x05\x09\x11\xf8\xf8\xf8\xf0\x0e\x00\x0c\x14\xd7\x0b\x2e\xd2\x0b\x2e\xd1\x0b\x30\xd4\x0b\x30\xb0\x41\xd2\x0b\x35\xd0\x0b\x35\xf5\x0c\x00\x17\x19\x94\x67\x97\x6c\x92\x6c\xa5\x32\xa4\x37\xd7\x23\x35\xd2\x23\x35\xb0\x63\xd1\x23\x3a\xd4\x23\x3a\xd8\x23\x34\xf1\x03\x01\x17\x36\xf4\x00\x01\x17\x36\x88\x47\xf0\x04\x03\x0d\x15\xd8\x10\x18\xd7\x10\x2a\xd2\x10\x2a\xa8\x37\xd1\x10\x33\xd4\x10\x33\xd0\x10\x33\xd0\x10\x33\xf8\xdd\x13\x1a\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x06\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x00\x06\x0d\x19\xf0\x10\x00\x0d\x13\x8f\x4f\x8a\x4f\x98\x4d\xd1\x0c\x2a\xd4\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xf0\x2b\x00\x0c\x36\xd0\x0b\x35", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[49]; - } -site_toplevel_consts_21_consts_1_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 48, - }, - .ob_shash = -1, - .ob_sval = "\x88\x08\x11\x00\x91\x0a\x1f\x03\x9e\x01\x1f\x03\xc1\x25\x14\x41\x3a\x00\xc1\x3a\x0a\x42\x07\x03\xc2\x06\x01\x42\x07\x03\xc3\x20\x15\x43\x36\x00\xc3\x36\x0a\x44\x03\x03\xc4\x02\x01\x44\x03\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_readline_doc = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "readline_doc", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -site_toplevel_consts_21_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_atexit._ascii.ob_base, - & const_str_rlcompleter._ascii.ob_base, - & const_str_readline_doc._ascii.ob_base, - & const_str_write_history._ascii.ob_base, - & const_str_history._ascii.ob_base, - &_Py_ID(readline), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[7]; - } -site_toplevel_consts_21_consts_1_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 6, - }, - .ob_shash = -1, - .ob_sval = " @@", -}; -static - struct _PyCode_DEF(586) -site_toplevel_consts_21_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 293, - }, - .co_consts = & site_toplevel_consts_21_consts_1_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_21_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_21_consts_1_exceptiontable.ob_base.ob_base, - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 452, - .co_nlocalsplus = 6, - .co_nlocals = 4, - .co_nplaincellvars = 2, - .co_ncellvars = 2, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_21_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & site_toplevel_consts_21_consts_1_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_register_readline._ascii.ob_base, - .co_qualname = & site_toplevel_consts_21_consts_1_qualname._ascii.ob_base, - .co_linetable = & site_toplevel_consts_21_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x04\x87\x05\x97\x00\x64\x01\x64\x00\x6c\x00\x7d\x00\x09\x00\x64\x01\x64\x00\x6c\x01\x8a\x05\x64\x01\x64\x00\x6c\x02\x7d\x01\x6e\x11\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x05\x64\x02\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x81\x1a\x64\x04\x7c\x02\x76\x00\x72\x16\x89\x05\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x15\x89\x05\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x89\x05\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x89\x05\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x81\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x8a\x04\x09\x00\x89\x05\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x88\x04\x88\x05\x66\x02\x64\x09\x84\x08\x7d\x03\x7c\x00\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x00\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_21_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & site_toplevel_consts_21_consts_0._ascii.ob_base, - & site_toplevel_consts_21_consts_1.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str___interactivehook__ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__interactivehook__", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_21_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str___interactivehook__._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_enablerlcompleter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "enablerlcompleter", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[35]; - } -site_toplevel_consts_21_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 34, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x12\x2e\x05\x2b\xf0\x00\x2e\x05\x2b\xf0\x00\x2e\x05\x2b\xf0\x60\x01\x00\x1f\x30\x85\x43\xd4\x04\x1b\xd0\x04\x1b\xd0\x04\x1b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -site_toplevel_consts_21_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_register_readline._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(36) -site_toplevel_consts_21 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & site_toplevel_consts_21_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 443, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_enablerlcompleter._ascii.ob_base, - .co_qualname = & const_str_enablerlcompleter._ascii.ob_base, - .co_linetable = & site_toplevel_consts_21_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x84\x00\x7d\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str___PYVENV_LAUNCHER__ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__PYVENV_LAUNCHER__", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -site_toplevel_consts_22_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pyvenv.cfg", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_22_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_isfile._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -site_toplevel_consts_22_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "venv..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[63]; - } -site_toplevel_consts_22_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 62, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x00\x06\x17\x0a\xf0\x00\x06\x17\x0a\xf0\x00\x06\x17\x0a\xd8\x15\x1d\xf5\x08\x00\x0c\x0e\x8c\x37\x8f\x3e\x8a\x3e\x98\x28\xd1\x0b\x23\xd4\x0b\x23\xf0\x0b\x06\x17\x0a\xd8\x08\x10\xf0\x03\x06\x17\x0a\xf0\x00\x06\x17\x0a\xf0\x00\x06\x17\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_conffile = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "conffile", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_22_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0._ascii.ob_base, - & const_str_conffile._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(80) -site_toplevel_consts_22_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 40, - }, - .co_consts = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_names = & site_toplevel_consts_22_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 514, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_22_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_listcomp), - .co_qualname = & site_toplevel_consts_22_consts_4_qualname._ascii.ob_base, - .co_linetable = & site_toplevel_consts_22_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7c\x00\x5d\x23\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x21\x7c\x01\x91\x02\x8c\x24\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_true = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "true", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -site_toplevel_consts_22_consts_9 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "=", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -site_toplevel_consts_22_consts_10 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "include-system-site-packages", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_home = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "home", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -site_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - Py_None, - & const_str_darwin._ascii.ob_base, - & const_str___PYVENV_LAUNCHER__._ascii.ob_base, - & site_toplevel_consts_22_consts_3._ascii.ob_base, - & site_toplevel_consts_22_consts_4.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & const_str_true._ascii.ob_base, - &_Py_STR(utf_8), - & codecs_toplevel_consts_37_localsplusnames._object.ob_base.ob_base, - & site_toplevel_consts_22_consts_9._ascii.ob_base, - & site_toplevel_consts_22_consts_10._ascii.ob_base, - & const_str_home._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__base_executable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_base_executable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_executable = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "executable", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__home = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_home", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_exec_prefix = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exec_prefix", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[22]; - }_object; - } -site_toplevel_consts_22_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 22, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - & const_str_environ._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_platform._ascii.ob_base, - & const_str__base_executable._ascii.ob_base, - & const_str_executable._ascii.ob_base, - &_Py_ID(path), - & const_str_split._ascii.ob_base, - & const_str_abspath._ascii.ob_base, - & const_str_dirname._ascii.ob_base, - & const_str__home._ascii.ob_base, - &_Py_ID(join), - &_Py_ID(open), - & const_str_partition._ascii.ob_base, - & const_str_strip._ascii.ob_base, - & const_str_lower._ascii.ob_base, - & const_str_prefix._ascii.ob_base, - & const_str_exec_prefix._ascii.ob_base, - & const_str_addsitepackages._ascii.ob_base, - & const_str_PREFIXES._ascii.ob_base, - & const_str_insert._ascii.ob_base, - & const_str_ENABLE_USER_SITE._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_venv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "venv", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[564]; - } -site_toplevel_consts_22_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 563, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x06\x00\x0b\x0d\x8c\x2a\x80\x43\xdd\x07\x0a\x84\x7c\x90\x78\xd2\x07\x1f\xd0\x07\x1f\xd0\x24\x39\xb8\x53\xd0\x24\x40\xd0\x24\x40\xdd\x2c\x2e\xac\x4a\xd0\x37\x4c\xd4\x2c\x4d\xd0\x08\x4d\x88\x0a\x95\x53\xd4\x15\x29\xd0\x15\x29\xe5\x15\x18\x94\x5e\x88\x0a\xdd\x11\x13\x94\x17\x97\x1d\x92\x1d\x9d\x72\x9c\x77\x9f\x7f\x9a\x7f\xa8\x7a\xd1\x1f\x3a\xd4\x1f\x3a\xd1\x11\x3b\xd4\x11\x3b\x81\x4a\x80\x47\x88\x51\xdd\x12\x14\x94\x27\x97\x2f\x92\x2f\xa0\x27\xd1\x12\x2a\xd4\x12\x2a\x80\x4b\xd8\x10\x14\x85\x43\x84\x49\xd8\x14\x20\x80\x4d\xf0\x02\x06\x17\x0a\xf0\x00\x06\x17\x0a\xe5\x0c\x0e\x8c\x47\x8f\x4c\x8a\x4c\x98\x17\xa0\x2d\xd1\x0c\x30\xd4\x0c\x30\xdd\x0c\x0e\x8c\x47\x8f\x4c\x8a\x4c\x98\x1b\xa0\x6d\xd1\x0c\x34\xd4\x0c\x34\xf0\x05\x03\x22\x0e\xf0\x03\x06\x17\x0a\xf1\x00\x06\x17\x0a\xf4\x00\x06\x17\x0a\x80\x4f\xf0\x10\x00\x08\x17\xf1\x00\x1b\x05\x25\xd8\x17\x26\xa0\x71\xd4\x17\x29\x88\x0c\xd8\x16\x1c\x88\x0b\xf5\x06\x00\x0e\x12\x90\x2c\xa8\x17\xd0\x0d\x31\xd1\x0d\x31\xd4\x0d\x31\xf0\x00\x09\x09\x2a\xb0\x51\xd8\x18\x19\xf0\x00\x08\x0d\x2a\xf0\x00\x08\x0d\x2a\x90\x04\xd8\x13\x16\x98\x24\x90\x3b\x90\x3b\xd8\x24\x28\xa7\x4e\xa2\x4e\xb0\x33\xd1\x24\x37\xd4\x24\x37\x91\x4d\x90\x43\x98\x11\x98\x45\xd8\x1a\x1d\x9f\x29\x9a\x29\x99\x2b\x9c\x2b\xd7\x1a\x2b\xd2\x1a\x2b\xd1\x1a\x2d\xd4\x1a\x2d\x90\x43\xd8\x1c\x21\x9f\x4b\x9a\x4b\x99\x4d\x9c\x4d\x90\x45\xd8\x17\x1a\xd0\x1e\x3c\xd2\x17\x3c\xd0\x17\x3c\xd8\x26\x2b\xa7\x6b\xa2\x6b\xa1\x6d\xa4\x6d\x98\x0b\x98\x0b\xd8\x19\x1c\xa0\x06\x9a\x1d\x98\x1d\xd8\x24\x29\x9d\x03\x9c\x09\xf8\xf0\x11\x08\x0d\x2a\xf0\x03\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf1\x00\x09\x09\x2a\xf4\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf8\xf8\xf8\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x00\x09\x09\x2a\xf0\x16\x00\x28\x33\xd0\x08\x32\x8d\x03\x8c\x0a\x95\x53\x94\x5f\xf5\x06\x00\x09\x18\x98\x0b\xa5\x63\xa4\x6a\xa0\x5c\xd1\x08\x32\xd4\x08\x32\xd0\x08\x32\xf0\x08\x00\x0c\x17\x98\x26\xd2\x0b\x20\xd0\x0b\x20\xdd\x0c\x14\x8f\x4f\x8a\x4f\x98\x41\x9d\x73\x9c\x7a\xd1\x0c\x2a\xd4\x0c\x2a\xd0\x0c\x2a\xd0\x0c\x2a\xe5\x18\x1b\x9c\x0a\x90\x7c\x88\x48\xd8\x1f\x24\xd0\x0c\x1c\xe0\x0b\x16\xd0\x04\x16", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -site_toplevel_consts_22_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\xc4\x20\x42\x0a\x46\x37\x03\xc6\x37\x04\x46\x3b\x07\xc6\x3e\x01\x46\x3b\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_exe_dir = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "exe_dir", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_site_prefix = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "site_prefix", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_conf_basename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "conf_basename", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_candidate_confs = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "candidate_confs", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_virtual_conf = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "virtual_conf", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_system_site = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "system_site", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[14]; - }_object; - } -site_toplevel_consts_22_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 14, - }, - .ob_item = { - & const_str_known_paths._ascii.ob_base, - & const_str_env._ascii.ob_base, - & const_str_executable._ascii.ob_base, - & const_str_exe_dir._ascii.ob_base, - &_Py_ID(_), - & const_str_site_prefix._ascii.ob_base, - & const_str_conf_basename._ascii.ob_base, - & const_str_candidate_confs._ascii.ob_base, - & const_str_virtual_conf._ascii.ob_base, - & const_str_system_site._ascii.ob_base, - & const_str_f._ascii.ob_base, - &_Py_ID(line), - & const_str_key._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(1124) -site_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 562, - }, - .co_consts = & site_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_22_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_22_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 502, - .co_nlocalsplus = 14, - .co_nlocals = 14, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_73_consts_7_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_venv._ascii.ob_base, - .co_qualname = & const_str_venv._ascii.ob_base, - .co_linetable = & site_toplevel_consts_22_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x6b\x02\x00\x00\x00\x00\x72\x23\x64\x02\x7c\x01\x76\x00\x72\x1f\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x7d\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x0c\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x03\x7d\x04\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x7d\x06\x64\x04\x84\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x44\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x90\x01\x72\x2b\x7c\x07\x64\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x64\x06\x7d\x09\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\x64\x07\xac\x08\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x0a\x7c\x0a\x44\x00\x5d\x86\x7d\x0b\x64\x09\x7c\x0b\x76\x00\x72\x80\x7c\x0b\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x0c\x7d\x04\x7d\x0d\x7c\x0c\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x7c\x0d\xa0\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0d\x7c\x0c\x64\x0a\x6b\x02\x00\x00\x00\x00\x72\x15\x7c\x0d\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x8c\x74\x7c\x0c\x64\x0b\x6b\x02\x00\x00\x00\x00\x72\x0c\x7c\x0d\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x87\x09\x00\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x05\x78\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x10\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x11\x00\x00\x00\x00\x00\x00\x00\x00\x74\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x67\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x09\x64\x06\x6b\x02\x00\x00\x00\x00\x72\x26\x74\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0f\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x67\x01\x61\x13\x64\x0c\x61\x15\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -site_toplevel_consts_23_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Run custom site specific code, if available.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_sitecustomize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sitecustomize", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[58]; - } -site_toplevel_consts_23_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 57, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x73\x69\x74\x65\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x3b\x20\x73\x65\x74\x20\x50\x59\x54\x48\x4f\x4e\x56\x45\x52\x42\x4f\x53\x45\x20\x66\x6f\x72\x20\x74\x72\x61\x63\x65\x62\x61\x63\x6b\x3a\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -site_toplevel_consts_23_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & site_toplevel_consts_23_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & const_str_sitecustomize._ascii.ob_base, - & site_toplevel_consts_23_consts_4._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -site_toplevel_consts_23_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_sitecustomize._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - &_Py_ID(name), - & const_str_Exception._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_verbose._ascii.ob_base, - &_Py_ID(excepthook), - & const_str_exc_info._ascii.ob_base, - &_Py_ID(stderr), - &_Py_ID(write), - &_Py_ID(__class__), - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_execsitecustomize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execsitecustomize", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[270]; - } -site_toplevel_consts_23_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 269, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x04\x0f\x05\x2f\xf0\x02\x06\x09\x16\xd8\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x1a\xf0\x00\x04\x09\x16\xf0\x00\x04\x09\x16\xf0\x00\x04\x09\x16\xd8\x0f\x12\x8c\x78\x98\x3f\xd2\x0f\x2a\xd0\x0f\x2a\xd8\x10\x14\xe0\x10\x15\xf0\x05\x00\x11\x15\x90\x04\x90\x04\x90\x04\x90\x04\x90\x04\xf8\xf8\xf8\xf8\xf0\x05\x04\x09\x16\xf8\xf8\xf8\xf8\xf5\x0a\x00\x0c\x15\xf0\x00\x07\x05\x2f\xf0\x00\x07\x05\x2f\xf0\x00\x07\x05\x2f\xdd\x0b\x0e\x8c\x39\xd4\x0b\x1c\xf0\x00\x06\x09\x2f\xdd\x0c\x0f\x8c\x4e\x9d\x43\x9c\x4c\x99\x4e\x9c\x4e\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xe5\x0c\x0f\x8c\x4a\xd7\x0c\x1c\xd2\x0c\x1c\xd0\x0c\x1c\xf0\x06\x00\x12\x15\x94\x1d\xd4\x11\x27\xd0\x11\x27\xd0\x11\x27\xa8\x13\xa8\x13\xa8\x13\xf0\x05\x02\x11\x2e\xf1\x03\x03\x0d\x2f\xf4\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x00\x03\x0d\x2f\xf0\x05\x00\x0d\x2c\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xd0\x0c\x2b\xf8\xf8\xf8\xf8\xf0\x05\x07\x05\x2f\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[42]; - } -site_toplevel_consts_23_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 41, - }, - .ob_shash = -1, - .ob_sval = "\x83\x04\x09\x00\x89\x0a\x2b\x03\x93\x0d\x26\x03\xa0\x04\x2e\x00\xa6\x05\x2b\x03\xab\x03\x2e\x00\xae\x0a\x42\x2a\x03\xb8\x41\x21\x42\x25\x03\xc2\x25\x05\x42\x2a\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_23_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_sitecustomize._ascii.ob_base, - & const_str_exc._ascii.ob_base, - & const_str_err._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(346) -site_toplevel_consts_23 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 173, - }, - .co_consts = & site_toplevel_consts_23_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_23_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 554, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_23_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_execsitecustomize._ascii.ob_base, - .co_qualname = & const_str_execsitecustomize._ascii.ob_base, - .co_linetable = & site_toplevel_consts_23_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x64\x01\x64\x02\x6c\x00\x7d\x00\x64\x02\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x18\x7d\x01\x7c\x01\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x02\x00\x00\x00\x00\x72\x01\x6e\x01\x82\x00\x59\x00\x64\x02\x7d\x01\x7e\x01\x64\x02\x53\x00\x64\x02\x7d\x01\x7e\x01\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x72\x7d\x02\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x00\x01\x00\x6e\x36\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x02\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x05\x7c\x02\x9b\x01\x64\x06\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x64\x02\x7d\x02\x7e\x02\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -site_toplevel_consts_24_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Run custom user specific code, if available.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_usercustomize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "usercustomize", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[58]; - } -site_toplevel_consts_24_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 57, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x45\x72\x72\x6f\x72\x20\x69\x6e\x20\x75\x73\x65\x72\x63\x75\x73\x74\x6f\x6d\x69\x7a\x65\x3b\x20\x73\x65\x74\x20\x50\x59\x54\x48\x4f\x4e\x56\x45\x52\x42\x4f\x53\x45\x20\x66\x6f\x72\x20\x74\x72\x61\x63\x65\x62\x61\x63\x6b\x3a\x0a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -site_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & site_toplevel_consts_24_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & const_str_usercustomize._ascii.ob_base, - & site_toplevel_consts_24_consts_4._ascii.ob_base, - & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, - & _sitebuiltins_toplevel_consts_5_consts_5_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -site_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_usercustomize._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - &_Py_ID(name), - & const_str_Exception._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_verbose._ascii.ob_base, - &_Py_ID(excepthook), - & const_str_exc_info._ascii.ob_base, - &_Py_ID(stderr), - &_Py_ID(write), - &_Py_ID(__class__), - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_execusercustomize = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "execusercustomize", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_24_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_usercustomize._ascii.ob_base, - & const_str_exc._ascii.ob_base, - & const_str_err._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(346) -site_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 173, - }, - .co_consts = & site_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = & site_toplevel_consts_23_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 574, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_24_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_execusercustomize._ascii.ob_base, - .co_qualname = & const_str_execusercustomize._ascii.ob_base, - .co_linetable = & site_toplevel_consts_23_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x09\x00\x64\x01\x64\x02\x6c\x00\x7d\x00\x64\x02\x53\x00\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x18\x7d\x01\x7c\x01\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\x6b\x02\x00\x00\x00\x00\x72\x01\x6e\x01\x82\x00\x59\x00\x64\x02\x7d\x01\x7e\x01\x64\x02\x53\x00\x64\x02\x7d\x01\x7e\x01\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x72\x7d\x02\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x00\x01\x00\x6e\x36\x74\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x02\x6a\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x05\x7c\x02\x9b\x01\x64\x06\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x59\x00\x64\x02\x7d\x02\x7e\x02\x64\x02\x53\x00\x64\x02\x7d\x02\x7e\x02\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[208]; - } -site_toplevel_consts_25_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 207, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x41\x64\x64\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x73\x69\x74\x65\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x73\x65\x61\x72\x63\x68\x20\x70\x61\x74\x68\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x61\x6c\x6c\x65\x64\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x77\x68\x65\x6e\x20\x74\x68\x69\x73\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2c\x0a\x20\x20\x20\x20\x75\x6e\x6c\x65\x73\x73\x20\x74\x68\x65\x20\x70\x79\x74\x68\x6f\x6e\x20\x69\x6e\x74\x65\x72\x70\x72\x65\x74\x65\x72\x20\x77\x61\x73\x20\x73\x74\x61\x72\x74\x65\x64\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x2d\x53\x20\x66\x6c\x61\x67\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_25_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & site_toplevel_consts_25_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_isolated = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "isolated", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -site_toplevel_consts_25_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - &_Py_ID(path), - & const_str_removeduppaths._ascii.ob_base, - & const_str_abs_paths._ascii.ob_base, - & const_str_venv._ascii.ob_base, - & const_str_ENABLE_USER_SITE._ascii.ob_base, - & const_str_check_enableusersite._ascii.ob_base, - & const_str_addusersitepackages._ascii.ob_base, - & const_str_addsitepackages._ascii.ob_base, - & const_str_setquit._ascii.ob_base, - & const_str_setcopyright._ascii.ob_base, - & const_str_sethelper._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_isolated._ascii.ob_base, - & const_str_enablerlcompleter._ascii.ob_base, - & const_str_execsitecustomize._ascii.ob_base, - & const_str_execusercustomize._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_main = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "main", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[212]; - } -site_toplevel_consts_25_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 211, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x10\x00\x11\x14\x94\x08\x98\x11\x98\x11\x98\x11\x94\x0b\x80\x49\xdd\x12\x20\xd1\x12\x22\xd4\x12\x22\x80\x4b\xd8\x07\x10\x95\x43\x94\x48\xd2\x07\x1c\xd0\x07\x1c\xf5\x06\x00\x09\x12\x89\x0b\x8c\x0b\x88\x0b\xe5\x12\x16\x90\x7b\xd1\x12\x23\xd4\x12\x23\x80\x4b\xdd\x07\x17\xd0\x07\x1f\xdd\x1b\x2f\xd1\x1b\x31\xd4\x1b\x31\xd0\x08\x18\xdd\x12\x25\xa0\x6b\xd1\x12\x32\xd4\x12\x32\x80\x4b\xdd\x12\x21\xa0\x2b\xd1\x12\x2e\xd4\x12\x2e\x80\x4b\xdd\x04\x0b\x81\x49\x84\x49\x80\x49\xdd\x04\x10\x81\x4e\x84\x4e\x80\x4e\xdd\x04\x0d\x81\x4b\x84\x4b\x80\x4b\xdd\x0b\x0e\x8c\x39\xd4\x0b\x1d\xf0\x00\x01\x05\x1c\xdd\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xdd\x04\x15\xd1\x04\x17\xd4\x04\x17\xd0\x04\x17\xdd\x07\x17\xf0\x00\x01\x05\x1c\xdd\x08\x19\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xf0\x03\x01\x05\x1c\xf0\x00\x01\x05\x1c", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_orig_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "orig_path", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -site_toplevel_consts_25_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_orig_path._ascii.ob_base, - & const_str_known_paths._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(486) -site_toplevel_consts_25 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 243, - }, - .co_consts = & site_toplevel_consts_25_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_25_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 594, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_25_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_main._ascii.ob_base, - .co_qualname = & const_str_main._ascii.ob_base, - .co_linetable = & site_toplevel_consts_25_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x64\x01\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x0e\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x0e\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\x05\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0e\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[435]; - } -site_toplevel_consts_26_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 434, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x20\x20\x20\x20\x25\x73\x20\x5b\x2d\x2d\x75\x73\x65\x72\x2d\x62\x61\x73\x65\x5d\x20\x5b\x2d\x2d\x75\x73\x65\x72\x2d\x73\x69\x74\x65\x5d\x0a\x0a\x20\x20\x20\x20\x57\x69\x74\x68\x6f\x75\x74\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x70\x72\x69\x6e\x74\x20\x73\x6f\x6d\x65\x20\x75\x73\x65\x66\x75\x6c\x20\x69\x6e\x66\x6f\x72\x6d\x61\x74\x69\x6f\x6e\x0a\x20\x20\x20\x20\x57\x69\x74\x68\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x70\x72\x69\x6e\x74\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x55\x53\x45\x52\x5f\x42\x41\x53\x45\x20\x61\x6e\x64\x2f\x6f\x72\x20\x55\x53\x45\x52\x5f\x53\x49\x54\x45\x20\x73\x65\x70\x61\x72\x61\x74\x65\x64\x0a\x20\x20\x20\x20\x62\x79\x20\x27\x25\x73\x27\x2e\x0a\x0a\x20\x20\x20\x20\x45\x78\x69\x74\x20\x63\x6f\x64\x65\x73\x20\x77\x69\x74\x68\x20\x2d\x2d\x75\x73\x65\x72\x2d\x62\x61\x73\x65\x20\x6f\x72\x20\x2d\x2d\x75\x73\x65\x72\x2d\x73\x69\x74\x65\x3a\x0a\x20\x20\x20\x20\x20\x20\x30\x20\x2d\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x65\x6e\x61\x62\x6c\x65\x64\x0a\x20\x20\x20\x20\x20\x20\x31\x20\x2d\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x20\x62\x79\x20\x75\x73\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x32\x20\x2d\x20\x75\x73\x65\x72\x20\x73\x69\x74\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x69\x73\x20\x64\x69\x73\x61\x62\x6c\x65\x64\x20\x62\x79\x20\x73\x75\x70\x65\x72\x20\x75\x73\x65\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x20\x66\x6f\x72\x20\x73\x65\x63\x75\x72\x69\x74\x79\x20\x72\x65\x61\x73\x6f\x6e\x73\x0a\x20\x20\x20\x20\x20\x3e\x32\x20\x2d\x20\x75\x6e\x6b\x6e\x6f\x77\x6e\x20\x65\x72\x72\x6f\x72\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -site_toplevel_consts_26_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "sys.path = [", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -site_toplevel_consts_26_consts_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -site_toplevel_consts_26_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ",", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -site_toplevel_consts_26_consts_7_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "doesn't exist", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_26_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & const_str_exists._ascii.ob_base, - & site_toplevel_consts_26_consts_7_consts_2._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -site_toplevel_consts_26_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_isdir._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -site_toplevel_consts_26_consts_7_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_script..exists", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[38]; - } -site_toplevel_consts_26_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 37, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x13\xd0\x0f\x1f\xa5\x42\xa4\x47\xa7\x4d\xa2\x4d\xb0\x24\xd1\x24\x37\xd4\x24\x37\xd0\x0f\x1f\xd8\x17\x1f\x90\x78\xe0\x17\x26\x90\x7f", -}; -static - struct _PyCode_DEF(76) -site_toplevel_consts_26_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 38, - }, - .co_consts = & site_toplevel_consts_26_consts_7_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_26_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 19, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 651, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str_exists._ascii.ob_base, - .co_qualname = & site_toplevel_consts_26_consts_7_qualname._ascii.ob_base, - .co_linetable = & site_toplevel_consts_26_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x81\x21\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x02\x64\x01\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -site_toplevel_consts_26_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "USER_BASE: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -site_toplevel_consts_26_consts_11 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "USER_SITE: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -site_toplevel_consts_26_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ENABLE_USER_SITE: ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -site_toplevel_consts_26_consts_14 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "--user-base", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -site_toplevel_consts_26_consts_15 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "--user-site", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[20]; - }_object; - } -site_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 20, - }, - .ob_item = { - Py_None, - & site_toplevel_consts_26_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & site_toplevel_consts_26_consts_3._ascii.ob_base, - & site_toplevel_consts_26_consts_4._ascii.ob_base, - & site_toplevel_consts_26_consts_5._ascii.ob_base, - & _collections_abc_toplevel_consts_44_consts_4_consts_8._ascii.ob_base, - & site_toplevel_consts_26_consts_7.ob_base.ob_base, - & site_toplevel_consts_26_consts_8._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_37_consts_3_consts_3._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_55_consts_6._ascii.ob_base, - & site_toplevel_consts_26_consts_11._ascii.ob_base, - & site_toplevel_consts_26_consts_12._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & site_toplevel_consts_26_consts_14._ascii.ob_base, - & site_toplevel_consts_26_consts_15._ascii.ob_base, - Py_False, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 10], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_argv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "argv", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_textwrap = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "textwrap", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_dedent = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "dedent", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[16]; - }_object; - } -site_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 16, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - & const_str_argv._ascii.ob_base, - & const_str_getuserbase._ascii.ob_base, - & const_str_getusersitepackages._ascii.ob_base, - & const_str_print._ascii.ob_base, - &_Py_ID(path), - & const_str_ENABLE_USER_SITE._ascii.ob_base, - & const_str_exit._ascii.ob_base, - &_Py_ID(append), - & const_str_USER_BASE._ascii.ob_base, - & const_str_USER_SITE._ascii.ob_base, - & const_str_os._ascii.ob_base, - & const_str_pathsep._ascii.ob_base, - &_Py_ID(join), - & const_str_textwrap._ascii.ob_base, - & const_str_dedent._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str__script = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_script", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[527]; - } -site_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 526, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x02\x0d\x0c\x08\x80\x44\xf5\x1c\x00\x0c\x0f\x8c\x38\x90\x41\x90\x42\x90\x42\x8c\x3c\x80\x44\xd8\x0b\x0f\xf0\x00\x0f\x05\x14\xdd\x14\x1f\x91\x4d\x94\x4d\x88\x09\xdd\x14\x27\xd1\x14\x29\xd4\x14\x29\x88\x09\xdd\x08\x0d\x88\x6e\xd1\x08\x1d\xd4\x08\x1d\xd0\x08\x1d\xdd\x13\x16\x94\x38\xf0\x00\x01\x09\x26\xf0\x00\x01\x09\x26\x88\x43\xdd\x0c\x11\x88\x45\x98\x73\x98\x73\x98\x73\xd0\x12\x24\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xdd\x08\x0d\x88\x63\x89\x0a\x8c\x0a\x88\x0a\xf0\x02\x04\x09\x27\xf0\x00\x04\x09\x27\xf0\x00\x04\x09\x27\xf5\x0a\x00\x09\x0e\xd0\x0e\x3f\x98\x49\xd0\x0e\x3f\xd0\x0e\x3f\xa8\x36\xa8\x36\xb0\x29\xd1\x2b\x3c\xd4\x2b\x3c\xd0\x0e\x3f\xd0\x0e\x3f\xd0\x0e\x3f\xd1\x08\x40\xd4\x08\x40\xd0\x08\x40\xdd\x08\x0d\xd0\x0e\x3f\x98\x49\xd0\x0e\x3f\xd0\x0e\x3f\xa8\x36\xa8\x36\xb0\x29\xd1\x2b\x3c\xd4\x2b\x3c\xd0\x0e\x3f\xd0\x0e\x3f\xd0\x0e\x3f\xd1\x08\x40\xd4\x08\x40\xd0\x08\x40\xdd\x08\x0d\xd0\x0e\x37\xd5\x23\x33\xd0\x0e\x37\xd0\x0e\x37\xd1\x08\x38\xd4\x08\x38\xd0\x08\x38\xdd\x08\x0b\x8c\x08\x90\x11\x89\x0b\x8c\x0b\x88\x0b\xe0\x0d\x0f\x80\x46\xd8\x07\x14\x98\x04\xd0\x07\x1c\xd0\x07\x1c\xd8\x08\x0e\x8f\x0d\x8a\x0d\x95\x69\xd1\x08\x20\xd4\x08\x20\xd0\x08\x20\xd8\x07\x14\x98\x04\xd0\x07\x1c\xd0\x07\x1c\xd8\x08\x0e\x8f\x0d\x8a\x0d\x95\x69\xd1\x08\x20\xd4\x08\x20\xd0\x08\x20\xe0\x07\x0d\xf0\x00\x0d\x05\x15\xdd\x08\x0d\x8d\x62\x8c\x6a\x8f\x6f\x8a\x6f\x98\x66\xd1\x0e\x25\xd4\x0e\x25\xd1\x08\x26\xd4\x08\x26\xd0\x08\x26\xdd\x0b\x1b\xf0\x00\x07\x09\x18\xdd\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xdd\x0d\x1d\xa0\x15\xd0\x0d\x26\xd0\x0d\x26\xdd\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xdd\x0d\x1d\xd0\x0d\x25\xdd\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xe5\x0c\x0f\x8c\x48\x90\x51\x89\x4b\x8c\x4b\x88\x4b\x88\x4b\x88\x4b\xe0\x08\x17\x88\x0f\x88\x0f\x88\x0f\xdd\x08\x0d\x88\x68\x8f\x6f\x8a\x6f\x98\x64\xa5\x63\xa4\x68\xa8\x71\xa4\x6b\xb5\x32\xb4\x3a\xd0\x25\x3e\xd1\x1e\x3e\xd1\x0e\x3f\xd4\x0e\x3f\xd1\x08\x40\xd4\x08\x40\xd0\x08\x40\xdd\x08\x0b\x8c\x08\x90\x12\x89\x0c\x8c\x0c\x88\x0c\x88\x0c\x88\x0c", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_user_base = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "user_base", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -site_toplevel_consts_26_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_help._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_user_base._ascii.ob_base, - & const_str_user_site._ascii.ob_base, - & const_str_dir._ascii.ob_base, - & const_str_exists._ascii.ob_base, - &_Py_ID(buffer), - & const_str_textwrap._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(1070) -site_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 535, - }, - .co_consts = & site_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 628, - .co_nlocalsplus = 8, - .co_nlocals = 8, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & site_toplevel_consts_26_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_27_localspluskinds.ob_base.ob_base, - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = & const_str__script._ascii.ob_base, - .co_qualname = & const_str__script._ascii.ob_base, - .co_linetable = & site_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7d\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x64\x00\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x73\xc8\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x15\x7d\x04\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x04\x9b\x02\x64\x05\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x16\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x07\x84\x00\x7d\x05\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x02\x9b\x02\x64\x09\x02\x00\x7c\x05\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0a\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0b\x7c\x03\x9b\x02\x64\x09\x02\x00\x7c\x05\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0a\x9d\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0c\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x67\x00\x7d\x06\x64\x0e\x7c\x01\x76\x00\x72\x1a\x7c\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x0f\x7c\x01\x76\x00\x72\x1a\x7c\x06\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x06\x72\x9b\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x16\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\x75\x00\x72\x16\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x16\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x12\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00\x64\x0d\x64\x00\x6c\x0e\x7d\x07\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0d\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x64\x13\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[29]; - }_object; - } -site_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 29, - }, - .ob_item = { - & site_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & site_toplevel_consts_3.ob_base.ob_base, - & site_toplevel_consts_4.ob_base.ob_base, - & site_toplevel_consts_5.ob_base.ob_base, - & site_toplevel_consts_6.ob_base.ob_base, - & site_toplevel_consts_7.ob_base.ob_base, - & site_toplevel_consts_8.ob_base.ob_base, - & site_toplevel_consts_9.ob_base.ob_base, - & site_toplevel_consts_10.ob_base.ob_base, - & site_toplevel_consts_11.ob_base.ob_base, - & site_toplevel_consts_12.ob_base.ob_base, - & site_toplevel_consts_13.ob_base.ob_base, - & site_toplevel_consts_14.ob_base.ob_base, - & site_toplevel_consts_15.ob_base.ob_base, - & site_toplevel_consts_16.ob_base.ob_base, - & site_toplevel_consts_17.ob_base.ob_base, - & site_toplevel_consts_18.ob_base.ob_base, - & site_toplevel_consts_19.ob_base.ob_base, - & site_toplevel_consts_20.ob_base.ob_base, - & site_toplevel_consts_21.ob_base.ob_base, - & site_toplevel_consts_22.ob_base.ob_base, - & site_toplevel_consts_23.ob_base.ob_base, - & site_toplevel_consts_24.ob_base.ob_base, - & site_toplevel_consts_25.ob_base.ob_base, - & site_toplevel_consts_26.ob_base.ob_base, - &_Py_ID(__main__), - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_no_site = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "no_site", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[40]; - }_object; - } -site_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 40, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_sys._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(builtins), - & const_str__sitebuiltins._ascii.ob_base, - & const_str_io._ascii.ob_base, - & const_str_stat._ascii.ob_base, - & const_str_prefix._ascii.ob_base, - & const_str_exec_prefix._ascii.ob_base, - & const_str_PREFIXES._ascii.ob_base, - & const_str_ENABLE_USER_SITE._ascii.ob_base, - & const_str_USER_SITE._ascii.ob_base, - & const_str_USER_BASE._ascii.ob_base, - & const_str__trace._ascii.ob_base, - & const_str_makepath._ascii.ob_base, - & const_str_abs_paths._ascii.ob_base, - & const_str_removeduppaths._ascii.ob_base, - & const_str__init_pathinfo._ascii.ob_base, - & const_str_addpackage._ascii.ob_base, - & const_str_addsitedir._ascii.ob_base, - & const_str_check_enableusersite._ascii.ob_base, - & const_str__getuserbase._ascii.ob_base, - & const_str__get_path._ascii.ob_base, - & const_str_getuserbase._ascii.ob_base, - & const_str_getusersitepackages._ascii.ob_base, - & const_str_addusersitepackages._ascii.ob_base, - & const_str_getsitepackages._ascii.ob_base, - & const_str_addsitepackages._ascii.ob_base, - & const_str_setquit._ascii.ob_base, - & const_str_setcopyright._ascii.ob_base, - & const_str_sethelper._ascii.ob_base, - & const_str_enablerlcompleter._ascii.ob_base, - & const_str_venv._ascii.ob_base, - & const_str_execsitecustomize._ascii.ob_base, - & const_str_execusercustomize._ascii.ob_base, - & const_str_main._ascii.ob_base, - & const_str_flags._ascii.ob_base, - & const_str_no_site._ascii.ob_base, - & const_str__script._ascii.ob_base, - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[560]; - } -site_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 559, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x45\x01\x01\x04\xf0\x00\x45\x01\x01\x04\xf0\x4e\x02\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0f\x80\x0f\x80\x0f\x80\x0f\xd8\x00\x14\xd0\x00\x14\xd0\x00\x14\xd0\x00\x14\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xf0\x06\x00\x0d\x10\x8c\x4a\x98\x03\x9c\x0f\xd0\x0b\x28\x80\x08\xf0\x06\x00\x14\x18\xd0\x00\x10\xf0\x0a\x00\x0d\x11\x80\x09\xd8\x0c\x10\x80\x09\xf0\x06\x02\x01\x28\xf0\x00\x02\x01\x28\xf0\x00\x02\x01\x28\xf0\x0a\x06\x01\x26\xf0\x00\x06\x01\x26\xf0\x00\x06\x01\x26\xf0\x12\x14\x01\x11\xf0\x00\x14\x01\x11\xf0\x00\x14\x01\x11\xf0\x2e\x10\x01\x17\xf0\x00\x10\x01\x17\xf0\x00\x10\x01\x17\xf0\x26\x0a\x01\x0d\xf0\x00\x0a\x01\x0d\xf0\x00\x0a\x01\x0d\xf0\x1a\x34\x01\x17\xf0\x00\x34\x01\x17\xf0\x00\x34\x01\x17\xf0\x6e\x01\x17\x01\x17\xf0\x00\x17\x01\x17\xf0\x00\x17\x01\x17\xf0\x00\x17\x01\x17\xf0\x34\x16\x01\x10\xf0\x00\x16\x01\x10\xf0\x00\x16\x01\x10\xf0\x40\x01\x14\x01\x23\xf0\x00\x14\x01\x23\xf0\x00\x14\x01\x23\xf0\x30\x0a\x01\x4b\x01\xf0\x00\x0a\x01\x4b\x01\xf0\x00\x0a\x01\x4b\x01\xf0\x1a\x0a\x01\x15\xf0\x00\x0a\x01\x15\xf0\x00\x0a\x01\x15\xf0\x1a\x0f\x01\x15\xf0\x00\x0f\x01\x15\xf0\x00\x0f\x01\x15\xf0\x22\x0d\x01\x17\xf0\x00\x0d\x01\x17\xf0\x00\x0d\x01\x17\xf0\x1e\x1f\x01\x18\xf0\x00\x1f\x01\x18\xf0\x00\x1f\x01\x18\xf0\x00\x1f\x01\x18\xf0\x42\x01\x07\x01\x17\xf0\x00\x07\x01\x17\xf0\x00\x07\x01\x17\xf0\x00\x07\x01\x17\xf0\x12\x0d\x01\x37\xf0\x00\x0d\x01\x37\xf0\x00\x0d\x01\x37\xf0\x20\x17\x01\x15\xf0\x00\x17\x01\x15\xf0\x00\x17\x01\x15\xf0\x34\x01\x01\x2c\xf0\x00\x01\x01\x2c\xf0\x00\x01\x01\x2c\xf0\x06\x39\x01\x30\xf0\x00\x39\x01\x30\xf0\x00\x39\x01\x30\xf0\x76\x01\x31\x01\x17\xf0\x00\x31\x01\x17\xf0\x00\x31\x01\x17\xf0\x68\x01\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x28\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x00\x11\x01\x2f\xf0\x28\x1b\x01\x1c\xf0\x00\x1b\x01\x1c\xf0\x00\x1b\x01\x1c\xf0\x3e\x00\x08\x0b\x84\x79\xd4\x07\x18\xf0\x00\x01\x01\x0b\xd8\x04\x08\x80\x44\x81\x46\x84\x46\x80\x46\xf0\x04\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x6c\x01\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xd8\x04\x0b\x80\x47\x81\x49\x84\x49\x80\x49\x80\x49\x80\x49\xf0\x03\x00\x04\x1a\xd0\x03\x19", -}; -static - struct _PyCode_DEF(328) -site_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 164, - }, - .co_consts = & site_toplevel_consts._object.ob_base.ob_base, - .co_names = & site_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & site_toplevel_consts_3_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & site_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x02\x64\x01\x64\x02\x6c\x03\x5a\x03\x64\x01\x64\x02\x6c\x04\x5a\x04\x64\x01\x64\x02\x6c\x05\x5a\x05\x64\x01\x64\x02\x6c\x06\x5a\x06\x65\x01\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x65\x01\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x67\x02\x61\x09\x64\x02\x61\x0a\x64\x02\x61\x0b\x64\x02\x61\x0c\x64\x03\x84\x00\x5a\x0d\x64\x04\x84\x00\x5a\x0e\x64\x05\x84\x00\x5a\x0f\x64\x06\x84\x00\x5a\x10\x64\x07\x84\x00\x5a\x11\x64\x08\x84\x00\x5a\x12\x64\x1c\x64\x09\x84\x01\x5a\x13\x64\x0a\x84\x00\x5a\x14\x64\x0b\x84\x00\x5a\x15\x64\x0c\x84\x00\x5a\x16\x64\x0d\x84\x00\x5a\x17\x64\x0e\x84\x00\x5a\x18\x64\x0f\x84\x00\x5a\x19\x64\x1c\x64\x10\x84\x01\x5a\x1a\x64\x1c\x64\x11\x84\x01\x5a\x1b\x64\x12\x84\x00\x5a\x1c\x64\x13\x84\x00\x5a\x1d\x64\x14\x84\x00\x5a\x1e\x64\x15\x84\x00\x5a\x1f\x64\x16\x84\x00\x5a\x20\x64\x17\x84\x00\x5a\x21\x64\x18\x84\x00\x5a\x22\x64\x19\x84\x00\x5a\x23\x65\x01\x6a\x24\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x25\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0a\x02\x00\x65\x23\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x1a\x84\x00\x5a\x26\x65\x27\x64\x1b\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x26\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void site_do_patchups(void) { -} - -PyObject * -_Py_get_site_toplevel(void) -{ - site_do_patchups(); - return Py_NewRef((PyObject *) &site_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[112]; - } -stat_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 111, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x43\x6f\x6e\x73\x74\x61\x6e\x74\x73\x2f\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x66\x6f\x72\x20\x69\x6e\x74\x65\x72\x70\x72\x65\x74\x69\x6e\x67\x20\x72\x65\x73\x75\x6c\x74\x73\x20\x6f\x66\x20\x6f\x73\x2e\x73\x74\x61\x74\x28\x29\x20\x61\x6e\x64\x20\x6f\x73\x2e\x6c\x73\x74\x61\x74\x28\x29\x2e\x0a\x0a\x53\x75\x67\x67\x65\x73\x74\x65\x64\x20\x75\x73\x61\x67\x65\x3a\x20\x66\x72\x6f\x6d\x20\x73\x74\x61\x74\x20\x69\x6d\x70\x6f\x72\x74\x20\x2a\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[78]; - } -stat_toplevel_consts_11_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 77, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x6f\x72\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x27\x73\x20\x6d\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x63\x61\x6e\x20\x62\x65\x20\x73\x65\x74\x20\x62\x79\x0a\x20\x20\x20\x20\x6f\x73\x2e\x63\x68\x6d\x6f\x64\x28\x29\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_4095 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 4095 }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & stat_toplevel_consts_11_consts_0._ascii.ob_base, - & const_int_4095.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -stat_toplevel_consts_11_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IMODE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IMODE", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -stat_toplevel_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x0c\x10\x90\x26\x89\x3d\xd0\x04\x18", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - &_Py_ID(mode), - }, - }, -}; -static - struct _PyCode_DEF(12) -stat_toplevel_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 6, - }, - .co_consts = & stat_toplevel_consts_11_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 21, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_IMODE._ascii.ob_base, - .co_qualname = & const_str_S_IMODE._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x64\x01\x7a\x01\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[77]; - } -stat_toplevel_consts_12_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 76, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x70\x6f\x72\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x66\x69\x6c\x65\x27\x73\x20\x6d\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x64\x65\x73\x63\x72\x69\x62\x65\x73\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x66\x69\x6c\x65\x20\x74\x79\x70\x65\x2e\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & stat_toplevel_consts_12_consts_0._ascii.ob_base, - & const_int_61440.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_S_IFMT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFMT", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[15]; - } -stat_toplevel_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 14, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x0c\x10\x90\x28\x89\x3f\xd0\x04\x1a", -}; -static - struct _PyCode_DEF(12) -stat_toplevel_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 6, - }, - .co_consts = & stat_toplevel_consts_12_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 27, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_IFMT._ascii.ob_base, - .co_qualname = & const_str_S_IFMT._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x64\x01\x7a\x01\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_8192 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 8192 }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_24576 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 24576 }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_4096 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 4096 }, -}; -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_40960 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 8192, 1 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_40960 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 40960 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_49152 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 16384, 1 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_49152 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 49152 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -static - struct { - PyASCIIObject _ascii; - uint8_t _data[41]; - } -stat_toplevel_consts_20_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 40, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a directory.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_20_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & stat_toplevel_consts_20_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IFDIR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFDIR", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFDIR._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -stat_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x11\x90\x24\x89\x3c\x8c\x3c\x9d\x37\xd2\x0b\x22\xd0\x04\x22", -}; -static - struct _PyCode_DEF(50) -stat_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & stat_toplevel_consts_20_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 50, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISDIR._ascii.ob_base, - .co_qualname = & const_str_S_ISDIR._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[61]; - } -stat_toplevel_consts_21_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 60, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a character special device file.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_21_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & stat_toplevel_consts_21_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IFCHR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFCHR", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_21_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFCHR._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISCHR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISCHR", -}; -static - struct _PyCode_DEF(50) -stat_toplevel_consts_21 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & stat_toplevel_consts_21_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 54, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISCHR._ascii.ob_base, - .co_qualname = & const_str_S_ISCHR._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[57]; - } -stat_toplevel_consts_22_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 56, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a block special device file.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & stat_toplevel_consts_22_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IFBLK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFBLK", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_22_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFBLK._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISBLK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISBLK", -}; -static - struct _PyCode_DEF(50) -stat_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & stat_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_22_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 58, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISBLK._ascii.ob_base, - .co_qualname = & const_str_S_ISBLK._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[44]; - } -stat_toplevel_consts_23_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 43, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a regular file.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_23_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & stat_toplevel_consts_23_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IFREG = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFREG", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_23_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFREG._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(50) -stat_toplevel_consts_23 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & stat_toplevel_consts_23_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 62, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISREG._ascii.ob_base, - .co_qualname = & const_str_S_ISREG._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[49]; - } -stat_toplevel_consts_24_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 48, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a FIFO (named pipe).", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & stat_toplevel_consts_24_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IFIFO = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFIFO", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFIFO._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_ISFIFO = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISFIFO", -}; -static - struct _PyCode_DEF(50) -stat_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & stat_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 66, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISFIFO._ascii.ob_base, - .co_qualname = & const_str_S_ISFIFO._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[45]; - } -stat_toplevel_consts_25_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 44, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a symbolic link.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_25_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & stat_toplevel_consts_25_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IFLNK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFLNK", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_25_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFLNK._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(50) -stat_toplevel_consts_25 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & stat_toplevel_consts_25_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_25_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 70, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISLNK._ascii.ob_base, - .co_qualname = & const_str_S_ISLNK._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -stat_toplevel_consts_26_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a socket.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -stat_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & stat_toplevel_consts_26_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_IFSOCK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFSOCK", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFSOCK._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_ISSOCK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISSOCK", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -stat_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x11\x90\x24\x89\x3c\x8c\x3c\x9d\x38\xd2\x0b\x23\xd0\x04\x23", -}; -static - struct _PyCode_DEF(50) -stat_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 25, - }, - .co_consts = & stat_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 74, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISSOCK._ascii.ob_base, - .co_qualname = & const_str_S_ISSOCK._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x02\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -stat_toplevel_consts_27_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a door.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_27_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & stat_toplevel_consts_27_consts_0._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_ISDOOR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISDOOR", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[8]; - } -stat_toplevel_consts_27_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 7, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x10\x88\x35", -}; -static - struct _PyCode_DEF(6) -stat_toplevel_consts_27 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & stat_toplevel_consts_27_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 78, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISDOOR._ascii.ob_base, - .co_qualname = & const_str_S_ISDOOR._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_27_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[43]; - } -stat_toplevel_consts_28_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 42, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from an event port.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_28_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & stat_toplevel_consts_28_consts_0._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_ISPORT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISPORT", -}; -static - struct _PyCode_DEF(6) -stat_toplevel_consts_28 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & stat_toplevel_consts_28_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 82, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISPORT._ascii.ob_base, - .co_qualname = & const_str_S_ISPORT._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_27_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[40]; - } -stat_toplevel_consts_29_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 39, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return True if mode is from a whiteout.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -stat_toplevel_consts_29_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & stat_toplevel_consts_29_consts_0._ascii.ob_base, - Py_False, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISWHT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISWHT", -}; -static - struct _PyCode_DEF(6) -stat_toplevel_consts_29 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & stat_toplevel_consts_29_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 86, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_S_ISWHT._ascii.ob_base, - .co_qualname = & const_str_S_ISWHT._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_27_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_1024 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 1024 }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_512 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 512 }, -}; -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_448 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 448 }, -}; -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_65536 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 0, 2 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_65536 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 65536 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_131072 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 0, 4 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_131072 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 131072 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_262144 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 0, 8 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_262144 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 262144 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_1048576 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 0, 32 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_1048576 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 1048576 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -#if PYLONG_BITS_IN_DIGIT == 15 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[2]; - } -const_int_2097152 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 2, - }, - .ob_digit = { 0, 64 }, -}; -#elif PYLONG_BITS_IN_DIGIT == 30 -static - struct { - PyObject_VAR_HEAD - digit ob_digit[1]; - } -const_int_2097152 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyLong_Type, - }, - .ob_size = 1, - }, - .ob_digit = { 2097152 }, -}; -#else -#error "PYLONG_BITS_IN_DIGIT should be 15 or 30" -#endif -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_l = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "l", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -stat_toplevel_consts_47 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "-", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_S = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[2]; - } -const_str_T = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "T", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[60]; - } -stat_toplevel_consts_58_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 59, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Convert a file's mode to a string of the form '-rwxrwxrwx'.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -stat_toplevel_consts_58_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & stat_toplevel_consts_58_consts_0._ascii.ob_base, - & stat_toplevel_consts_47._ascii.ob_base, - &_Py_STR(empty), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__filemode_table = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_filemode_table", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -stat_toplevel_consts_58_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str__filemode_table._ascii.ob_base, - &_Py_ID(append), - &_Py_ID(join), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_filemode = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "filemode", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[122]; - } -stat_toplevel_consts_58_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 121, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0d\x80\x44\xdd\x11\x20\xf0\x00\x06\x05\x1d\xf0\x00\x06\x05\x1d\x88\x05\xd8\x19\x1e\xf0\x00\x05\x09\x1d\xf0\x00\x05\x09\x1d\x89\x49\x88\x43\x90\x14\xd8\x0f\x13\x90\x63\x89\x7a\x98\x53\xd2\x0f\x20\xd0\x0f\x20\xd8\x10\x14\x97\x0b\x92\x0b\x98\x44\xd1\x10\x21\xd4\x10\x21\xd0\x10\x21\xd8\x10\x15\x90\x05\xf0\x05\x00\x10\x21\xf0\x08\x00\x0d\x11\x8f\x4b\x8a\x4b\x98\x03\xd1\x0c\x1c\xd4\x0c\x1c\xd0\x0c\x1c\xf8\xd8\x0b\x0d\x8f\x37\x8a\x37\x90\x34\x89\x3d\x8c\x3d\xd0\x04\x18", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_perm = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "perm", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_table = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "table", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_bit = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "bit", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_char = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "char", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -stat_toplevel_consts_58_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(mode), - & const_str_perm._ascii.ob_base, - & const_str_table._ascii.ob_base, - & const_str_bit._ascii.ob_base, - & const_str_char._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(190) -stat_toplevel_consts_58 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 95, - }, - .co_consts = & stat_toplevel_consts_58_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_consts_58_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 156, - .co_nlocalsplus = 5, - .co_nlocals = 5, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & stat_toplevel_consts_58_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = & const_str_filemode._ascii.ob_base, - .co_qualname = & const_str_filemode._ascii.ob_base, - .co_linetable = & stat_toplevel_consts_58_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x67\x00\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x3f\x7d\x02\x7c\x02\x44\x00\x5d\x25\x5c\x02\x00\x00\x7d\x03\x7d\x04\x7c\x00\x7c\x03\x7a\x01\x00\x00\x7c\x03\x6b\x02\x00\x00\x00\x00\x72\x17\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00\x6e\x16\x8c\x26\x7c\x01\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x8c\x40\x64\x02\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[61]; - }_object; - } -stat_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 61, - }, - .ob_item = { - & stat_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 3], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 4], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 5], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 6], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 7], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 8], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 9], - & stat_toplevel_consts_11.ob_base.ob_base, - & stat_toplevel_consts_12.ob_base.ob_base, - & const_int_16384.ob_base.ob_base, - & const_int_8192.ob_base.ob_base, - & const_int_24576.ob_base.ob_base, - & const_int_32768.ob_base.ob_base, - & const_int_4096.ob_base.ob_base, - & const_int_40960.ob_base.ob_base, - & const_int_49152.ob_base.ob_base, - & stat_toplevel_consts_20.ob_base.ob_base, - & stat_toplevel_consts_21.ob_base.ob_base, - & stat_toplevel_consts_22.ob_base.ob_base, - & stat_toplevel_consts_23.ob_base.ob_base, - & stat_toplevel_consts_24.ob_base.ob_base, - & stat_toplevel_consts_25.ob_base.ob_base, - & stat_toplevel_consts_26.ob_base.ob_base, - & stat_toplevel_consts_27.ob_base.ob_base, - & stat_toplevel_consts_28.ob_base.ob_base, - & stat_toplevel_consts_29.ob_base.ob_base, - & const_int_2048.ob_base.ob_base, - & const_int_1024.ob_base.ob_base, - & const_int_512.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 256], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 128], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 64], - & const_int_448.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 56], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 32], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 16], - & const_int_65536.ob_base.ob_base, - & const_int_131072.ob_base.ob_base, - & const_int_262144.ob_base.ob_base, - & const_int_1048576.ob_base.ob_base, - & const_int_2097152.ob_base.ob_base, - & const_str_l._ascii.ob_base, - & const_str_s._ascii.ob_base, - & stat_toplevel_consts_47._ascii.ob_base, - & const_str_b._ascii.ob_base, - & const_str_d._ascii.ob_base, - & const_str_c._ascii.ob_base, - & const_str_p._ascii.ob_base, - & const_str_r._ascii.ob_base, - & const_str_w._ascii.ob_base, - & const_str_S._ascii.ob_base, - & const_str_x._ascii.ob_base, - & const_str_t._ascii.ob_base, - & const_str_T._ascii.ob_base, - & stat_toplevel_consts_58.ob_base.ob_base, - & codecs_toplevel_consts_3._object.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_ST_MODE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_MODE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_ST_INO = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_INO", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_ST_DEV = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_DEV", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_ST_NLINK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_NLINK", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_ST_UID = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_UID", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_ST_GID = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_GID", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_ST_SIZE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_SIZE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_ST_ATIME = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_ATIME", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_ST_MTIME = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_MTIME", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_ST_CTIME = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ST_CTIME", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_IFDOOR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFDOOR", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_IFPORT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFPORT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IFWHT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IFWHT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISUID = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISUID", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISGID = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISGID", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ENFMT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ENFMT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_ISVTX = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_ISVTX", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IREAD = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IREAD", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_S_IWRITE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IWRITE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IEXEC = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IEXEC", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IRWXU = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IRWXU", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IRUSR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IRUSR", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IWUSR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IWUSR", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IXUSR = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IXUSR", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IRWXG = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IRWXG", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IRGRP = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IRGRP", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IWGRP = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IWGRP", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IXGRP = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IXGRP", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IRWXO = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IRWXO", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IROTH = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IROTH", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IWOTH = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IWOTH", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_S_IXOTH = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "S_IXOTH", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_UF_NODUMP = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UF_NODUMP", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_UF_IMMUTABLE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UF_IMMUTABLE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_UF_APPEND = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UF_APPEND", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_UF_OPAQUE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UF_OPAQUE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_UF_NOUNLINK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UF_NOUNLINK", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_UF_COMPRESSED = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "UF_COMPRESSED", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_SF_ARCHIVED = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SF_ARCHIVED", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_SF_IMMUTABLE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SF_IMMUTABLE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_SF_APPEND = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SF_APPEND", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_SF_NOUNLINK = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SF_NOUNLINK", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_SF_SNAPSHOT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "SF_SNAPSHOT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str_FILE_ATTRIBUTE_ARCHIVE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_ARCHIVE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -const_str_FILE_ATTRIBUTE_COMPRESSED = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_COMPRESSED", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_FILE_ATTRIBUTE_DEVICE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_DEVICE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str_FILE_ATTRIBUTE_DIRECTORY = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_DIRECTORY", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str_FILE_ATTRIBUTE_ENCRYPTED = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_ENCRYPTED", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -const_str_FILE_ATTRIBUTE_INTEGRITY_STREAM = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_INTEGRITY_STREAM", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_FILE_ATTRIBUTE_NORMAL = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_NORMAL", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[35]; - } -const_str_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 34, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_NOT_CONTENT_INDEXED", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -const_str_FILE_ATTRIBUTE_NO_SCRUB_DATA = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_NO_SCRUB_DATA", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str_FILE_ATTRIBUTE_OFFLINE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_OFFLINE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -const_str_FILE_ATTRIBUTE_READONLY = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_READONLY", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -const_str_FILE_ATTRIBUTE_REPARSE_POINT = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_REPARSE_POINT", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[27]; - } -const_str_FILE_ATTRIBUTE_SPARSE_FILE = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 26, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_SPARSE_FILE", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -const_str_FILE_ATTRIBUTE_SYSTEM = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_SYSTEM", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str_FILE_ATTRIBUTE_TEMPORARY = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_TEMPORARY", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -const_str_FILE_ATTRIBUTE_VIRTUAL = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "FILE_ATTRIBUTE_VIRTUAL", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str__stat = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_stat", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[85]; - }_object; - } -stat_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 85, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_ST_MODE._ascii.ob_base, - & const_str_ST_INO._ascii.ob_base, - & const_str_ST_DEV._ascii.ob_base, - & const_str_ST_NLINK._ascii.ob_base, - & const_str_ST_UID._ascii.ob_base, - & const_str_ST_GID._ascii.ob_base, - & const_str_ST_SIZE._ascii.ob_base, - & const_str_ST_ATIME._ascii.ob_base, - & const_str_ST_MTIME._ascii.ob_base, - & const_str_ST_CTIME._ascii.ob_base, - & const_str_S_IMODE._ascii.ob_base, - & const_str_S_IFMT._ascii.ob_base, - & const_str_S_IFDIR._ascii.ob_base, - & const_str_S_IFCHR._ascii.ob_base, - & const_str_S_IFBLK._ascii.ob_base, - & const_str_S_IFREG._ascii.ob_base, - & const_str_S_IFIFO._ascii.ob_base, - & const_str_S_IFLNK._ascii.ob_base, - & const_str_S_IFSOCK._ascii.ob_base, - & const_str_S_IFDOOR._ascii.ob_base, - & const_str_S_IFPORT._ascii.ob_base, - & const_str_S_IFWHT._ascii.ob_base, - & const_str_S_ISDIR._ascii.ob_base, - & const_str_S_ISCHR._ascii.ob_base, - & const_str_S_ISBLK._ascii.ob_base, - & const_str_S_ISREG._ascii.ob_base, - & const_str_S_ISFIFO._ascii.ob_base, - & const_str_S_ISLNK._ascii.ob_base, - & const_str_S_ISSOCK._ascii.ob_base, - & const_str_S_ISDOOR._ascii.ob_base, - & const_str_S_ISPORT._ascii.ob_base, - & const_str_S_ISWHT._ascii.ob_base, - & const_str_S_ISUID._ascii.ob_base, - & const_str_S_ISGID._ascii.ob_base, - & const_str_S_ENFMT._ascii.ob_base, - & const_str_S_ISVTX._ascii.ob_base, - & const_str_S_IREAD._ascii.ob_base, - & const_str_S_IWRITE._ascii.ob_base, - & const_str_S_IEXEC._ascii.ob_base, - & const_str_S_IRWXU._ascii.ob_base, - & const_str_S_IRUSR._ascii.ob_base, - & const_str_S_IWUSR._ascii.ob_base, - & const_str_S_IXUSR._ascii.ob_base, - & const_str_S_IRWXG._ascii.ob_base, - & const_str_S_IRGRP._ascii.ob_base, - & const_str_S_IWGRP._ascii.ob_base, - & const_str_S_IXGRP._ascii.ob_base, - & const_str_S_IRWXO._ascii.ob_base, - & const_str_S_IROTH._ascii.ob_base, - & const_str_S_IWOTH._ascii.ob_base, - & const_str_S_IXOTH._ascii.ob_base, - & const_str_UF_NODUMP._ascii.ob_base, - & const_str_UF_IMMUTABLE._ascii.ob_base, - & const_str_UF_APPEND._ascii.ob_base, - & const_str_UF_OPAQUE._ascii.ob_base, - & const_str_UF_NOUNLINK._ascii.ob_base, - & const_str_UF_COMPRESSED._ascii.ob_base, - & const_str_UF_HIDDEN._ascii.ob_base, - & const_str_SF_ARCHIVED._ascii.ob_base, - & const_str_SF_IMMUTABLE._ascii.ob_base, - & const_str_SF_APPEND._ascii.ob_base, - & const_str_SF_NOUNLINK._ascii.ob_base, - & const_str_SF_SNAPSHOT._ascii.ob_base, - & const_str__filemode_table._ascii.ob_base, - & const_str_filemode._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_ARCHIVE._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_COMPRESSED._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_DEVICE._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_DIRECTORY._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_ENCRYPTED._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_HIDDEN._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_INTEGRITY_STREAM._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_NORMAL._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_NO_SCRUB_DATA._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_OFFLINE._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_READONLY._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_REPARSE_POINT._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_SPARSE_FILE._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_SYSTEM._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_TEMPORARY._ascii.ob_base, - & const_str_FILE_ATTRIBUTE_VIRTUAL._ascii.ob_base, - & const_str__stat._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[876]; - } -stat_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 875, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x03\x01\x04\xf0\x00\x03\x01\x04\xf0\x0e\x00\x0c\x0d\x80\x07\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x06\xd8\x0b\x0c\x80\x07\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xf0\x08\x04\x01\x19\xf0\x00\x04\x01\x19\xf0\x00\x04\x01\x19\xf0\x0c\x04\x01\x1b\xf0\x00\x04\x01\x1b\xf0\x00\x04\x01\x1b\xf0\x12\x00\x0c\x14\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x07\xd8\x0b\x13\x80\x08\xe0\x0b\x0c\x80\x08\xd8\x0b\x0c\x80\x08\xd8\x0a\x0b\x80\x07\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x00\x02\x01\x23\xf0\x08\x02\x01\x24\xf0\x00\x02\x01\x24\xf0\x00\x02\x01\x24\xf0\x08\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x08\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x08\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x00\x02\x01\x11\xf0\x0c\x00\x0b\x11\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x11\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0b\x11\x80\x08\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xd8\x0a\x10\x80\x07\xf0\x08\x00\x10\x1a\x80\x09\xd8\x0f\x19\x80\x0c\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x0b\xd8\x10\x1a\x80\x0d\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x0b\xd8\x0f\x19\x80\x0c\xd8\x0f\x19\x80\x09\xd8\x0f\x19\x80\x0b\xd8\x0f\x19\x80\x0b\xf0\x08\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd8\x06\x0e\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x0d\x06\x05\x1d\xf0\x10\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x88\x67\x81\x6f\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x05\x02\x05\x1d\xf0\x08\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x88\x67\x81\x6f\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x05\x02\x05\x1d\xf0\x08\x00\x07\x0e\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd0\x04\x1d\xd8\x06\x0d\x88\x67\x81\x6f\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xd8\x06\x0d\x90\x73\xd0\x05\x1b\xf0\x05\x02\x05\x1d\xf0\x2f\x1a\x13\x02\x80\x0f\xf0\x38\x0a\x01\x19\xf0\x00\x0a\x01\x19\xf0\x00\x0a\x01\x19\xf0\x20\x00\x1a\x1c\xd0\x00\x16\xd8\x1c\x20\xd0\x00\x19\xd8\x18\x1a\xd0\x00\x15\xd8\x1b\x1d\xd0\x00\x18\xd8\x1b\x20\xd0\x00\x18\xd8\x18\x19\xd0\x00\x15\xd8\x22\x27\xd0\x00\x1f\xd8\x18\x1b\xd0\x00\x15\xd8\x25\x29\xd0\x00\x22\xd8\x1f\x25\xd0\x00\x1c\xd8\x19\x1d\xd0\x00\x16\xd8\x1a\x1b\xd0\x00\x17\xd8\x1f\x23\xd0\x00\x1c\xd8\x1d\x20\xd0\x00\x1a\xd8\x18\x19\xd0\x00\x15\xd8\x1b\x1e\xd0\x00\x18\xd8\x19\x1e\xd0\x00\x16\xf0\x08\x03\x01\x09\xd8\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xd0\x04\x17\xf8\xd8\x07\x12\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xf0\x00\x01\x01\x09\xd8\x04\x08\x80\x44\x80\x44\xf0\x03\x01\x01\x09\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[19]; - } -stat_toplevel_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 18, - }, - .ob_shash = -1, - .ob_sval = "\xc4\x0a\x04\x44\x10\x00\xc4\x10\x05\x44\x19\x03\xc4\x18\x01\x44\x19\x03", -}; -static - struct _PyCode_DEF(568) -stat_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 284, - }, - .co_consts = & stat_toplevel_consts._object.ob_base.ob_base, - .co_names = & stat_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = & stat_toplevel_exceptiontable.ob_base.ob_base, - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 13, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & stat_toplevel_consts_11_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & stat_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x5a\x01\x64\x02\x5a\x02\x64\x03\x5a\x03\x64\x04\x5a\x04\x64\x05\x5a\x05\x64\x06\x5a\x06\x64\x07\x5a\x07\x64\x08\x5a\x08\x64\x09\x5a\x09\x64\x0a\x5a\x0a\x64\x0b\x84\x00\x5a\x0b\x64\x0c\x84\x00\x5a\x0c\x64\x0d\x5a\x0d\x64\x0e\x5a\x0e\x64\x0f\x5a\x0f\x64\x10\x5a\x10\x64\x11\x5a\x11\x64\x12\x5a\x12\x64\x13\x5a\x13\x64\x01\x5a\x14\x64\x01\x5a\x15\x64\x01\x5a\x16\x64\x14\x84\x00\x5a\x17\x64\x15\x84\x00\x5a\x18\x64\x16\x84\x00\x5a\x19\x64\x17\x84\x00\x5a\x1a\x64\x18\x84\x00\x5a\x1b\x64\x19\x84\x00\x5a\x1c\x64\x1a\x84\x00\x5a\x1d\x64\x1b\x84\x00\x5a\x1e\x64\x1c\x84\x00\x5a\x1f\x64\x1d\x84\x00\x5a\x20\x64\x1e\x5a\x21\x64\x1f\x5a\x22\x65\x22\x5a\x23\x64\x20\x5a\x24\x64\x21\x5a\x25\x64\x22\x5a\x26\x64\x23\x5a\x27\x64\x24\x5a\x28\x64\x21\x5a\x29\x64\x22\x5a\x2a\x64\x23\x5a\x2b\x64\x25\x5a\x2c\x64\x26\x5a\x2d\x64\x27\x5a\x2e\x64\x09\x5a\x2f\x64\x08\x5a\x30\x64\x05\x5a\x31\x64\x03\x5a\x32\x64\x02\x5a\x33\x64\x02\x5a\x34\x64\x03\x5a\x35\x64\x05\x5a\x36\x64\x09\x5a\x37\x64\x27\x5a\x38\x64\x26\x5a\x39\x64\x10\x5a\x3a\x64\x28\x5a\x3b\x64\x29\x5a\x3c\x64\x2a\x5a\x3d\x64\x2b\x5a\x3e\x64\x2c\x5a\x3f\x65\x12\x64\x2d\x66\x02\x65\x13\x64\x2e\x66\x02\x65\x10\x64\x2f\x66\x02\x65\x0f\x64\x30\x66\x02\x65\x0d\x64\x31\x66\x02\x65\x0e\x64\x32\x66\x02\x65\x11\x64\x33\x66\x02\x66\x07\x65\x29\x64\x34\x66\x02\x66\x01\x65\x2a\x64\x35\x66\x02\x66\x01\x65\x2b\x65\x21\x7a\x07\x00\x00\x64\x2e\x66\x02\x65\x21\x64\x36\x66\x02\x65\x2b\x64\x37\x66\x02\x66\x03\x65\x2d\x64\x34\x66\x02\x66\x01\x65\x2e\x64\x35\x66\x02\x66\x01\x65\x2f\x65\x22\x7a\x07\x00\x00\x64\x2e\x66\x02\x65\x22\x64\x36\x66\x02\x65\x2f\x64\x37\x66\x02\x66\x03\x65\x31\x64\x34\x66\x02\x66\x01\x65\x32\x64\x35\x66\x02\x66\x01\x65\x33\x65\x24\x7a\x07\x00\x00\x64\x38\x66\x02\x65\x24\x64\x39\x66\x02\x65\x33\x64\x37\x66\x02\x66\x03\x66\x0a\x5a\x40\x64\x3a\x84\x00\x5a\x41\x64\x26\x5a\x42\x64\x1e\x5a\x43\x64\x23\x5a\x44\x64\x27\x5a\x45\x64\x0d\x5a\x46\x64\x03\x5a\x47\x64\x10\x5a\x48\x64\x22\x5a\x49\x64\x0e\x5a\x4a\x64\x29\x5a\x4b\x64\x11\x5a\x4c\x64\x02\x5a\x4d\x64\x1f\x5a\x4e\x64\x20\x5a\x4f\x64\x05\x5a\x50\x64\x21\x5a\x51\x64\x28\x5a\x52\x09\x00\x64\x01\x64\x3b\x6c\x53\x54\x00\x64\x3c\x53\x00\x23\x00\x65\x54\x24\x00\x72\x04\x01\x00\x59\x00\x64\x3c\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static void stat_do_patchups(void) { -} - -PyObject * -_Py_get_stat_toplevel(void) -{ - stat_do_patchups(); - return Py_NewRef((PyObject *) &stat_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[46]; - } -importlib_util_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 45, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Utility code for constructing importers, etc.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str_Loader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Loader", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_Loader._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_module_from_spec._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__resolve_name._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_spec_from_loader._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_6 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__find_spec._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_7 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_MAGIC_NUMBER._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_8 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_9 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_cache_from_source._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_10 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_decode_source._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_11 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_source_from_cache._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_contextmanager = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "contextmanager", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_14 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_contextmanager._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[67]; - } -importlib_util_toplevel_consts_16_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 66, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Return the hash of *source_bytes* as used in hash-based pyc files.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_16_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & importlib_util_toplevel_consts_16_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib_util_toplevel_consts_16_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str__imp._ascii.ob_base, - & const_str_source_hash._ascii.ob_base, - & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -importlib_util_toplevel_consts_16_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -importlib_util_toplevel_consts_16_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x0f\xd4\x0b\x1b\xd5\x1c\x2d\xa8\x7c\xd1\x0b\x3c\xd4\x0b\x3c\xd0\x04\x3c", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_16_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_source_bytes._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(54) -importlib_util_toplevel_consts_16 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 27, - }, - .co_consts = & importlib_util_toplevel_consts_16_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_16_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 23, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_16_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_source_hash._ascii.ob_base, - .co_qualname = & const_str_source_hash._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_16_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -importlib_util_toplevel_consts_17_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "no package specified for ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -importlib_util_toplevel_consts_17_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " (required for relative module names)", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib_util_toplevel_consts_17_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & importlib__bootstrap_toplevel_consts_43_consts_0._ascii.ob_base, - &_Py_STR(dot), - & importlib_util_toplevel_consts_17_consts_2._ascii.ob_base, - & importlib_util_toplevel_consts_17_consts_3._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib_util_toplevel_consts_17_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_startswith._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_repr._ascii.ob_base, - & const_str__resolve_name._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_resolve_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "resolve_name", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[164]; - } -importlib_util_toplevel_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 163, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x0b\x0f\x8f\x3f\x8a\x3f\x98\x33\xd1\x0b\x1f\xd4\x0b\x1f\xf0\x00\x04\x05\x42\x01\xd8\x0f\x13\x88\x0b\xd8\x0d\x14\xf0\x00\x02\x05\x42\x01\xdd\x0e\x19\xf0\x00\x01\x1b\x41\x01\xb5\x64\xb8\x34\xb1\x6a\xb4\x6a\xf0\x00\x01\x1b\x41\x01\xf0\x00\x01\x1b\x41\x01\xf0\x00\x01\x1b\x41\x01\xf1\x00\x01\x0f\x42\x01\xf4\x00\x01\x0f\x42\x01\xf0\x00\x01\x09\x42\x01\xe0\x0c\x0d\x80\x45\xd8\x15\x19\xf0\x00\x03\x05\x13\xf0\x00\x03\x05\x13\x88\x09\xd8\x0b\x14\x98\x03\xd2\x0b\x1b\xd0\x0b\x1b\xd8\x0c\x11\x88\x45\xd8\x08\x0d\x90\x11\x89\x0a\x88\x05\x88\x05\xdd\x0b\x18\x98\x14\x98\x65\x98\x66\x98\x66\x9c\x1c\xa0\x77\xb0\x05\xd1\x0b\x36\xd4\x0b\x36\xd0\x04\x36", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_character = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "character", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib_util_toplevel_consts_17_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(name), - & const_str_package._ascii.ob_base, - & const_str_level._ascii.ob_base, - & const_str_character._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(206) -importlib_util_toplevel_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 103, - }, - .co_consts = & importlib_util_toplevel_consts_17_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_17_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 28, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_resolve_name._ascii.ob_base, - .co_qualname = & const_str_resolve_name._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x00\x53\x00\x7c\x01\x73\x20\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x03\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x04\x7d\x02\x7c\x00\x44\x00\x5d\x0f\x7d\x03\x7c\x03\x64\x01\x6b\x03\x00\x00\x00\x00\x72\x02\x01\x00\x6e\x06\x7c\x02\x64\x05\x7a\x0d\x00\x00\x7d\x02\x8c\x10\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\x64\x06\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x7c\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[648]; - } -importlib_util_toplevel_consts_18_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 647, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x73\x70\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x46\x69\x72\x73\x74\x2c\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x20\x74\x6f\x20\x73\x65\x65\x20\x69\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x61\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x20\x49\x66\x0a\x20\x20\x20\x20\x73\x6f\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x5b\x6e\x61\x6d\x65\x5d\x2e\x5f\x5f\x73\x70\x65\x63\x5f\x5f\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x61\x74\x20\x68\x61\x70\x70\x65\x6e\x73\x20\x74\x6f\x20\x62\x65\x0a\x20\x20\x20\x20\x73\x65\x74\x20\x74\x6f\x20\x4e\x6f\x6e\x65\x2c\x20\x74\x68\x65\x6e\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x0a\x20\x20\x20\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x65\x74\x61\x5f\x70\x61\x74\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x73\x70\x65\x63\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x27\x70\x61\x74\x68\x27\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x69\x6e\x64\x65\x72\x73\x2e\x20\x4e\x6f\x6e\x65\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x69\x66\x20\x6e\x6f\x20\x73\x70\x65\x63\x20\x63\x6f\x75\x6c\x64\x0a\x20\x20\x20\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20\x44\x6f\x74\x74\x65\x64\x20\x6e\x61\x6d\x65\x73\x20\x64\x6f\x20\x6e\x6f\x74\x20\x68\x61\x76\x65\x20\x74\x68\x65\x69\x72\x20\x70\x61\x72\x65\x6e\x74\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6d\x70\x6c\x69\x63\x69\x74\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x20\x59\x6f\x75\x20\x77\x69\x6c\x6c\x0a\x20\x20\x20\x20\x6d\x6f\x73\x74\x20\x6c\x69\x6b\x65\x6c\x79\x20\x6e\x65\x65\x64\x20\x74\x6f\x20\x65\x78\x70\x6c\x69\x63\x69\x74\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x20\x61\x6c\x6c\x20\x70\x61\x72\x65\x6e\x74\x20\x70\x61\x63\x6b\x61\x67\x65\x73\x20\x69\x6e\x20\x74\x68\x65\x20\x70\x72\x6f\x70\x65\x72\x0a\x20\x20\x20\x20\x6f\x72\x64\x65\x72\x20\x66\x6f\x72\x20\x61\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x20\x74\x6f\x20\x67\x65\x74\x20\x74\x68\x65\x20\x63\x6f\x72\x72\x65\x63\x74\x20\x73\x70\x65\x63\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -importlib_util_toplevel_consts_18_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "{}.__spec__ is None", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -importlib_util_toplevel_consts_18_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "{}.__spec__ is not set", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib_util_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & importlib_util_toplevel_consts_18_consts_0._ascii.ob_base, - Py_None, - & importlib_util_toplevel_consts_18_consts_2._ascii.ob_base, - & importlib_util_toplevel_consts_18_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib_util_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str__find_spec._ascii.ob_base, - &_Py_ID(__spec__), - & const_str_ValueError._ascii.ob_base, - & const_str_format._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str__find_spec_from_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_find_spec_from_path", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[173]; - } -importlib_util_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 172, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x1e\x00\x08\x0c\x95\x33\x94\x3b\xd0\x07\x1e\xd0\x07\x1e\xdd\x0f\x19\x98\x24\xa0\x04\xd1\x0f\x25\xd4\x0f\x25\xd0\x08\x25\xe5\x11\x14\x94\x1b\x98\x54\xd4\x11\x22\x88\x06\xd8\x0b\x11\x88\x3e\xd8\x13\x17\x90\x34\xf0\x02\x07\x09\x18\xd8\x13\x19\x94\x3f\x88\x44\xf0\x08\x00\x10\x14\x88\x7c\xdd\x16\x20\xd0\x21\x36\xd7\x21\x3d\xd2\x21\x3d\xb8\x64\xd1\x21\x43\xd4\x21\x43\xd1\x16\x44\xd4\x16\x44\xd0\x10\x44\xd8\x13\x17\x88\x4b\xf8\xf5\x0b\x00\x10\x1e\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xdd\x12\x1c\xd0\x1d\x35\xd7\x1d\x3c\xd2\x1d\x3c\xb8\x54\xd1\x1d\x42\xd4\x1d\x42\xd1\x12\x43\xd4\x12\x43\xc8\x14\xd0\x0c\x4d\xf0\x03\x01\x09\x4e\x01\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[12]; - } -importlib_util_toplevel_consts_18_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 11, - }, - .ob_shash = -1, - .ob_sval = "\xb6\x07\x41\x23\x00\xc1\x23\x2e\x42\x11\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib_util_toplevel_consts_18_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(name), - &_Py_ID(path), - & const_str_module._ascii.ob_base, - & const_str_spec._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(296) -importlib_util_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 148, - }, - .co_consts = & importlib_util_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib_util_toplevel_consts_18_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 43, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str__find_spec_from_path._ascii.ob_base, - .co_qualname = & const_str__find_spec_from_path._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x10\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x80\x02\x64\x01\x53\x00\x09\x00\x7c\x02\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x80\x22\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x03\x53\x00\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[688]; - } -importlib_util_toplevel_consts_19_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 687, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x65\x74\x75\x72\x6e\x20\x74\x68\x65\x20\x73\x70\x65\x63\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x73\x70\x65\x63\x69\x66\x69\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x46\x69\x72\x73\x74\x2c\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x20\x74\x6f\x20\x73\x65\x65\x20\x69\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x61\x73\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x20\x49\x66\x0a\x20\x20\x20\x20\x73\x6f\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x5b\x6e\x61\x6d\x65\x5d\x2e\x5f\x5f\x73\x70\x65\x63\x5f\x5f\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x61\x74\x20\x68\x61\x70\x70\x65\x6e\x73\x20\x74\x6f\x20\x62\x65\x0a\x20\x20\x20\x20\x73\x65\x74\x20\x74\x6f\x20\x4e\x6f\x6e\x65\x2c\x20\x74\x68\x65\x6e\x20\x56\x61\x6c\x75\x65\x45\x72\x72\x6f\x72\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x0a\x20\x20\x20\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2c\x20\x74\x68\x65\x6e\x20\x73\x79\x73\x2e\x6d\x65\x74\x61\x5f\x70\x61\x74\x68\x20\x69\x73\x20\x73\x65\x61\x72\x63\x68\x65\x64\x20\x66\x6f\x72\x20\x61\x20\x73\x75\x69\x74\x61\x62\x6c\x65\x20\x73\x70\x65\x63\x20\x77\x69\x74\x68\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x76\x61\x6c\x75\x65\x20\x6f\x66\x20\x27\x70\x61\x74\x68\x27\x20\x67\x69\x76\x65\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x69\x6e\x64\x65\x72\x73\x2e\x20\x4e\x6f\x6e\x65\x20\x69\x73\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x69\x66\x20\x6e\x6f\x20\x73\x70\x65\x63\x20\x63\x6f\x75\x6c\x64\x0a\x20\x20\x20\x20\x62\x65\x20\x66\x6f\x75\x6e\x64\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x74\x68\x65\x20\x6e\x61\x6d\x65\x20\x69\x73\x20\x66\x6f\x72\x20\x73\x75\x62\x6d\x6f\x64\x75\x6c\x65\x20\x28\x63\x6f\x6e\x74\x61\x69\x6e\x73\x20\x61\x20\x64\x6f\x74\x29\x2c\x20\x74\x68\x65\x20\x70\x61\x72\x65\x6e\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x0a\x20\x20\x20\x20\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x61\x6c\x6c\x79\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x6e\x61\x6d\x65\x20\x61\x6e\x64\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x73\x20\x77\x6f\x72\x6b\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x61\x73\x20\x69\x6d\x70\x6f\x72\x74\x6c\x69\x62\x2e\x69\x6d\x70\x6f\x72\x74\x5f\x6d\x6f\x64\x75\x6c\x65\x28\x29\x2e\x0a\x20\x20\x20\x20\x49\x6e\x20\x6f\x74\x68\x65\x72\x20\x77\x6f\x72\x64\x73\x2c\x20\x72\x65\x6c\x61\x74\x69\x76\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x73\x20\x28\x77\x69\x74\x68\x20\x6c\x65\x61\x64\x69\x6e\x67\x20\x64\x6f\x74\x73\x29\x20\x77\x6f\x72\x6b\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_19_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_fromlist._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[33]; - } -importlib_util_toplevel_consts_19_consts_5 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 32, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__path__ attribute not found on ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -importlib_util_toplevel_consts_19_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " while trying to find ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -importlib_util_toplevel_consts_19_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & importlib_util_toplevel_consts_19_consts_0._ascii.ob_base, - &_Py_STR(dot), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - &_Py_ID(__path__), - & importlib_util_toplevel_consts_19_consts_4._object.ob_base.ob_base, - & importlib_util_toplevel_consts_19_consts_5._ascii.ob_base, - & importlib_util_toplevel_consts_19_consts_6._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_4_localsplusnames._object.ob_base.ob_base, - Py_None, - & importlib_util_toplevel_consts_18_consts_2._ascii.ob_base, - & importlib_util_toplevel_consts_18_consts_3._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -importlib_util_toplevel_consts_19_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_startswith._ascii.ob_base, - & const_str_resolve_name._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str_rpartition._ascii.ob_base, - &_Py_ID(__import__), - &_Py_ID(__path__), - & const_str_AttributeError._ascii.ob_base, - & const_str_ModuleNotFoundError._ascii.ob_base, - & const_str__find_spec._ascii.ob_base, - &_Py_ID(__spec__), - & const_str_ValueError._ascii.ob_base, - & const_str_format._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[382]; - } -importlib_util_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 381, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x22\x00\x2f\x33\xaf\x6f\xaa\x6f\xb8\x63\xd1\x2e\x42\xd4\x2e\x42\xd0\x0f\x4c\x8d\x7c\x98\x44\xa0\x27\xd1\x0f\x2a\xd4\x0f\x2a\xd0\x0f\x2a\xc8\x04\x80\x48\xd8\x07\x0f\x95\x73\x94\x7b\xd0\x07\x22\xd0\x07\x22\xd8\x16\x1e\xd7\x16\x29\xd2\x16\x29\xa8\x23\xd1\x16\x2e\xd4\x16\x2e\xa8\x71\xd4\x16\x31\x88\x0b\xd8\x0b\x16\xf0\x00\x09\x09\x1f\xdd\x15\x1f\xa0\x0b\xb0\x7a\xb0\x6c\xd0\x15\x43\xd1\x15\x43\xd4\x15\x43\x88\x46\xf0\x02\x05\x0d\x50\x01\xd8\x1e\x24\x9c\x6f\x90\x0b\x90\x0b\xf8\xdd\x13\x21\xf0\x00\x03\x0d\x50\x01\xf0\x00\x03\x0d\x50\x01\xf0\x00\x03\x0d\x50\x01\xdd\x16\x29\xf0\x02\x01\x15\x39\xb0\x7b\xf0\x00\x01\x15\x39\xf0\x00\x01\x15\x39\xd8\x2c\x34\xf0\x03\x01\x15\x39\xf0\x00\x01\x15\x39\xd8\x3f\x47\xf0\x05\x02\x17\x49\x01\xf1\x00\x02\x17\x49\x01\xf4\x00\x02\x17\x49\x01\xe0\x4e\x4f\xf0\x05\x02\x11\x50\x01\xf8\xf8\xf8\xf8\xf0\x03\x03\x0d\x50\x01\xf8\xf8\xf8\xf0\x0a\x00\x1b\x1f\x88\x4b\xdd\x0f\x19\x98\x28\xa0\x4b\xd1\x0f\x30\xd4\x0f\x30\xd0\x08\x30\xe5\x11\x14\x94\x1b\x98\x58\xd4\x11\x26\x88\x06\xd8\x0b\x11\x88\x3e\xd8\x13\x17\x90\x34\xf0\x02\x07\x09\x18\xd8\x13\x19\x94\x3f\x88\x44\xf0\x08\x00\x10\x14\x88\x7c\xdd\x16\x20\xd0\x21\x36\xd7\x21\x3d\xd2\x21\x3d\xb8\x64\xd1\x21\x43\xd4\x21\x43\xd1\x16\x44\xd4\x16\x44\xd0\x10\x44\xd8\x13\x17\x88\x4b\xf8\xf5\x0b\x00\x10\x1e\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xf0\x00\x01\x09\x4e\x01\xdd\x12\x1c\xd0\x1d\x35\xd7\x1d\x3c\xd2\x1d\x3c\xb8\x54\xd1\x1d\x42\xd4\x1d\x42\xd1\x12\x43\xd4\x12\x43\xc8\x14\xd0\x0c\x4d\xf0\x03\x01\x09\x4e\x01\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[37]; - } -importlib_util_toplevel_consts_19_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 36, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x26\x07\x41\x2e\x00\xc1\x2e\x0a\x42\x15\x03\xc1\x38\x18\x42\x10\x03\xc2\x10\x05\x42\x15\x03\xc3\x01\x07\x43\x2e\x00\xc3\x2e\x2e\x44\x1c\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_parent_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "parent_name", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -importlib_util_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(name), - & const_str_package._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - & const_str_parent_name._ascii.ob_base, - &_Py_ID(parent), - & const_str_parent_path._ascii.ob_base, - & const_str_e._ascii.ob_base, - & const_str_module._ascii.ob_base, - & const_str_spec._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(574) -importlib_util_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 287, - }, - .co_consts = & importlib_util_toplevel_consts_19_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib_util_toplevel_consts_19_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 74, - .co_nlocalsplus = 9, - .co_nlocals = 9, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_find_spec._ascii.ob_base, - .co_qualname = & const_str_find_spec._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x10\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x01\x7c\x00\x7d\x02\x7c\x02\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x74\x7c\x02\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x72\x45\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x03\x67\x01\xac\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x09\x00\x7c\x04\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x6e\x2c\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1d\x7d\x06\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x7c\x03\x9b\x02\x64\x06\x7c\x02\x9b\x02\x9d\x04\x7c\x02\xac\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x82\x02\x64\x08\x7d\x06\x7e\x06\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x64\x08\x7d\x05\x74\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x07\x80\x02\x64\x08\x53\x00\x09\x00\x7c\x07\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x08\x80\x22\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x08\x53\x00\x23\x00\x74\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x0a\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x82\x02\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str___initializing__ = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__initializing__", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib_util_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - &_Py_ID(get), - & const_str_type._ascii.ob_base, - & const_str___initializing__._ascii.ob_base, - & const_str_Exception._ascii.ob_base, - & const_str_KeyError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str__module_to_load = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_module_to_load", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[228]; - } -importlib_util_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 227, - }, - .ob_shash = -1, - .ob_sval = "\xe8\x00\xe8\x00\x80\x00\xe0\x10\x14\x9d\x03\x9c\x0b\xd0\x10\x23\x80\x49\xe5\x0d\x10\x8c\x5b\x8f\x5f\x8a\x5f\x98\x54\xd1\x0d\x22\xd4\x0d\x22\x80\x46\xd8\x0b\x14\xf0\x00\x08\x05\x23\xf0\x08\x00\x12\x1b\x95\x14\x95\x63\x91\x19\x94\x19\x98\x34\x91\x1f\x94\x1f\x88\x06\xf0\x06\x00\x23\x27\x88\x06\xd4\x08\x1f\xd8\x1c\x22\x8d\x03\x8c\x0b\x90\x44\xd1\x08\x19\xf0\x02\x09\x05\x28\xd8\x0e\x14\x88\x0c\x88\x0c\x88\x0c\x88\x0c\xf8\xdd\x0b\x14\xf0\x00\x05\x05\x15\xf0\x00\x05\x05\x15\xf0\x00\x05\x05\x15\xd8\x0f\x18\xf0\x00\x04\x09\x15\xf0\x02\x03\x0d\x15\xdd\x14\x17\x94\x4b\xa0\x04\xd0\x14\x25\xd0\x14\x25\xf8\xdd\x13\x1b\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf8\xf0\x09\x05\x05\x15\xf8\xf8\xf8\xf0\x0e\x00\x23\x28\x88\x06\xd4\x08\x1f\xd0\x08\x1f\xd0\x08\x1f\xf8\xa0\x25\x88\x06\xd4\x08\x1f\xd0\x08\x27\xd0\x08\x27\xd0\x08\x27\xd0\x08\x27", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[79]; - } -importlib_util_toplevel_consts_20_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 78, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x26\x04\x41\x2b\x00\xc1\x2a\x01\x42\x25\x00\xc1\x2b\x0c\x42\x19\x03\xc1\x38\x0d\x42\x06\x02\xc2\x05\x01\x42\x19\x03\xc2\x06\x0a\x42\x13\x05\xc2\x10\x02\x42\x19\x03\xc2\x12\x01\x42\x13\x05\xc2\x13\x03\x42\x19\x03\xc2\x16\x02\x42\x25\x00\xc2\x18\x01\x42\x19\x03\xc2\x19\x03\x42\x25\x00\xc2\x25\x09\x42\x2e\x03", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib_util_toplevel_consts_20_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - &_Py_ID(name), - & const_str_is_reload._ascii.ob_base, - & const_str_module._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(354) -importlib_util_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 177, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_3_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib_util_toplevel_consts_20_exceptiontable.ob_base.ob_base, - .co_flags = 35, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 119, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str__module_to_load._ascii.ob_base, - .co_qualname = & const_str__module_to_load._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x4b\x00\x01\x00\x97\x00\x7c\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x01\x73\x33\x02\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x64\x01\x7c\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x3c\x00\x00\x00\x09\x00\x7c\x02\x56\x00\x97\x01\x01\x00\x6e\x31\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x24\x01\x00\x7c\x01\x73\x1f\x09\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x3d\x00\x6e\x10\x23\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x64\x02\x7c\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00\x23\x00\x64\x02\x7c\x02\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 2, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[80]; - } -importlib_util_toplevel_consts_21_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 79, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x65\x74\x20\x5f\x5f\x70\x61\x63\x6b\x61\x67\x65\x5f\x5f\x20\x6f\x6e\x20\x74\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[108]; - } -importlib_util_toplevel_consts_21_consts_1_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 107, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "The import system now takes care of this automatically; this decorator is slated for removal in Python 3.12", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib_util_toplevel_consts_21_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - Py_None, - & importlib_util_toplevel_consts_21_consts_1_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, - &_Py_ID(__package__), - &_Py_ID(__path__), - &_Py_STR(dot), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib_util_toplevel_consts_21_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - &_Py_ID(warnings), - & const_str_warn._ascii.ob_base, - & const_str_DeprecationWarning._ascii.ob_base, - &_Py_ID(getattr), - &_Py_ID(__name__), - &_Py_ID(__package__), - & const_str_hasattr._ascii.ob_base, - & const_str_rpartition._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str_set_package_wrapper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set_package_wrapper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[41]; - } -importlib_util_toplevel_consts_21_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 40, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set_package..set_package_wrapper", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[144]; - } -importlib_util_toplevel_consts_21_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 143, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xe5\x08\x10\x8c\x0d\xf0\x00\x01\x17\x4c\x01\xe5\x16\x28\xb0\x51\xf0\x05\x02\x09\x38\xf1\x00\x02\x09\x38\xf4\x00\x02\x09\x38\xf0\x00\x02\x09\x38\xf0\x06\x00\x12\x15\x90\x13\x90\x64\xd0\x11\x25\x98\x66\xd0\x11\x25\xd0\x11\x25\x88\x06\xdd\x0b\x12\x90\x36\x98\x3d\xa8\x24\xd1\x0b\x2f\xd4\x0b\x2f\xd0\x0b\x37\xd8\x21\x27\xa4\x1f\x88\x46\xd4\x0c\x1e\xdd\x13\x1a\x98\x36\xa0\x3a\xd1\x13\x2e\xd4\x13\x2e\xf0\x00\x01\x0d\x4b\x01\xd8\x25\x2b\xd4\x25\x37\xd7\x25\x42\xd2\x25\x42\xc0\x33\xd1\x25\x47\xd4\x25\x47\xc8\x01\xd4\x25\x4a\x90\x06\xd4\x10\x22\xd8\x0f\x15\x88\x0d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib_util_toplevel_consts_21_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_args._ascii.ob_base, - & const_str_kwargs._ascii.ob_base, - & const_str_module._ascii.ob_base, - & const_str_fxn._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(244) -importlib_util_toplevel_consts_21_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 122, - }, - .co_consts = & importlib_util_toplevel_consts_21_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_21_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 31, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 151, - .co_nlocalsplus = 4, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & importlib_util_toplevel_consts_21_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & ntpath_toplevel_consts_45_consts_10_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_set_package_wrapper._ascii.ob_base, - .co_qualname = & importlib_util_toplevel_consts_21_consts_1_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_21_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x89\x03\x7c\x00\x69\x00\x7c\x01\xa4\x01\x8e\x01\x7d\x02\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x04\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x41\x7c\x02\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x25\x7c\x02\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_21_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib_util_toplevel_consts_21_consts_0._ascii.ob_base, - & importlib_util_toplevel_consts_21_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_functools = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "functools", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_wraps = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "wraps", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_21_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_functools._ascii.ob_base, - & const_str_wraps._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_set_package = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set_package", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[60]; - } -importlib_util_toplevel_consts_21_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 59, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x06\x0f\x84\x5f\x90\x53\xd1\x05\x19\xd4\x05\x19\xf0\x02\x09\x05\x16\xf0\x00\x09\x05\x16\xf0\x00\x09\x05\x16\xf0\x00\x09\x05\x16\xf1\x03\x00\x06\x1a\xd4\x05\x19\xf0\x02\x09\x05\x16\xf0\x14\x00\x0c\x1f\xd0\x04\x1e", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_21_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_fxn._ascii.ob_base, - & const_str_set_package_wrapper._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(70) -importlib_util_toplevel_consts_21 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 35, - }, - .co_consts = & importlib_util_toplevel_consts_21_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 145, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_21_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_set_package._ascii.ob_base, - .co_qualname = & const_str_set_package._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_21_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[79]; - } -importlib_util_toplevel_consts_22_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 78, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x53\x65\x74\x20\x5f\x5f\x6c\x6f\x61\x64\x65\x72\x5f\x5f\x20\x6f\x6e\x20\x74\x68\x65\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x69\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x64\x65\x70\x72\x65\x63\x61\x74\x65\x64\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib_util_toplevel_consts_22_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - & importlib_util_toplevel_consts_21_consts_1_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, - &_Py_ID(__loader__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib_util_toplevel_consts_22_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(warnings), - & const_str_warn._ascii.ob_base, - & const_str_DeprecationWarning._ascii.ob_base, - &_Py_ID(getattr), - &_Py_ID(__loader__), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -const_str_set_loader_wrapper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set_loader_wrapper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[39]; - } -importlib_util_toplevel_consts_22_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 38, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set_loader..set_loader_wrapper", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[104]; - } -importlib_util_toplevel_consts_22_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 103, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xe5\x08\x10\x8c\x0d\xf0\x00\x01\x17\x4c\x01\xe5\x16\x28\xb0\x51\xf0\x05\x02\x09\x38\xf1\x00\x02\x09\x38\xf4\x00\x02\x09\x38\xf0\x00\x02\x09\x38\xf0\x06\x00\x12\x15\x90\x13\x90\x54\xd0\x11\x2b\x98\x44\xd0\x11\x2b\xd0\x11\x2b\xd0\x11\x2b\xa0\x46\xd0\x11\x2b\xd0\x11\x2b\x88\x06\xdd\x0b\x12\x90\x36\x98\x3c\xa8\x14\xd1\x0b\x2e\xd4\x0b\x2e\xd0\x0b\x36\xd8\x20\x24\x88\x46\xd4\x0c\x1d\xd8\x0f\x15\x88\x0d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib_util_toplevel_consts_22_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_kwargs._ascii.ob_base, - & const_str_module._ascii.ob_base, - & const_str_fxn._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(136) -importlib_util_toplevel_consts_22_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 68, - }, - .co_consts = & importlib_util_toplevel_consts_22_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_22_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 31, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 171, - .co_nlocalsplus = 5, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & importlib_util_toplevel_consts_22_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_external_toplevel_consts_41_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_set_loader_wrapper._ascii.ob_base, - .co_qualname = & importlib_util_toplevel_consts_22_consts_1_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_22_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x00\x89\x04\x7c\x00\x67\x01\x7c\x01\xa2\x01\x52\x00\x69\x00\x7c\x02\xa4\x01\x8e\x01\x7d\x03\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x64\x04\x64\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x80\x07\x7c\x00\x7c\x03\x5f\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_22_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib_util_toplevel_consts_22_consts_0._ascii.ob_base, - & importlib_util_toplevel_consts_22_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_set_loader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "set_loader", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[60]; - } -importlib_util_toplevel_consts_22_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 59, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf5\x0c\x00\x06\x0f\x84\x5f\x90\x53\xd1\x05\x19\xd4\x05\x19\xf0\x02\x07\x05\x16\xf0\x00\x07\x05\x16\xf0\x00\x07\x05\x16\xf0\x00\x07\x05\x16\xf1\x03\x00\x06\x1a\xd4\x05\x19\xf0\x02\x07\x05\x16\xf0\x10\x00\x0c\x1e\xd0\x04\x1d", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_22_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_fxn._ascii.ob_base, - & const_str_set_loader_wrapper._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(70) -importlib_util_toplevel_consts_22 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 35, - }, - .co_consts = & importlib_util_toplevel_consts_22_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_21_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 165, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_22_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_set_loader._ascii.ob_base, - .co_qualname = & const_str_set_loader._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_22_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x01\x84\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[811]; - } -importlib_util_toplevel_consts_23_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 810, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x44\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x74\x6f\x20\x68\x61\x6e\x64\x6c\x65\x20\x73\x65\x6c\x65\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x70\x72\x6f\x70\x65\x72\x20\x6d\x6f\x64\x75\x6c\x65\x20\x66\x6f\x72\x20\x6c\x6f\x61\x64\x65\x72\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x0a\x20\x20\x20\x20\x6e\x61\x6d\x65\x2e\x20\x54\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x70\x61\x73\x73\x65\x64\x20\x69\x6e\x20\x74\x6f\x20\x74\x68\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x69\x73\x20\x65\x69\x74\x68\x65\x72\x20\x66\x72\x6f\x6d\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x20\x69\x66\x0a\x20\x20\x20\x20\x69\x74\x20\x61\x6c\x72\x65\x61\x64\x79\x20\x65\x78\x69\x73\x74\x73\x20\x6f\x72\x20\x69\x73\x20\x61\x20\x6e\x65\x77\x20\x6d\x6f\x64\x75\x6c\x65\x2e\x20\x49\x66\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x73\x20\x6e\x65\x77\x2c\x20\x74\x68\x65\x6e\x20\x5f\x5f\x6e\x61\x6d\x65\x5f\x5f\x0a\x20\x20\x20\x20\x69\x73\x20\x73\x65\x74\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x20\x74\x6f\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x2c\x20\x5f\x5f\x6c\x6f\x61\x64\x65\x72\x5f\x5f\x20\x69\x73\x20\x73\x65\x74\x20\x74\x6f\x20\x73\x65\x6c\x66\x2c\x20\x61\x6e\x64\x0a\x20\x20\x20\x20\x5f\x5f\x70\x61\x63\x6b\x61\x67\x65\x5f\x5f\x20\x69\x73\x20\x73\x65\x74\x20\x61\x63\x63\x6f\x72\x64\x69\x6e\x67\x6c\x79\x20\x28\x69\x66\x20\x73\x65\x6c\x66\x2e\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x28\x29\x20\x69\x73\x20\x64\x65\x66\x69\x6e\x65\x64\x29\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x74\x0a\x20\x20\x20\x20\x62\x65\x66\x6f\x72\x65\x20\x69\x74\x20\x69\x73\x20\x70\x61\x73\x73\x65\x64\x20\x74\x6f\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x28\x69\x66\x20\x73\x65\x6c\x66\x2e\x69\x73\x5f\x70\x61\x63\x6b\x61\x67\x65\x28\x29\x20\x64\x6f\x65\x73\x0a\x20\x20\x20\x20\x6e\x6f\x74\x20\x77\x6f\x72\x6b\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x74\x20\x70\x6f\x73\x74\x2d\x6c\x6f\x61\x64\x29\x2e\x0a\x0a\x20\x20\x20\x20\x49\x66\x20\x61\x6e\x20\x65\x78\x63\x65\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x72\x61\x69\x73\x65\x64\x20\x61\x6e\x64\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x63\x72\x65\x61\x74\x65\x64\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x74\x20\x69\x73\x0a\x20\x20\x20\x20\x73\x75\x62\x73\x65\x71\x75\x65\x6e\x74\x6c\x79\x20\x72\x65\x6d\x6f\x76\x65\x64\x20\x66\x72\x6f\x6d\x20\x73\x79\x73\x2e\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x0a\x0a\x20\x20\x20\x20\x54\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x6f\x72\x20\x61\x73\x73\x75\x6d\x65\x73\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x64\x65\x63\x6f\x72\x61\x74\x65\x64\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x74\x61\x6b\x65\x73\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x20\x61\x73\x0a\x20\x20\x20\x20\x74\x68\x65\x20\x73\x65\x63\x6f\x6e\x64\x20\x61\x72\x67\x75\x6d\x65\x6e\x74\x2e\x0a\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib_util_toplevel_consts_23_consts_4_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - &_Py_STR(dot), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib_util_toplevel_consts_23_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str__module_to_load._ascii.ob_base, - &_Py_ID(__loader__), - & const_str_is_package._ascii.ob_base, - &_Py_ID(__package__), - & const_str_rpartition._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[26]; - } -const_str_module_for_loader_wrapper = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 25, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module_for_loader_wrapper", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[53]; - } -importlib_util_toplevel_consts_23_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 52, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module_for_loader..module_for_loader_wrapper", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[270]; - } -importlib_util_toplevel_consts_23_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 269, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xe5\x0d\x1c\x98\x58\xd1\x0d\x26\xd4\x0d\x26\xf0\x00\x0c\x09\x36\xa8\x26\xd8\x20\x24\x88\x46\xd4\x0c\x1d\xf0\x02\x08\x0d\x45\x01\xd8\x1d\x21\x9f\x5f\x9a\x5f\xa8\x58\xd1\x1d\x36\xd4\x1d\x36\x90\x0a\xf0\x08\x00\x14\x1e\xf0\x00\x03\x11\x45\x01\xd8\x29\x31\x90\x46\xd4\x14\x26\xd0\x14\x26\xe0\x29\x31\xd7\x29\x3c\xd2\x29\x3c\xb8\x53\xd1\x29\x41\xd4\x29\x41\xc0\x21\xd4\x29\x44\x90\x46\xd4\x14\x26\xd0\x14\x26\xf8\xf5\x0d\x00\x15\x20\xa5\x1e\xd0\x13\x30\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x10\x00\x14\x17\x90\x33\x90\x74\x98\x56\xd0\x13\x35\xa0\x64\xd0\x13\x35\xd0\x13\x35\xd0\x13\x35\xa8\x66\xd0\x13\x35\xd0\x13\x35\xf0\x19\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf1\x00\x0c\x09\x36\xf4\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf8\xf8\xf8\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36\xf0\x00\x0c\x09\x36", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[52]; - } -importlib_util_toplevel_consts_23_consts_4_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 51, - }, - .ob_shash = -1, - .ob_sval = "\x91\x08\x42\x0a\x03\x9a\x15\x41\x1a\x02\xaf\x2b\x42\x0a\x03\xc1\x1a\x11\x41\x2e\x05\xc1\x2b\x02\x42\x0a\x03\xc1\x2d\x01\x41\x2e\x05\xc1\x2e\x0f\x42\x0a\x03\xc2\x0a\x04\x42\x0e\x07\xc2\x11\x01\x42\x0e\x07", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib_util_toplevel_consts_23_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_fullname._ascii.ob_base, - & const_str_args._ascii.ob_base, - & const_str_kwargs._ascii.ob_base, - & const_str_module._ascii.ob_base, - & const_str_is_package._ascii.ob_base, - & const_str_fxn._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(302) -importlib_util_toplevel_consts_23_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 151, - }, - .co_consts = & importlib_util_toplevel_consts_23_consts_4_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_23_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib_util_toplevel_consts_23_consts_4_exceptiontable.ob_base.ob_base, - .co_flags = 31, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 204, - .co_nlocalsplus = 7, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 1, - .co_localsplusnames = & importlib_util_toplevel_consts_23_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & abc_toplevel_consts_10_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_module_for_loader_wrapper._ascii.ob_base, - .co_qualname = & importlib_util_toplevel_consts_23_consts_4_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_23_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x01\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x04\x7c\x00\x7c\x04\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x7c\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x72\x08\x7c\x01\x7c\x04\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x38\x7c\x01\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6e\x17\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x02\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x02\x00\x89\x06\x7c\x00\x7c\x04\x67\x02\x7c\x02\xa2\x01\x52\x00\x69\x00\x7c\x03\xa4\x01\x8e\x01\x63\x02\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib_util_toplevel_consts_23_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & importlib_util_toplevel_consts_23_consts_0._ascii.ob_base, - & importlib_util_toplevel_consts_21_consts_1_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & importlib__bootstrap_toplevel_consts_55_consts_8._object.ob_base.ob_base, - & importlib_util_toplevel_consts_23_consts_4.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib_util_toplevel_consts_23_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - &_Py_ID(warnings), - & const_str_warn._ascii.ob_base, - & const_str_DeprecationWarning._ascii.ob_base, - & const_str_functools._ascii.ob_base, - & const_str_wraps._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[18]; - } -const_str_module_for_loader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 17, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module_for_loader", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[98]; - } -importlib_util_toplevel_consts_23_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 97, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xf5\x24\x00\x05\x0d\x84\x4d\xf0\x00\x01\x13\x48\x01\xe5\x12\x24\xb0\x11\xf0\x05\x02\x05\x34\xf1\x00\x02\x05\x34\xf4\x00\x02\x05\x34\xf0\x00\x02\x05\x34\xf5\x06\x00\x06\x0f\x84\x5f\x90\x53\xd1\x05\x19\xd4\x05\x19\xf0\x02\x0d\x05\x36\xf0\x00\x0d\x05\x36\xf0\x00\x0d\x05\x36\xf0\x00\x0d\x05\x36\xf1\x03\x00\x06\x1a\xd4\x05\x19\xf0\x02\x0d\x05\x36\xf0\x1e\x00\x0c\x25\xd0\x04\x24", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_23_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_fxn._ascii.ob_base, - & const_str_module_for_loader_wrapper._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(126) -importlib_util_toplevel_consts_23 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 63, - }, - .co_consts = & importlib_util_toplevel_consts_23_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_23_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 183, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 1, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_23_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_19_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_module_for_loader._ascii.ob_base, - .co_qualname = & const_str_module_for_loader._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_23_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xac\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x89\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x88\x00\x66\x01\x64\x04\x84\x08\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x7c\x01\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str__LazyModule = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_LazyModule", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[76]; - } -importlib_util_toplevel_consts_24_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 75, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "A subclass of the module type which triggers loading upon attribute access.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[57]; - } -importlib_util_toplevel_consts_24_consts_2_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 56, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Trigger the load of the module and return the attribute.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_is_loading = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "is_loading", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -importlib_util_toplevel_consts_24_consts_2_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "module object for ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[47]; - } -importlib_util_toplevel_consts_24_consts_2_consts_9 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 46, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " substituted in sys.modules during a lazy load", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -importlib_util_toplevel_consts_24_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & importlib_util_toplevel_consts_24_consts_2_consts_0._ascii.ob_base, - &_Py_ID(__spec__), - & const_str_lock._ascii.ob_base, - &_Py_ID(__class__), - & const_str_is_loading._ascii.ob_base, - Py_None, - Py_True, - &_Py_ID(__dict__), - & importlib_util_toplevel_consts_24_consts_2_consts_8._ascii.ob_base, - & importlib_util_toplevel_consts_24_consts_2_consts_9._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_types = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "types", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_ModuleType = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "ModuleType", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[17]; - }_object; - } -importlib_util_toplevel_consts_24_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 17, - }, - .ob_item = { - & const_str_object._ascii.ob_base, - &_Py_ID(__getattribute__), - & const_str_loader_state._ascii.ob_base, - & const_str__LazyModule._ascii.ob_base, - &_Py_ID(name), - &_Py_ID(items), - & const_str_id._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_exec_module._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str_ValueError._ascii.ob_base, - & const_str_update._ascii.ob_base, - & const_str_types._ascii.ob_base, - & const_str_ModuleType._ascii.ob_base, - &_Py_ID(__class__), - &_Py_ID(getattr), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -importlib_util_toplevel_consts_24_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_LazyModule.__getattribute__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[555]; - } -importlib_util_toplevel_consts_24_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 554, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x13\x19\xd7\x13\x2a\xd2\x13\x2a\xa8\x34\xb0\x1a\xd1\x13\x3c\xd4\x13\x3c\x88\x08\xd8\x17\x1f\xd4\x17\x2c\x88\x0c\xd8\x0d\x19\x98\x26\xd4\x0d\x21\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf5\x06\x00\x10\x16\xd7\x0f\x26\xd2\x0f\x26\xa0\x74\xa8\x5b\xd1\x0f\x39\xd4\x0f\x39\xbd\x5b\xd0\x0f\x48\xd1\x0f\x48\xf0\x0a\x00\x14\x20\xa0\x0c\xd4\x13\x2d\xf0\x00\x01\x11\x3f\xdd\x1b\x21\xd7\x1b\x32\xd2\x1b\x32\xb0\x34\xb8\x14\xd1\x1b\x3e\xd4\x1b\x3e\xf0\x13\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf1\x00\x2b\x09\x32\xf4\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x14\x00\x2e\x32\x90\x0c\x98\x5c\xd1\x10\x2a\xe5\x1b\x21\xd7\x1b\x32\xd2\x1b\x32\xb0\x34\xb8\x1a\xd1\x1b\x44\xd4\x1b\x44\x90\x08\xf0\x0c\x00\x21\x29\xa4\x0d\x90\x0d\xf0\x06\x00\x1e\x2a\xa8\x2a\xd4\x1d\x35\x90\x0a\xd8\x1c\x24\x90\x09\xd8\x20\x22\x90\x0d\xd8\x22\x2b\xa7\x2f\xa2\x2f\xd1\x22\x33\xd4\x22\x33\xf0\x00\x06\x11\x33\xf0\x00\x06\x11\x33\x91\x4a\x90\x43\x98\x15\xf0\x06\x00\x18\x1b\xa0\x2a\xd0\x17\x2c\xd0\x17\x2c\xd8\x2d\x32\x98\x0d\xa0\x63\xd1\x18\x2a\xd0\x18\x2a\xdd\x19\x1b\x98\x49\xa0\x63\x9c\x4e\xd1\x19\x2b\xd4\x19\x2b\xad\x72\xb0\x2a\xb8\x53\xb4\x2f\xd1\x2f\x42\xd4\x2f\x42\xd2\x19\x42\xd0\x19\x42\xd8\x2d\x32\x98\x0d\xa0\x63\xd1\x18\x2a\xf8\xd8\x10\x18\x94\x0f\xd7\x10\x2b\xd2\x10\x2b\xa8\x44\xd1\x10\x31\xd4\x10\x31\xd0\x10\x31\xf0\x06\x00\x14\x21\xa5\x43\xa4\x4b\xd0\x13\x2f\xd0\x13\x2f\xdd\x17\x19\x98\x24\x91\x78\x94\x78\xa5\x32\xa5\x63\xa4\x6b\xb0\x2d\xd4\x26\x40\xd1\x23\x41\xd4\x23\x41\xd2\x17\x41\xd0\x17\x41\xdd\x1e\x28\xf0\x00\x02\x2a\x31\xb8\x6d\xf0\x00\x02\x2a\x31\xf0\x00\x02\x2a\x31\xf0\x00\x02\x2a\x31\xf1\x00\x02\x1f\x32\xf4\x00\x02\x1f\x32\xf0\x00\x02\x19\x32\xf0\x0a\x00\x11\x19\x97\x0f\x92\x0f\xa0\x0d\xd1\x10\x2e\xd4\x10\x2e\xd0\x10\x2e\xe5\x21\x26\xd4\x21\x31\x90\x04\x94\x0e\xf0\x57\x01\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf1\x00\x2b\x09\x32\xf4\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf8\xf8\xf8\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf0\x00\x2b\x09\x32\xf5\x5a\x01\x00\x10\x17\x90\x74\x98\x54\xd1\x0f\x22\xd4\x0f\x22\xd0\x08\x22", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[26]; - } -importlib_util_toplevel_consts_24_consts_2_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 25, - }, - .ob_shash = -1, - .ob_sval = "\xab\x41\x06\x46\x23\x03\xc1\x3e\x44\x19\x46\x23\x03\xc6\x23\x04\x46\x27\x07\xc6\x2a\x01\x46\x27\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_attr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "attr", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_original_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "original_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_attrs_then = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "attrs_then", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_attrs_now = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "attrs_now", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_attrs_updated = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "attrs_updated", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -importlib_util_toplevel_consts_24_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_attr._ascii.ob_base, - &_Py_ID(__spec__), - & const_str_loader_state._ascii.ob_base, - &_Py_ID(__dict__), - & const_str_original_name._ascii.ob_base, - & const_str_attrs_then._ascii.ob_base, - & const_str_attrs_now._ascii.ob_base, - & const_str_attrs_updated._ascii.ob_base, - & const_str_key._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(892) -importlib_util_toplevel_consts_24_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 446, - }, - .co_consts = & importlib_util_toplevel_consts_24_consts_2_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_24_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = & importlib_util_toplevel_consts_24_consts_2_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 227, - .co_nlocalsplus = 11, - .co_nlocals = 11, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_24_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_8_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = &_Py_ID(__getattribute__), - .co_qualname = & importlib_util_toplevel_consts_24_consts_2_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_24_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x7c\x02\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x7c\x03\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75\x00\x90\x01\x72\x48\x7c\x03\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x27\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x64\x05\x64\x05\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x64\x06\x7c\x03\x64\x04\x3c\x00\x00\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x04\x7c\x02\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x03\x64\x07\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x04\x7d\x07\x69\x00\x7d\x08\x7c\x07\xa0\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x44\x00\x5d\x40\x5c\x02\x00\x00\x7d\x09\x7d\x0a\x7c\x09\x7c\x06\x76\x01\x72\x06\x7c\x0a\x7c\x08\x7c\x09\x3c\x00\x00\x00\x8c\x0f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\x7c\x09\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x05\x7c\x0a\x7c\x08\x7c\x09\x3c\x00\x00\x00\x8c\x41\x7c\x02\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x05\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x43\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6b\x03\x00\x00\x00\x00\x72\x13\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x7c\x05\x9b\x02\x64\x09\x9d\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x04\xa0\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x08\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x64\x05\x64\x05\x64\x05\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x74\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[48]; - } -importlib_util_toplevel_consts_24_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 47, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Trigger the load and then perform the deletion.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_24_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib_util_toplevel_consts_24_consts_3_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_delattr = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "delattr", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_24_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - &_Py_ID(__getattribute__), - & const_str_delattr._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -importlib_util_toplevel_consts_24_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_LazyModule.__delattr__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[47]; - } -importlib_util_toplevel_consts_24_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 46, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x09\x0d\xd7\x08\x1d\xd2\x08\x1d\x98\x64\xd1\x08\x23\xd4\x08\x23\xd0\x08\x23\xdd\x08\x0f\x90\x04\x90\x64\xd1\x08\x1b\xd4\x08\x1b\xd0\x08\x1b\xd0\x08\x1b\xd0\x08\x1b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_24_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_attr._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(80) -importlib_util_toplevel_consts_24_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 40, - }, - .co_consts = & importlib_util_toplevel_consts_24_consts_3_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_24_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 278, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_24_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = &_Py_ID(__delattr__), - .co_qualname = & importlib_util_toplevel_consts_24_consts_3_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_24_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib_util_toplevel_consts_24_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__LazyModule._ascii.ob_base, - & importlib_util_toplevel_consts_24_consts_1._ascii.ob_base, - & importlib_util_toplevel_consts_24_consts_2.ob_base.ob_base, - & importlib_util_toplevel_consts_24_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -importlib_util_toplevel_consts_24_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__getattribute__), - &_Py_ID(__delattr__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[58]; - } -importlib_util_toplevel_consts_24_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 57, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x04\x55\xd0\x04\x55\xf0\x04\x31\x05\x23\xf0\x00\x31\x05\x23\xf0\x00\x31\x05\x23\xf0\x66\x01\x05\x05\x1c\xf0\x00\x05\x05\x1c\xf0\x00\x05\x05\x1c\xf0\x00\x05\x05\x1c\xf0\x00\x05\x05\x1c", -}; -static - struct _PyCode_DEF(30) -importlib_util_toplevel_consts_24 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 15, - }, - .co_consts = & importlib_util_toplevel_consts_24_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_24_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 223, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str__LazyModule._ascii.ob_base, - .co_qualname = & const_str__LazyModule._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_24_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_LazyLoader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LazyLoader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[76]; - } -importlib_util_toplevel_consts_26_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 75, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "A loader that creates a module which defers loading until attribute access.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[33]; - } -importlib_util_toplevel_consts_26_consts_2_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 32, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "loader must define exec_module()", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib_util_toplevel_consts_26_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & const_str_exec_module._ascii.ob_base, - & importlib_util_toplevel_consts_26_consts_2_consts_2._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_26_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_hasattr._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -const_str___check_eager_loader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "__check_eager_loader", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -importlib_util_toplevel_consts_26_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LazyLoader.__check_eager_loader", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[49]; - } -importlib_util_toplevel_consts_26_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 48, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0f\x16\x90\x76\x98\x7d\xd1\x0f\x2d\xd4\x0f\x2d\xf0\x00\x01\x09\x40\x01\xdd\x12\x1b\xd0\x1c\x3e\xd1\x12\x3f\xd4\x12\x3f\xd0\x0c\x3f\xf0\x03\x01\x09\x40\x01\xf0\x00\x01\x09\x40\x01", -}; -static - struct _PyCode_DEF(68) -importlib_util_toplevel_consts_26_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 34, - }, - .co_consts = & importlib_util_toplevel_consts_26_consts_2_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_26_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 290, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_26_consts_4._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str___check_eager_loader._ascii.ob_base, - .co_qualname = & importlib_util_toplevel_consts_26_consts_2_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_26_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x0f\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[63]; - } -importlib_util_toplevel_consts_26_consts_3_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 62, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Construct a callable which returns the eager loader made lazy.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[37]; - } -importlib_util_toplevel_consts_26_consts_3_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 36, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LazyLoader.factory..", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[33]; - } -importlib_util_toplevel_consts_26_consts_3_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 32, - }, - .ob_shash = -1, - .ob_sval = "\xf8\x80\x00\xa0\x73\xa0\x73\xa8\x36\xa8\x36\xb0\x34\xd0\x2b\x42\xb8\x36\xd0\x2b\x42\xd0\x2b\x42\xd1\x27\x43\xd4\x27\x43\x80\x00", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -importlib_util_toplevel_consts_26_consts_3_consts_1_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_args._ascii.ob_base, - & const_str_kwargs._ascii.ob_base, - & const_str_cls._ascii.ob_base, - & const_str_loader._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(38) -importlib_util_toplevel_consts_26_consts_3_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 19, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 31, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 299, - .co_nlocalsplus = 4, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 2, - .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_3_consts_1_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & ntpath_toplevel_consts_45_consts_9_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_lambda), - .co_qualname = & importlib_util_toplevel_consts_26_consts_3_consts_1_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_26_consts_3_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x95\x02\x97\x00\x02\x00\x89\x02\x02\x00\x89\x03\x7c\x00\x69\x00\x7c\x01\xa4\x01\x8e\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 1, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_26_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & importlib_util_toplevel_consts_26_consts_3_consts_0._ascii.ob_base, - & importlib_util_toplevel_consts_26_consts_3_consts_1.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -const_str__LazyLoader__check_eager_loader = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_LazyLoader__check_eager_loader", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_util_toplevel_consts_26_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str__LazyLoader__check_eager_loader._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_factory = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "factory", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -importlib_util_toplevel_consts_26_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LazyLoader.factory", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[45]; - } -importlib_util_toplevel_consts_26_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 44, - }, - .ob_shash = -1, - .ob_sval = "\xf8\xf8\x80\x00\xf0\x06\x00\x09\x0c\xd7\x08\x20\xd2\x08\x20\xa0\x16\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x0f\x43\xd0\x0f\x43\xd0\x0f\x43\xd0\x0f\x43\xd0\x0f\x43\xd0\x08\x43", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_26_consts_3_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_cls._ascii.ob_base, - & const_str_loader._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[3]; - } -importlib_util_toplevel_consts_26_consts_3_localspluskinds = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 2, - }, - .ob_shash = -1, - .ob_sval = "``", -}; -static - struct _PyCode_DEF(60) -importlib_util_toplevel_consts_26_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 30, - }, - .co_consts = & importlib_util_toplevel_consts_26_consts_3_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_26_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 295, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 2, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib_util_toplevel_consts_26_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_factory._ascii.ob_base, - .co_qualname = & importlib_util_toplevel_consts_26_consts_3_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_26_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x87\x00\x87\x01\x97\x00\x89\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x89\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x88\x00\x88\x01\x66\x02\x64\x01\x84\x08\x53\x00", - ._co_firsttraceable = 2, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_26_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str__LazyLoader__check_eager_loader._ascii.ob_base, - & const_str_loader._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -importlib_util_toplevel_consts_26_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LazyLoader.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[34]; - } -importlib_util_toplevel_consts_26_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 33, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x08\x0c\xd7\x08\x21\xd2\x08\x21\xa0\x26\xd1\x08\x29\xd4\x08\x29\xd0\x08\x29\xd8\x16\x1c\x88\x04\x8c\x0b\x88\x0b\x88\x0b", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_26_consts_4_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_loader._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(62) -importlib_util_toplevel_consts_26_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 31, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_26_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 301, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_4_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & importlib_util_toplevel_consts_26_consts_4_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_26_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -importlib_util_toplevel_consts_26_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_loader._ascii.ob_base, - & const_str_create_module._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -importlib_util_toplevel_consts_26_consts_5_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LazyLoader.create_module", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[25]; - } -importlib_util_toplevel_consts_26_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 24, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0f\x13\x8c\x7b\xd7\x0f\x28\xd2\x0f\x28\xa8\x14\xd1\x0f\x2e\xd4\x0f\x2e\xd0\x08\x2e", -}; -static - struct _PyCode_DEF(54) -importlib_util_toplevel_consts_26_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 27, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_26_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 305, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_external_toplevel_consts_55_consts_3_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_create_module._ascii.ob_base, - .co_qualname = & importlib_util_toplevel_consts_26_consts_5_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_26_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -importlib_util_toplevel_consts_26_consts_6_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Make the module load lazily.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -importlib_util_toplevel_consts_26_consts_6_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & importlib_util_toplevel_consts_26_consts_6_consts_0._ascii.ob_base, - &_Py_ID(__dict__), - &_Py_ID(__class__), - & const_str_lock._ascii.ob_base, - Py_False, - & const_str_is_loading._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_RLock = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "RLock", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -importlib_util_toplevel_consts_26_consts_6_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & const_str_loader._ascii.ob_base, - &_Py_ID(__spec__), - &_Py_ID(__loader__), - &_Py_ID(__dict__), - &_Py_ID(copy), - &_Py_ID(__class__), - &_Py_ID(threading), - & const_str_RLock._ascii.ob_base, - & const_str_loader_state._ascii.ob_base, - & const_str__LazyModule._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[23]; - } -importlib_util_toplevel_consts_26_consts_6_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 22, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "LazyLoader.exec_module", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[121]; - } -importlib_util_toplevel_consts_26_consts_6_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 120, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x21\x25\xa4\x1b\x88\x06\x8c\x0f\xd4\x08\x1e\xd8\x1c\x20\x9c\x4b\x88\x06\xd4\x08\x19\xf0\x0a\x00\x18\x1a\x88\x0c\xd8\x23\x29\xa4\x3f\xd7\x23\x37\xd2\x23\x37\xd1\x23\x39\xd4\x23\x39\x88\x0c\x90\x5a\xd1\x08\x20\xd8\x24\x2a\xd4\x24\x34\x88\x0c\x90\x5b\xd1\x08\x21\xdd\x1f\x28\x9c\x7f\xd1\x1f\x30\xd4\x1f\x30\x88\x0c\x90\x56\xd1\x08\x1c\xd8\x25\x2a\x88\x0c\x90\x5c\xd1\x08\x22\xd8\x27\x33\x88\x06\x8c\x0f\xd4\x08\x24\xdd\x1b\x26\x88\x06\xd4\x08\x18\xd0\x08\x18\xd0\x08\x18", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib_util_toplevel_consts_26_consts_6_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_module._ascii.ob_base, - & const_str_loader_state._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(246) -importlib_util_toplevel_consts_26_consts_6 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 123, - }, - .co_consts = & importlib_util_toplevel_consts_26_consts_6_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_26_consts_6_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 308, - .co_nlocalsplus = 3, - .co_nlocals = 3, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib_util_toplevel_consts_26_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_3_localspluskinds.ob_base.ob_base, - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_exec_module._ascii.ob_base, - .co_qualname = & importlib_util_toplevel_consts_26_consts_6_qualname._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_26_consts_6_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x69\x00\x7d\x02\x7c\x01\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x01\x3c\x00\x00\x00\x7c\x01\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x02\x3c\x00\x00\x00\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x64\x03\x3c\x00\x00\x00\x64\x04\x7c\x02\x64\x05\x3c\x00\x00\x00\x7c\x02\x7c\x01\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x5f\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x06\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[8]; - }_object; - } -importlib_util_toplevel_consts_26_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 8, - }, - .ob_item = { - & const_str_LazyLoader._ascii.ob_base, - & importlib_util_toplevel_consts_26_consts_1._ascii.ob_base, - & importlib_util_toplevel_consts_26_consts_2.ob_base.ob_base, - & importlib_util_toplevel_consts_26_consts_3.ob_base.ob_base, - & importlib_util_toplevel_consts_26_consts_4.ob_base.ob_base, - & importlib_util_toplevel_consts_26_consts_5.ob_base.ob_base, - & importlib_util_toplevel_consts_26_consts_6.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -importlib_util_toplevel_consts_26_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - & const_str_staticmethod._ascii.ob_base, - & const_str__LazyLoader__check_eager_loader._ascii.ob_base, - & const_str_classmethod._ascii.ob_base, - & const_str_factory._ascii.ob_base, - &_Py_ID(__init__), - & const_str_create_module._ascii.ob_base, - & const_str_exec_module._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[130]; - } -importlib_util_toplevel_consts_26_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 129, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xe0\x04\x55\xd0\x04\x55\xe0\x05\x11\xf0\x02\x02\x05\x40\x01\xf0\x00\x02\x05\x40\x01\xf1\x03\x00\x06\x12\x84\x5c\xf0\x02\x02\x05\x40\x01\xf0\x08\x00\x06\x11\xf0\x02\x03\x05\x44\x01\xf0\x00\x03\x05\x44\x01\xf1\x03\x00\x06\x11\x84\x5b\xf0\x02\x03\x05\x44\x01\xf0\x0a\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x00\x02\x05\x1d\xf0\x08\x01\x05\x2f\xf0\x00\x01\x05\x2f\xf0\x00\x01\x05\x2f\xf0\x06\x0e\x05\x27\xf0\x00\x0e\x05\x27\xf0\x00\x0e\x05\x27\xf0\x00\x0e\x05\x27\xf0\x00\x0e\x05\x27", -}; -static - struct _PyCode_DEF(80) -importlib_util_toplevel_consts_26 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 40, - }, - .co_consts = & importlib_util_toplevel_consts_26_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_consts_26_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 286, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = & const_str_LazyLoader._ascii.ob_base, - .co_qualname = & const_str_LazyLoader._ascii.ob_base, - .co_linetable = & importlib_util_toplevel_consts_26_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x65\x04\x64\x02\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x05\x65\x06\x64\x03\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x07\x64\x04\x84\x00\x5a\x08\x64\x05\x84\x00\x5a\x09\x64\x06\x84\x00\x5a\x0a\x64\x07\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[29]; - }_object; - } -importlib_util_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 29, - }, - .ob_item = { - & importlib_util_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & importlib_util_toplevel_consts_2._object.ob_base.ob_base, - & importlib_util_toplevel_consts_3._object.ob_base.ob_base, - & importlib_util_toplevel_consts_4._object.ob_base.ob_base, - & importlib_util_toplevel_consts_5._object.ob_base.ob_base, - & importlib_util_toplevel_consts_6._object.ob_base.ob_base, - & importlib_util_toplevel_consts_7._object.ob_base.ob_base, - & importlib_util_toplevel_consts_8._object.ob_base.ob_base, - & importlib_util_toplevel_consts_9._object.ob_base.ob_base, - & importlib_util_toplevel_consts_10._object.ob_base.ob_base, - & importlib_util_toplevel_consts_11._object.ob_base.ob_base, - & importlib__bootstrap_external_toplevel_consts_73_consts_5_names._object.ob_base.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & importlib_util_toplevel_consts_14._object.ob_base.ob_base, - Py_None, - & importlib_util_toplevel_consts_16.ob_base.ob_base, - & importlib_util_toplevel_consts_17.ob_base.ob_base, - & importlib_util_toplevel_consts_18.ob_base.ob_base, - & importlib_util_toplevel_consts_19.ob_base.ob_base, - & importlib_util_toplevel_consts_20.ob_base.ob_base, - & importlib_util_toplevel_consts_21.ob_base.ob_base, - & importlib_util_toplevel_consts_22.ob_base.ob_base, - & importlib_util_toplevel_consts_23.ob_base.ob_base, - & importlib_util_toplevel_consts_24.ob_base.ob_base, - & const_str__LazyModule._ascii.ob_base, - & importlib_util_toplevel_consts_26.ob_base.ob_base, - & const_str_LazyLoader._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_contextlib = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "contextlib", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[34]; - }_object; - } -importlib_util_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 34, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str__abc._ascii.ob_base, - & const_str_Loader._ascii.ob_base, - &_Py_ID(_bootstrap), - & const_str_module_from_spec._ascii.ob_base, - & const_str__resolve_name._ascii.ob_base, - & const_str_spec_from_loader._ascii.ob_base, - & const_str__find_spec._ascii.ob_base, - & const_str__bootstrap_external._ascii.ob_base, - & const_str_MAGIC_NUMBER._ascii.ob_base, - & const_str__RAW_MAGIC_NUMBER._ascii.ob_base, - & const_str_cache_from_source._ascii.ob_base, - & const_str_decode_source._ascii.ob_base, - & const_str_source_from_cache._ascii.ob_base, - & const_str_spec_from_file_location._ascii.ob_base, - & const_str_contextlib._ascii.ob_base, - & const_str_contextmanager._ascii.ob_base, - & const_str__imp._ascii.ob_base, - & const_str_functools._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(threading), - & const_str_types._ascii.ob_base, - &_Py_ID(warnings), - & const_str_source_hash._ascii.ob_base, - & const_str_resolve_name._ascii.ob_base, - & const_str__find_spec_from_path._ascii.ob_base, - & const_str_find_spec._ascii.ob_base, - & const_str__module_to_load._ascii.ob_base, - & const_str_set_package._ascii.ob_base, - & const_str_set_loader._ascii.ob_base, - & const_str_module_for_loader._ascii.ob_base, - & const_str_ModuleType._ascii.ob_base, - & const_str__LazyModule._ascii.ob_base, - & const_str_LazyLoader._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[530]; - } -importlib_util_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 529, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x00\x33\xd0\x00\x33\xd8\x00\x18\xd0\x00\x18\xd0\x00\x18\xd0\x00\x18\xd0\x00\x18\xd0\x00\x18\xd8\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd8\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd8\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd0\x00\x28\xd8\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd8\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd0\x00\x2d\xd8\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd8\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd8\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd0\x00\x2e\xd8\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd0\x00\x32\xd8\x00\x38\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xd0\x00\x38\xe0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd0\x00\x25\xd8\x00\x0b\x80\x0b\x80\x0b\x80\x0b\xd8\x00\x10\xd0\x00\x10\xd0\x00\x10\xd0\x00\x10\xd8\x00\x0a\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x10\xd0\x00\x10\xd0\x00\x10\xd0\x00\x10\xd8\x00\x0c\x80\x0c\x80\x0c\x80\x0c\xd8\x00\x0f\x80\x0f\x80\x0f\x80\x0f\xf0\x06\x02\x01\x3d\xf0\x00\x02\x01\x3d\xf0\x00\x02\x01\x3d\xf0\x0a\x0c\x01\x37\xf0\x00\x0c\x01\x37\xf0\x00\x0c\x01\x37\xf0\x1e\x1c\x01\x18\xf0\x00\x1c\x01\x18\xf0\x00\x1c\x01\x18\xf0\x00\x1c\x01\x18\xf0\x3e\x2a\x01\x18\xf0\x00\x2a\x01\x18\xf0\x00\x2a\x01\x18\xf0\x00\x2a\x01\x18\xf0\x5a\x01\x00\x02\x10\xf0\x02\x16\x01\x28\xf0\x00\x16\x01\x28\xf1\x03\x00\x02\x10\x84\x1e\xf0\x02\x16\x01\x28\xf0\x32\x11\x01\x1f\xf0\x00\x11\x01\x1f\xf0\x00\x11\x01\x1f\xf0\x28\x0f\x01\x1e\xf0\x00\x0f\x01\x1e\xf0\x00\x0f\x01\x1e\xf0\x24\x25\x01\x25\xf0\x00\x25\x01\x25\xf0\x00\x25\x01\x25\xf0\x50\x01\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\x90\x25\xd4\x12\x22\xf1\x00\x3c\x01\x1c\xf4\x00\x3c\x01\x1c\xf0\x00\x3c\x01\x1c\xf0\x7e\x01\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\x90\x16\xf1\x00\x24\x01\x27\xf4\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27\xf0\x00\x24\x01\x27", -}; -static - struct _PyCode_DEF(336) -importlib_util_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 168, - }, - .co_consts = & importlib_util_toplevel_consts._object.ob_base.ob_base, - .co_names = & importlib_util_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib_util_toplevel_consts_16_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & importlib_util_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x6d\x02\x5a\x02\x01\x00\x64\x01\x64\x03\x6c\x03\x6d\x04\x5a\x04\x01\x00\x64\x01\x64\x04\x6c\x03\x6d\x05\x5a\x05\x01\x00\x64\x01\x64\x05\x6c\x03\x6d\x06\x5a\x06\x01\x00\x64\x01\x64\x06\x6c\x03\x6d\x07\x5a\x07\x01\x00\x64\x01\x64\x07\x6c\x08\x6d\x09\x5a\x09\x01\x00\x64\x01\x64\x08\x6c\x08\x6d\x0a\x5a\x0a\x01\x00\x64\x01\x64\x09\x6c\x08\x6d\x0b\x5a\x0b\x01\x00\x64\x01\x64\x0a\x6c\x08\x6d\x0c\x5a\x0c\x01\x00\x64\x01\x64\x0b\x6c\x08\x6d\x0d\x5a\x0d\x01\x00\x64\x01\x64\x0c\x6c\x08\x6d\x0e\x5a\x0e\x01\x00\x64\x0d\x64\x0e\x6c\x0f\x6d\x10\x5a\x10\x01\x00\x64\x0d\x64\x0f\x6c\x11\x5a\x11\x64\x0d\x64\x0f\x6c\x12\x5a\x12\x64\x0d\x64\x0f\x6c\x13\x5a\x13\x64\x0d\x64\x0f\x6c\x14\x5a\x14\x64\x0d\x64\x0f\x6c\x15\x5a\x15\x64\x0d\x64\x0f\x6c\x16\x5a\x16\x64\x10\x84\x00\x5a\x17\x64\x11\x84\x00\x5a\x18\x64\x1c\x64\x12\x84\x01\x5a\x19\x64\x1c\x64\x13\x84\x01\x5a\x1a\x65\x10\x64\x14\x84\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x1b\x64\x15\x84\x00\x5a\x1c\x64\x16\x84\x00\x5a\x1d\x64\x17\x84\x00\x5a\x1e\x02\x00\x47\x00\x64\x18\x84\x00\x64\x19\x65\x15\x6a\x1f\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x20\x02\x00\x47\x00\x64\x1a\x84\x00\x64\x1b\x65\x02\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x21\x64\x0f\x53\x00", - ._co_firsttraceable = 0, -}; -static void importlib_util_do_patchups(void) { -} - -PyObject * -_Py_get_importlib_util_toplevel(void) -{ - importlib_util_do_patchups(); - return Py_NewRef((PyObject *) &importlib_util_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[58]; - } -importlib_machinery_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 57, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "The machinery of importlib: finders, loaders, hooks, etc.", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_ModuleSpec._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_3 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_BuiltinImporter._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_4 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_FrozenImporter._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -importlib_machinery_toplevel_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str_SOURCE_SUFFIXES._ascii.ob_base, - & const_str_DEBUG_BYTECODE_SUFFIXES._ascii.ob_base, - & const_str_OPTIMIZED_BYTECODE_SUFFIXES._ascii.ob_base, - & const_str_BYTECODE_SUFFIXES._ascii.ob_base, - & const_str_EXTENSION_SUFFIXES._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_6 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_WindowsRegistryFinder._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_7 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_PathFinder._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_8 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_FileFinder._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_9 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_SourceFileLoader._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_10 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_SourcelessFileLoader._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_11 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_ExtensionFileLoader._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_12 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_NamespaceLoader._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[66]; - } -importlib_machinery_toplevel_consts_13_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 65, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Returns a list of all recognized module suffixes for this process", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -importlib_machinery_toplevel_consts_13_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & importlib_machinery_toplevel_consts_13_consts_0._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -importlib_machinery_toplevel_consts_13_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_SOURCE_SUFFIXES._ascii.ob_base, - & const_str_BYTECODE_SUFFIXES._ascii.ob_base, - & const_str_EXTENSION_SUFFIXES._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -importlib_machinery_toplevel_consts_13_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_all_suffixes = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "all_suffixes", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[21]; - } -importlib_machinery_toplevel_consts_13_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 20, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe5\x0b\x1a\xd5\x1d\x2e\xd1\x0b\x2e\xd5\x31\x43\xd1\x0b\x43\xd0\x04\x43", -}; -static - struct _PyCode_DEF(48) -importlib_machinery_toplevel_consts_13 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 24, - }, - .co_consts = & importlib_machinery_toplevel_consts_13_consts._object.ob_base.ob_base, - .co_names = & importlib_machinery_toplevel_consts_13_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 18, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib_machinery_toplevel_consts_13_filename._ascii.ob_base, - .co_name = & const_str_all_suffixes._ascii.ob_base, - .co_qualname = & const_str_all_suffixes._ascii.ob_base, - .co_linetable = & importlib_machinery_toplevel_consts_13_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[15]; - }_object; - } -importlib_machinery_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 15, - }, - .ob_item = { - & importlib_machinery_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 1], - & importlib_machinery_toplevel_consts_2._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_3._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_4._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_5._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_6._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_7._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_8._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_9._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_10._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_11._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_12._object.ob_base.ob_base, - & importlib_machinery_toplevel_consts_13.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[19]; - }_object; - } -importlib_machinery_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 19, - }, - .ob_item = { - &_Py_ID(__doc__), - &_Py_ID(_bootstrap), - & const_str_ModuleSpec._ascii.ob_base, - & const_str_BuiltinImporter._ascii.ob_base, - & const_str_FrozenImporter._ascii.ob_base, - & const_str__bootstrap_external._ascii.ob_base, - & const_str_SOURCE_SUFFIXES._ascii.ob_base, - & const_str_DEBUG_BYTECODE_SUFFIXES._ascii.ob_base, - & const_str_OPTIMIZED_BYTECODE_SUFFIXES._ascii.ob_base, - & const_str_BYTECODE_SUFFIXES._ascii.ob_base, - & const_str_EXTENSION_SUFFIXES._ascii.ob_base, - & const_str_WindowsRegistryFinder._ascii.ob_base, - & const_str_PathFinder._ascii.ob_base, - & const_str_FileFinder._ascii.ob_base, - & const_str_SourceFileLoader._ascii.ob_base, - & const_str_SourcelessFileLoader._ascii.ob_base, - & const_str_ExtensionFileLoader._ascii.ob_base, - & const_str_NamespaceLoader._ascii.ob_base, - & const_str_all_suffixes._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[294]; - } -importlib_machinery_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 293, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x00\x3f\xd0\x00\x3f\xe0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd0\x00\x22\xd8\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd0\x00\x27\xd8\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xd0\x00\x26\xf0\x02\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x00\x02\x01\x29\xf0\x06\x00\x01\x37\xd0\x00\x36\xd0\x00\x36\xd0\x00\x36\xd0\x00\x36\xd0\x00\x36\xd8\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd8\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd0\x00\x2b\xd8\x00\x31\xd0\x00\x31\xd0\x00\x31\xd0\x00\x31\xd0\x00\x31\xd0\x00\x31\xd8\x00\x35\xd0\x00\x35\xd0\x00\x35\xd0\x00\x35\xd0\x00\x35\xd0\x00\x35\xd8\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd0\x00\x34\xd8\x00\x30\xd0\x00\x30\xd0\x00\x30\xd0\x00\x30\xd0\x00\x30\xd0\x00\x30\xf0\x06\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01\xf0\x00\x02\x01\x44\x01", -}; -static - struct _PyCode_DEF(164) -importlib_machinery_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 82, - }, - .co_consts = & importlib_machinery_toplevel_consts._object.ob_base.ob_base, - .co_names = & importlib_machinery_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & importlib_machinery_toplevel_consts_13_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & importlib_machinery_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x6d\x02\x5a\x02\x01\x00\x64\x01\x64\x03\x6c\x01\x6d\x03\x5a\x03\x01\x00\x64\x01\x64\x04\x6c\x01\x6d\x04\x5a\x04\x01\x00\x64\x01\x64\x05\x6c\x05\x6d\x06\x5a\x06\x6d\x07\x5a\x07\x6d\x08\x5a\x08\x6d\x09\x5a\x09\x6d\x0a\x5a\x0a\x01\x00\x64\x01\x64\x06\x6c\x05\x6d\x0b\x5a\x0b\x01\x00\x64\x01\x64\x07\x6c\x05\x6d\x0c\x5a\x0c\x01\x00\x64\x01\x64\x08\x6c\x05\x6d\x0d\x5a\x0d\x01\x00\x64\x01\x64\x09\x6c\x05\x6d\x0e\x5a\x0e\x01\x00\x64\x01\x64\x0a\x6c\x05\x6d\x0f\x5a\x0f\x01\x00\x64\x01\x64\x0b\x6c\x05\x6d\x10\x5a\x10\x01\x00\x64\x01\x64\x0c\x6c\x05\x6d\x11\x5a\x11\x01\x00\x64\x0d\x84\x00\x5a\x12\x64\x0e\x53\x00", - ._co_firsttraceable = 0, -}; -static void importlib_machinery_do_patchups(void) { -} - -PyObject * -_Py_get_importlib_machinery_toplevel(void) -{ - importlib_machinery_do_patchups(); - return Py_NewRef((PyObject *) &importlib_machinery_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[347]; - } -runpy_toplevel_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 346, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x72\x75\x6e\x70\x79\x2e\x70\x79\x20\x2d\x20\x6c\x6f\x63\x61\x74\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x75\x6e\x6e\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x63\x6f\x64\x65\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x0a\x0a\x50\x72\x6f\x76\x69\x64\x65\x73\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x66\x6f\x72\x20\x6c\x6f\x63\x61\x74\x69\x6e\x67\x20\x61\x6e\x64\x20\x72\x75\x6e\x6e\x69\x6e\x67\x20\x50\x79\x74\x68\x6f\x6e\x20\x73\x63\x72\x69\x70\x74\x73\x20\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x50\x79\x74\x68\x6f\x6e\x0a\x6d\x6f\x64\x75\x6c\x65\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x74\x68\x65\x20\x6e\x61\x74\x69\x76\x65\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x2e\x0a\x0a\x54\x68\x69\x73\x20\x61\x6c\x6c\x6f\x77\x73\x20\x50\x79\x74\x68\x6f\x6e\x20\x63\x6f\x64\x65\x20\x74\x6f\x20\x70\x6c\x61\x79\x20\x6e\x69\x63\x65\x6c\x79\x20\x77\x69\x74\x68\x20\x6e\x6f\x6e\x2d\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x20\x62\x61\x73\x65\x64\x20\x50\x45\x50\x20\x33\x30\x32\x0a\x69\x6d\x70\x6f\x72\x74\x65\x72\x73\x20\x77\x68\x65\x6e\x20\x6c\x6f\x63\x61\x74\x69\x6e\x67\x20\x73\x75\x70\x70\x6f\x72\x74\x20\x73\x63\x72\x69\x70\x74\x73\x20\x61\x73\x20\x77\x65\x6c\x6c\x20\x61\x73\x20\x77\x68\x65\x6e\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6d\x6f\x64\x75\x6c\x65\x73\x2e\x0a", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_run_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "run_module", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_run_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "run_path", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str__TempModule = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_TempModule", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[68]; - } -runpy_toplevel_consts_5_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 67, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Temporarily replace a module in sys.modules with an empty namespace", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_mod_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mod_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str__saved_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_saved_module", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -runpy_toplevel_consts_5_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_mod_name._ascii.ob_base, - & const_str_ModuleType._ascii.ob_base, - & const_str_module._ascii.ob_base, - & const_str__saved_module._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -runpy_toplevel_consts_5_consts_2_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -runpy_toplevel_consts_5_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_TempModule.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[39]; - } -runpy_toplevel_consts_5_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 38, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x18\x20\x88\x04\x8c\x0d\xdd\x16\x20\xa0\x18\xd1\x16\x2a\xd4\x16\x2a\x88\x04\x8c\x0b\xd8\x1d\x1f\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xd0\x08\x1a", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -runpy_toplevel_consts_5_consts_2_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_self._ascii.ob_base, - & const_str_mod_name._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(74) -runpy_toplevel_consts_5_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 37, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_5_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 28, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_5_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & runpy_toplevel_consts_5_consts_2_qualname._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_5_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x67\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -runpy_toplevel_consts_5_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_mod_name._ascii.ob_base, - & const_str__saved_module._ascii.ob_base, - &_Py_ID(append), - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str_KeyError._ascii.ob_base, - & const_str_module._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -runpy_toplevel_consts_5_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_TempModule.__enter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[99]; - } -runpy_toplevel_consts_5_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 98, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x13\x17\x94\x3d\x88\x08\xf0\x02\x03\x09\x11\xd8\x0c\x10\xd4\x0c\x1e\xd7\x0c\x25\xd2\x0c\x25\xa5\x63\xa4\x6b\xb0\x28\xd4\x26\x3b\xd1\x0c\x3c\xd4\x0c\x3c\xd0\x0c\x3c\xd0\x0c\x3c\xf8\xdd\x0f\x17\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xf0\x00\x01\x09\x11\xd8\x0c\x10\x88\x44\xf0\x03\x01\x09\x11\xf8\xf8\xf8\xe0\x20\x24\xa4\x0b\x8d\x03\x8c\x0b\x90\x48\xd1\x08\x1d\xd8\x0f\x13\x88\x0b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -runpy_toplevel_consts_5_consts_3_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\x89\x2a\x34\x00\xb4\x0a\x41\x01\x03\xc1\x00\x01\x41\x01\x03", -}; -static - struct _PyCode_DEF(180) -runpy_toplevel_consts_5_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 90, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_5_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = & runpy_toplevel_consts_5_consts_3_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 33, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_5_consts_2_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & runpy_toplevel_consts_5_consts_3_qualname._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_5_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x01\x09\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x10\x23\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x6e\x04\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x7c\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -runpy_toplevel_consts_5_consts_4_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str__saved_module._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str_mod_name._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -runpy_toplevel_consts_5_consts_4_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_TempModule.__exit__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -runpy_toplevel_consts_5_consts_4_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0f\xd4\x0b\x1d\xf0\x00\x03\x09\x2b\xd8\x29\x2d\xd4\x29\x3b\xb8\x41\xd4\x29\x3e\x8d\x43\x8c\x4b\x98\x04\x9c\x0d\xd1\x0c\x26\xd0\x0c\x26\xe5\x10\x13\x94\x0b\x98\x44\x9c\x4d\xd0\x10\x2a\xd8\x1d\x1f\x88\x04\xd4\x08\x1a\xd0\x08\x1a\xd0\x08\x1a", -}; -static - struct _PyCode_DEF(134) -runpy_toplevel_consts_5_consts_4 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 67, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_5_consts_4_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 42, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & runpy_toplevel_consts_5_consts_4_qualname._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_5_consts_4_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x72\x20\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x00\x00\x00\x6e\x12\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x3d\x00\x67\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -runpy_toplevel_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str__TempModule._ascii.ob_base, - & runpy_toplevel_consts_5_consts_1._ascii.ob_base, - & runpy_toplevel_consts_5_consts_2.ob_base.ob_base, - & runpy_toplevel_consts_5_consts_3.ob_base.ob_base, - & runpy_toplevel_consts_5_consts_4.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -runpy_toplevel_consts_5_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - &_Py_ID(__init__), - &_Py_ID(__enter__), - &_Py_ID(__exit__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[72]; - } -runpy_toplevel_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 71, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x4d\xd0\x04\x4d\xf0\x02\x03\x05\x20\xf0\x00\x03\x05\x20\xf0\x00\x03\x05\x20\xf0\x0a\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x00\x07\x05\x14\xf0\x12\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20\xf0\x00\x05\x05\x20", -}; -static - struct _PyCode_DEF(36) -runpy_toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & runpy_toplevel_consts_5_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_5_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 26, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__TempModule._ascii.ob_base, - .co_qualname = & const_str__TempModule._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x84\x00\x5a\x06\x64\x05\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str__ModifiedArgv0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModifiedArgv0", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str__saved_value = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_saved_value", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__sentinel = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_sentinel", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -runpy_toplevel_consts_7_consts_1_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_value._ascii.ob_base, - & const_str_object._ascii.ob_base, - & const_str__saved_value._ascii.ob_base, - & const_str__sentinel._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -runpy_toplevel_consts_7_consts_1_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModifiedArgv0.__init__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[33]; - } -runpy_toplevel_consts_7_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 32, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x15\x1a\x88\x04\x8c\x0a\xdd\x2d\x33\xa9\x58\xac\x58\xd0\x08\x35\x88\x04\xd4\x08\x19\x98\x44\x9c\x4e\x98\x4e\x98\x4e", -}; -static - struct _PyCode_DEF(72) -runpy_toplevel_consts_7_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 36, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_7_consts_1_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 50, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = &_Py_ID(__init__), - .co_qualname = & runpy_toplevel_consts_7_consts_1_qualname._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_7_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x01\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x01\x7c\x00\x5f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x03\x00\x00\x00\x00\x00\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[31]; - } -runpy_toplevel_consts_7_consts_2_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 30, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Already preserving saved value", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -runpy_toplevel_consts_7_consts_2_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - & runpy_toplevel_consts_7_consts_2_consts_1._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -runpy_toplevel_consts_7_consts_2_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str__saved_value._ascii.ob_base, - & const_str__sentinel._ascii.ob_base, - & const_str_RuntimeError._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_argv._ascii.ob_base, - & const_str_value._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -runpy_toplevel_consts_7_consts_2_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModifiedArgv0.__enter__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[65]; - } -runpy_toplevel_consts_7_consts_2_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 64, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x0b\x0f\xd4\x0b\x1c\xa0\x44\xa4\x4e\xd0\x0b\x32\xd0\x0b\x32\xdd\x12\x1e\xd0\x1f\x3f\xd1\x12\x40\xd4\x12\x40\xd0\x0c\x40\xdd\x1c\x1f\x9c\x48\xa0\x51\x9c\x4b\x88\x04\xd4\x08\x19\xd8\x16\x1a\x94\x6a\x8d\x03\x8c\x08\x90\x11\x89\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(150) -runpy_toplevel_consts_7_consts_2 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 75, - }, - .co_consts = & runpy_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_7_consts_2_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 54, - .co_nlocalsplus = 1, - .co_nlocals = 1, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_7_consts_6_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_characters[32]), - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = &_Py_ID(__enter__), - .co_qualname = & runpy_toplevel_consts_7_consts_2_qualname._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_7_consts_2_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x75\x01\x72\x0f\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x02\x3c\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -runpy_toplevel_consts_7_consts_3_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__sentinel._ascii.ob_base, - & const_str_value._ascii.ob_base, - & const_str__saved_value._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_argv._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -runpy_toplevel_consts_7_consts_3_qualname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_ModifiedArgv0.__exit__", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[30]; - } -runpy_toplevel_consts_7_consts_3_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 29, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x15\x19\x94\x5e\x88\x04\x8c\x0a\xd8\x16\x1a\xd4\x16\x27\x8d\x03\x8c\x08\x90\x11\x89\x0b\x88\x0b\x88\x0b", -}; -static - struct _PyCode_DEF(70) -runpy_toplevel_consts_7_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 35, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_7_consts_2_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_7_consts_3_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 7, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 60, - .co_nlocalsplus = 2, - .co_nlocals = 2, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & importlib__bootstrap_toplevel_consts_23_consts_5_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_7_consts_2_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = &_Py_ID(__exit__), - .co_qualname = & runpy_toplevel_consts_7_consts_3_qualname._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_7_consts_3_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x5f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x3c\x00\x00\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -runpy_toplevel_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & const_str__ModifiedArgv0._ascii.ob_base, - & runpy_toplevel_consts_7_consts_1.ob_base.ob_base, - & runpy_toplevel_consts_7_consts_2.ob_base.ob_base, - & runpy_toplevel_consts_7_consts_3.ob_base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[66]; - } -runpy_toplevel_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 65, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xf0\x02\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x00\x02\x05\x36\xf0\x08\x04\x05\x21\xf0\x00\x04\x05\x21\xf0\x00\x04\x05\x21\xf0\x0c\x02\x05\x28\xf0\x00\x02\x05\x28\xf0\x00\x02\x05\x28\xf0\x00\x02\x05\x28\xf0\x00\x02\x05\x28", -}; -static - struct _PyCode_DEF(32) -runpy_toplevel_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & runpy_toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & importlib__bootstrap_toplevel_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 49, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__ModifiedArgv0._ascii.ob_base, - .co_qualname = & const_str__ModifiedArgv0._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x84\x00\x5a\x03\x64\x02\x84\x00\x5a\x04\x64\x03\x84\x00\x5a\x05\x64\x04\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[42]; - } -runpy_toplevel_consts_9_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 41, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Helper to run code in nominated namespace", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -runpy_toplevel_consts_9_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__file__), - & const_str___cached__._ascii.ob_base, - &_Py_ID(__doc__), - &_Py_ID(__loader__), - &_Py_ID(__package__), - &_Py_ID(__spec__), - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -runpy_toplevel_consts_9_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & runpy_toplevel_consts_9_consts_0._ascii.ob_base, - Py_None, - & runpy_toplevel_consts_9_consts_2._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -runpy_toplevel_consts_9_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_update._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_origin._ascii.ob_base, - & const_str_cached._ascii.ob_base, - &_Py_ID(parent), - & const_str_exec._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str__run_code = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_run_code", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[161]; - } -runpy_toplevel_consts_9_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 160, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x08\x14\xd0\x07\x1f\xd8\x08\x13\xd7\x08\x1a\xd2\x08\x1a\x98\x3c\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd8\x07\x0f\xd0\x07\x17\xd8\x11\x15\x88\x06\xd8\x10\x1b\x88\x05\xd8\x11\x15\x88\x06\x88\x06\xe0\x11\x19\x94\x1f\x88\x06\xd8\x10\x18\x94\x0f\x88\x05\xd8\x11\x19\x94\x1f\x88\x06\xd8\x0b\x13\xd0\x0b\x1b\xd8\x17\x1f\x94\x7f\x88\x48\xd8\x04\x0f\xd7\x04\x16\xd2\x04\x16\xa0\x28\xd8\x22\x27\xd8\x24\x2a\xd8\x21\x25\xd8\x24\x2a\xd8\x25\x2d\xd8\x22\x2a\xf0\x0d\x00\x05\x17\xf1\x00\x06\x05\x2c\xf4\x00\x06\x05\x2c\xf0\x00\x06\x05\x2c\xf5\x0e\x00\x05\x09\x88\x14\x88\x7b\xd1\x04\x1b\xd4\x04\x1b\xd0\x04\x1b\xd8\x0b\x16\xd0\x04\x16", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_run_globals = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "run_globals", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_init_globals = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "init_globals", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_mod_spec = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mod_spec", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_pkg_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pkg_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_script_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "script_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[6]; - } -const_str_fname = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 5, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "fname", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -runpy_toplevel_consts_9_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - &_Py_ID(code), - & const_str_run_globals._ascii.ob_base, - & const_str_init_globals._ascii.ob_base, - & const_str_mod_name._ascii.ob_base, - & const_str_mod_spec._ascii.ob_base, - & const_str_pkg_name._ascii.ob_base, - & const_str_script_name._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_fname._ascii.ob_base, - & const_str_cached._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(218) -runpy_toplevel_consts_9 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 109, - }, - .co_consts = & runpy_toplevel_consts_9_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_9_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 7, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 9, - .co_firstlineno = 65, - .co_nlocalsplus = 10, - .co_nlocals = 10, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_9_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__run_code._ascii.ob_base, - .co_qualname = & const_str__run_code._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_9_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x81\x15\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x04\x80\x07\x64\x01\x7d\x07\x7c\x06\x7d\x08\x64\x01\x7d\x09\x6e\x1e\x7c\x04\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x7c\x04\x6a\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x7c\x04\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x09\x7c\x05\x80\x07\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x01\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x08\x7c\x09\x64\x01\x7c\x07\x7c\x05\x7c\x04\xac\x02\xa6\x07\x00\x00\xab\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x7c\x01\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[54]; - } -runpy_toplevel_consts_10_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 53, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Helper to run code in new namespace with sys modified", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -runpy_toplevel_consts_10_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & runpy_toplevel_consts_10_consts_0._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -runpy_toplevel_consts_10_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_origin._ascii.ob_base, - & const_str__TempModule._ascii.ob_base, - & const_str__ModifiedArgv0._ascii.ob_base, - & const_str_module._ascii.ob_base, - &_Py_ID(__dict__), - & const_str__run_code._ascii.ob_base, - &_Py_ID(copy), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str__run_module_code = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_run_module_code", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[279]; - } -runpy_toplevel_consts_10_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 278, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x08\x00\x1c\x24\xd0\x1b\x2b\x88\x4b\x88\x4b\xb0\x18\xb4\x1f\x80\x45\xdd\x09\x14\x90\x58\xd1\x09\x1e\xd4\x09\x1e\xf0\x00\x03\x05\x3d\xa0\x2b\xad\x7e\xb8\x65\xd1\x2f\x44\xd4\x2f\x44\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xd8\x16\x21\xd4\x16\x28\xd4\x16\x31\x88\x0b\xdd\x08\x11\x90\x24\x98\x0b\xa0\x5c\xd8\x12\x1a\x98\x48\xa0\x68\xb0\x0b\xf1\x03\x01\x09\x3d\xf4\x00\x01\x09\x3d\xf0\x00\x01\x09\x3d\xf0\x05\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf1\x00\x03\x05\x3d\xf4\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf8\xf8\xf8\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf1\x00\x03\x05\x3d\xf4\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf8\xf8\xf8\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x00\x03\x05\x3d\xf0\x0c\x00\x0c\x17\xd7\x0b\x1b\xd2\x0b\x1b\xd1\x0b\x1d\xd4\x0b\x1d\xd0\x04\x1d", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[53]; - } -runpy_toplevel_consts_10_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 52, - }, - .ob_shash = -1, - .ob_sval = "\x9b\x10\x41\x30\x03\xab\x22\x41\x19\x05\xc1\x0d\x0c\x41\x30\x03\xc1\x19\x04\x41\x1d\x09\xc1\x1d\x03\x41\x30\x03\xc1\x20\x01\x41\x1d\x09\xc1\x21\x03\x41\x30\x03\xc1\x30\x04\x41\x34\x07\xc1\x37\x01\x41\x34\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_temp_module = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "temp_module", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_mod_globals = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "mod_globals", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[9]; - }_object; - } -runpy_toplevel_consts_10_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 9, - }, - .ob_item = { - &_Py_ID(code), - & const_str_init_globals._ascii.ob_base, - & const_str_mod_name._ascii.ob_base, - & const_str_mod_spec._ascii.ob_base, - & const_str_pkg_name._ascii.ob_base, - & const_str_script_name._ascii.ob_base, - & const_str_fname._ascii.ob_base, - & const_str_temp_module._ascii.ob_base, - & const_str_mod_globals._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(286) -runpy_toplevel_consts_10 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 143, - }, - .co_consts = & runpy_toplevel_consts_10_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_10_names._object.ob_base.ob_base, - .co_exceptiontable = & runpy_toplevel_consts_10_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 6, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 11, - .co_firstlineno = 91, - .co_nlocalsplus = 9, - .co_nlocals = 9, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_10_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_57_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__run_module_code._ascii.ob_base, - .co_qualname = & const_str__run_module_code._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_10_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x03\x80\x02\x7c\x05\x6e\x06\x7c\x03\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x07\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x06\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x07\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x74\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x08\x7c\x01\x7c\x02\x7c\x03\x7c\x04\x7c\x05\xa6\x07\x00\x00\xab\x07\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x08\xa0\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[36]; - } -runpy_toplevel_consts_11_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 35, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Relative module names not supported", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -runpy_toplevel_consts_11_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_warn._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[155]; - } -runpy_toplevel_consts_11_consts_6 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 154, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "{mod_name!r} found in sys.modules after import of package {pkg_name!r}, but prior to execution of {mod_name!r}; this may result in unpredictable behaviour", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -runpy_toplevel_consts_11_consts_7 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_mod_name._ascii.ob_base, - & const_str_pkg_name._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[59]; - } -runpy_toplevel_consts_11_consts_8 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 58, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Error while finding module specification for {!r} ({}: {})", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -runpy_toplevel_consts_11_consts_10 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ". Try using '", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -runpy_toplevel_consts_11_consts_12 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "' instead of '", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[22]; - } -runpy_toplevel_consts_11_consts_13 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 21, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "' as the module name.", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -runpy_toplevel_consts_11_consts_14 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "No module named %s", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -runpy_toplevel_consts_11_consts_16 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = ".__main__", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[38]; - } -runpy_toplevel_consts_11_consts_17 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 37, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Cannot use package as __main__ module", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[3]; - } -runpy_toplevel_consts_11_consts_18 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 2, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "; ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[46]; - } -runpy_toplevel_consts_11_consts_19 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 45, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " is a package and cannot be directly executed", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[49]; - } -runpy_toplevel_consts_11_consts_20 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 48, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "%r is a namespace package and cannot be executed", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[32]; - } -runpy_toplevel_consts_11_consts_21 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 31, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "No code object available for %s", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[22]; - }_object; - } -runpy_toplevel_consts_11_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 22, - }, - .ob_item = { - Py_None, - &_Py_STR(dot), - & runpy_toplevel_consts_11_consts_2._ascii.ob_base, - &_Py_ID(__path__), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & runpy_toplevel_consts_11_consts_5._object.ob_base.ob_base, - & runpy_toplevel_consts_11_consts_6._ascii.ob_base, - & runpy_toplevel_consts_11_consts_7._object.ob_base.ob_base, - & runpy_toplevel_consts_11_consts_8._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_39_consts_7_consts_12._ascii.ob_base, - & runpy_toplevel_consts_11_consts_10._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + -3], - & runpy_toplevel_consts_11_consts_12._ascii.ob_base, - & runpy_toplevel_consts_11_consts_13._ascii.ob_base, - & runpy_toplevel_consts_11_consts_14._ascii.ob_base, - &_Py_ID(__main__), - & runpy_toplevel_consts_11_consts_16._ascii.ob_base, - & runpy_toplevel_consts_11_consts_17._ascii.ob_base, - & runpy_toplevel_consts_11_consts_18._ascii.ob_base, - & runpy_toplevel_consts_11_consts_19._ascii.ob_base, - & runpy_toplevel_consts_11_consts_20._ascii.ob_base, - & runpy_toplevel_consts_11_consts_21._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -const_str_RuntimeWarning = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "RuntimeWarning", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[5]; - } -const_str_util = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 4, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "util", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str__get_module_details = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_module_details", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[26]; - }_object; - } -runpy_toplevel_consts_11_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 26, - }, - .ob_item = { - & const_str_startswith._ascii.ob_base, - & const_str_rpartition._ascii.ob_base, - &_Py_ID(__import__), - & const_str_ImportError._ascii.ob_base, - &_Py_ID(name), - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - &_Py_ID(get), - & const_str_hasattr._ascii.ob_base, - &_Py_ID(warnings), - & const_str_warn._ascii.ob_base, - & const_str_format._ascii.ob_base, - & const_str_RuntimeWarning._ascii.ob_base, - &_Py_ID(importlib), - & const_str_util._ascii.ob_base, - & const_str_find_spec._ascii.ob_base, - & const_str_AttributeError._ascii.ob_base, - & const_str_TypeError._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - & const_str_endswith._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__name__), - & const_str_submodule_search_locations._ascii.ob_base, - & const_str__get_module_details._ascii.ob_base, - & const_str_loader._ascii.ob_base, - & const_str_get_code._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[877]; - } -runpy_toplevel_consts_11_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 876, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xd8\x07\x0f\xd7\x07\x1a\xd2\x07\x1a\x98\x33\xd1\x07\x1f\xd4\x07\x1f\xf0\x00\x01\x05\x3b\xd8\x0e\x13\x88\x65\xd0\x14\x39\xd1\x0e\x3a\xd4\x0e\x3a\xd0\x08\x3a\xd8\x15\x1d\xd7\x15\x28\xd2\x15\x28\xa8\x13\xd1\x15\x2d\xd4\x15\x2d\x81\x4e\x80\x48\x88\x61\x90\x11\xd8\x07\x0f\xf0\x00\x13\x05\x26\xf0\x04\x08\x09\x16\xdd\x0c\x16\x90\x78\xd1\x0c\x20\xd4\x0c\x20\xd0\x0c\x20\xd0\x0c\x20\xf8\xdd\x0f\x1a\xf0\x00\x06\x09\x16\xf0\x00\x06\x09\x16\xf0\x00\x06\x09\x16\xf0\x08\x00\x10\x11\x8c\x76\x88\x7e\xa0\x21\xa4\x26\xa8\x48\xd2\x22\x34\xd0\x22\x34\xd8\x18\x20\xd7\x18\x2b\xd2\x18\x2b\xa8\x41\xac\x46\xb0\x53\xa9\x4c\xd1\x18\x39\xd4\x18\x39\xf0\x03\x00\x23\x35\xe0\x10\x15\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf0\x0d\x06\x09\x16\xf8\xf8\xf8\xf5\x10\x00\x14\x17\x94\x3b\x97\x3f\x92\x3f\xa0\x38\xd1\x13\x2c\xd4\x13\x2c\x88\x08\xd8\x0b\x13\xd0\x0b\x1f\xad\x07\xb0\x08\xb8\x2a\xd1\x28\x45\xd4\x28\x45\xd0\x0b\x1f\xd8\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xd0\x0c\x25\xf0\x02\x03\x13\x1c\xf7\x06\x00\x1d\x23\x9a\x46\xa8\x48\xb8\x78\x98\x46\xd1\x1c\x48\xd4\x1c\x48\xf0\x07\x00\x0d\x10\xf0\x08\x00\x0d\x11\x88\x44\x95\x1e\xa0\x03\xd1\x11\x24\xd4\x11\x24\xd1\x0c\x25\xd4\x0c\x25\xd0\x0c\x25\xf0\x04\x0a\x05\x49\x01\xdd\x0f\x18\x8c\x7e\xd7\x0f\x27\xd2\x0f\x27\xa8\x08\xd1\x0f\x31\xd4\x0f\x31\x88\x04\x88\x04\xf8\xdd\x0c\x17\x9d\x1e\xad\x19\xb5\x4a\xd0\x0b\x3f\xf0\x00\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x00\x08\x05\x49\x01\xf0\x08\x00\x0f\x4b\x01\x88\x03\xd8\x0b\x13\xd7\x0b\x1c\xd2\x0b\x1c\x98\x55\xd1\x0b\x23\xd4\x0b\x23\xf0\x00\x02\x09\x39\xd8\x0c\x0f\xf0\x00\x01\x15\x38\xa0\x48\xa8\x53\xa8\x62\xa8\x53\xa4\x4d\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xd8\x18\x20\xf0\x03\x01\x15\x38\xf0\x00\x01\x15\x38\xf0\x00\x01\x15\x38\xf1\x00\x01\x0d\x39\x88\x43\xe0\x0e\x13\x88\x65\x90\x43\x97\x4a\x92\x4a\x98\x78\xad\x14\xa8\x62\xa9\x18\xac\x18\xd4\x29\x3a\xb8\x42\xd1\x14\x3f\xd4\x14\x3f\xd1\x0e\x40\xd4\x0e\x40\xc0\x62\xd0\x08\x48\xf8\xf8\xf8\xf8\xf0\x11\x08\x05\x49\x01\xf8\xf8\xf8\xf0\x12\x00\x08\x0c\x80\x7c\xd8\x0e\x13\x88\x65\xd0\x14\x28\xa8\x38\xd1\x14\x33\xd1\x0e\x34\xd4\x0e\x34\xd0\x08\x34\xd8\x07\x0b\xd4\x07\x26\xd0\x07\x32\xd8\x0b\x13\x90\x7a\xd2\x0b\x21\xd0\x0b\x21\xa0\x58\xd7\x25\x36\xd2\x25\x36\xb0\x7b\xd1\x25\x43\xd4\x25\x43\xd0\x0b\x21\xd8\x12\x17\x90\x25\xd0\x18\x3f\xd1\x12\x40\xd4\x12\x40\xd0\x0c\x40\xf0\x02\x07\x09\x47\x01\xd8\x1c\x24\xa0\x7b\xd1\x1c\x32\x88\x4d\xdd\x13\x26\xa0\x7d\xb0\x65\xd1\x13\x3c\xd4\x13\x3c\xd0\x0c\x3c\xf8\xd8\x0f\x14\xf0\x00\x04\x09\x47\x01\xf0\x00\x04\x09\x47\x01\xf0\x00\x04\x09\x47\x01\xd8\x0f\x17\x9d\x73\x9c\x7b\xd0\x0f\x2a\xd0\x0f\x2a\xd8\x10\x15\xd8\x12\x17\x90\x25\xd8\x39\x3a\xb8\x11\xb8\x11\xb8\x48\xb8\x48\xb8\x48\xf0\x03\x01\x19\x46\x01\xf1\x00\x01\x13\x47\x01\xf4\x00\x01\x13\x47\x01\xf0\x00\x01\x0d\x47\x01\xf8\xf8\xf8\xf8\xf0\x07\x04\x09\x47\x01\xf8\xf8\xf8\xf0\x0a\x00\x0e\x12\x8c\x5b\x80\x46\xd8\x07\x0d\x80\x7e\xd8\x0e\x13\x88\x65\xd0\x14\x46\xd8\x43\x4b\xf1\x03\x01\x15\x4c\x01\xf1\x00\x01\x0f\x4d\x01\xf4\x00\x01\x0f\x4d\x01\xf0\x00\x01\x09\x4d\x01\xf0\x04\x03\x05\x26\xd8\x0f\x15\x8f\x7f\x8a\x7f\x98\x78\xd1\x0f\x28\xd4\x0f\x28\x88\x04\x88\x04\xf8\xdd\x0b\x16\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xf0\x00\x01\x05\x26\xd8\x0e\x13\x88\x65\x95\x46\x98\x31\x91\x49\x94\x49\xd1\x0e\x1e\xd4\x0e\x1e\xa0\x41\xd0\x08\x25\xf8\xf8\xf8\xf8\xf0\x03\x01\x05\x26\xf8\xf8\xf8\xe0\x07\x0b\x80\x7c\xd8\x0e\x13\x88\x65\xd0\x14\x35\xb8\x08\xd1\x14\x40\xd1\x0e\x41\xd4\x0e\x41\xd0\x08\x41\xd8\x0b\x13\x90\x54\x98\x34\xd0\x0b\x1f\xd0\x04\x1f", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[97]; - } -runpy_toplevel_consts_11_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 96, - }, - .ob_shash = -1, - .ob_sval = "\xbd\x0f\x41\x0d\x00\xc1\x0d\x0a\x42\x11\x03\xc1\x17\x30\x42\x0c\x03\xc2\x0c\x05\x42\x11\x03\xc3\x3b\x1f\x44\x1b\x00\xc4\x1b\x1d\x46\x1b\x03\xc4\x38\x41\x1e\x46\x16\x03\xc6\x16\x05\x46\x1b\x03\xc7\x1c\x14\x47\x31\x00\xc7\x31\x05\x48\x1b\x03\xc7\x36\x20\x48\x16\x03\xc8\x16\x05\x48\x1b\x03\xc8\x36\x15\x49\x0c\x00\xc9\x0c\x0a\x49\x34\x03\xc9\x16\x19\x49\x2f\x03\xc9\x2f\x05\x49\x34\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_existing = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "existing", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[14]; - } -const_str_pkg_main_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 13, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pkg_main_name", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -runpy_toplevel_consts_11_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_mod_name._ascii.ob_base, - & const_str_error._ascii.ob_base, - & const_str_pkg_name._ascii.ob_base, - &_Py_ID(_), - & const_str_e._ascii.ob_base, - & const_str_existing._ascii.ob_base, - & const_str_warn._ascii.ob_base, - &_Py_ID(msg), - & const_str_spec._ascii.ob_base, - & const_str_ex._ascii.ob_base, - & const_str_pkg_main_name._ascii.ob_base, - & const_str_loader._ascii.ob_base, - &_Py_ID(code), - }, - }, -}; -static - struct _PyCode_DEF(1304) -runpy_toplevel_consts_11 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 652, - }, - .co_consts = & runpy_toplevel_consts_11_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_11_names._object.ob_base.ob_base, - .co_exceptiontable = & runpy_toplevel_consts_11_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 9, - .co_firstlineno = 105, - .co_nlocalsplus = 13, - .co_nlocals = 13, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_11_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__get_module_details._ascii.ob_base, - .co_qualname = & const_str__get_module_details._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_11_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0b\x02\x00\x7c\x01\x64\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\xa0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x02\x7d\x03\x7d\x03\x7c\x02\x72\xbe\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x47\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x3a\x7d\x04\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x81\x28\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x6b\x03\x00\x00\x00\x00\x72\x1e\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x7a\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x73\x01\x82\x00\x59\x00\x64\x00\x7d\x04\x7e\x04\x6e\x08\x64\x00\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x7c\x05\x81\x45\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x64\x03\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x35\x64\x04\x64\x05\x6c\x09\x6d\x0a\x7d\x06\x01\x00\x64\x06\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x7c\x02\xac\x07\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x07\x02\x00\x7c\x06\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x08\x6e\x83\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x66\x04\x24\x00\x72\x63\x7d\x09\x64\x08\x7d\x07\x7c\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x14\x7c\x07\x64\x0a\x7c\x00\x64\x00\x64\x0b\x85\x02\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x00\x64\x0c\x7c\x00\x9b\x00\x64\x0d\x9d\x05\x7a\x0d\x00\x00\x7d\x07\x02\x00\x7c\x01\x7c\x07\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x29\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x15\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x09\x82\x02\x64\x00\x7d\x09\x7e\x09\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x08\x80\x0e\x02\x00\x7c\x01\x64\x0e\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x08\x6a\x16\x00\x00\x00\x00\x00\x00\x00\x00\x81\x69\x7c\x00\x64\x0f\x6b\x02\x00\x00\x00\x00\x73\x15\x7c\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x10\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x72\x0b\x02\x00\x7c\x01\x64\x11\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x7c\x00\x64\x10\x7a\x00\x00\x00\x7d\x0a\x74\x2f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x0a\x7c\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x23\x00\x7c\x01\x24\x00\x72\x25\x7d\x04\x7c\x00\x74\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x76\x01\x72\x01\x82\x00\x02\x00\x7c\x01\x7c\x04\x9b\x01\x64\x12\x7c\x00\x9b\x02\x64\x13\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x64\x00\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x08\x6a\x18\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0b\x7c\x0b\x80\x0e\x02\x00\x7c\x01\x64\x14\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x09\x00\x7c\x0b\xa0\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x6e\x2b\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x1e\x7d\x04\x02\x00\x7c\x01\x74\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\x82\x02\x64\x00\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x7c\x0c\x80\x0e\x02\x00\x7c\x01\x64\x15\x7c\x00\x7a\x06\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x82\x01\x7c\x00\x7c\x08\x7c\x0c\x66\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[7]; - } -const_str__Error = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 6, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_Error", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[67]; - } -runpy_toplevel_consts_12_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 66, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Error that _run_module_as_main() should report without a traceback", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -runpy_toplevel_consts_12_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str__Error._ascii.ob_base, - & runpy_toplevel_consts_12_consts_1._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -runpy_toplevel_consts_12_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - &_Py_ID(__name__), - &_Py_ID(__module__), - &_Py_ID(__qualname__), - &_Py_ID(__doc__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -runpy_toplevel_consts_12_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x4c\xd0\x04\x4c\xd0\x04\x4c\xd0\x04\x4c", -}; -static - struct _PyCode_DEF(18) -runpy_toplevel_consts_12 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 9, - }, - .co_consts = & runpy_toplevel_consts_12_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 166, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__Error._ascii.ob_base, - .co_qualname = & const_str__Error._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_12_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[454]; - } -runpy_toplevel_consts_15_consts_0 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 453, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "\x52\x75\x6e\x73\x20\x74\x68\x65\x20\x64\x65\x73\x69\x67\x6e\x61\x74\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x5f\x5f\x6d\x61\x69\x6e\x5f\x5f\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x4e\x6f\x74\x65\x20\x74\x68\x61\x74\x20\x74\x68\x65\x20\x65\x78\x65\x63\x75\x74\x65\x64\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x68\x61\x76\x65\x20\x66\x75\x6c\x6c\x20\x61\x63\x63\x65\x73\x73\x20\x74\x6f\x20\x74\x68\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x6d\x61\x69\x6e\x5f\x5f\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x6e\x6f\x74\x20\x64\x65\x73\x69\x72\x61\x62\x6c\x65\x2c\x20\x74\x68\x65\x20\x72\x75\x6e\x5f\x6d\x6f\x64\x75\x6c\x65\x28\x29\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x75\x73\x65\x64\x20\x74\x6f\x20\x72\x75\x6e\x20\x74\x68\x65\x20\x6d\x6f\x64\x75\x6c\x65\x20\x63\x6f\x64\x65\x20\x69\x6e\x20\x61\x20\x66\x72\x65\x73\x68\x20\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x2e\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x41\x74\x20\x74\x68\x65\x20\x76\x65\x72\x79\x20\x6c\x65\x61\x73\x74\x2c\x20\x74\x68\x65\x73\x65\x20\x76\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x69\x6e\x20\x5f\x5f\x6d\x61\x69\x6e\x5f\x5f\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6f\x76\x65\x72\x77\x72\x69\x74\x74\x65\x6e\x3a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x6e\x61\x6d\x65\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x66\x69\x6c\x65\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x63\x61\x63\x68\x65\x64\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x6c\x6f\x61\x64\x65\x72\x5f\x5f\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x5f\x5f\x70\x61\x63\x6b\x61\x67\x65\x5f\x5f\x0a\x20\x20\x20\x20", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -runpy_toplevel_consts_15_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - & runpy_toplevel_consts_15_consts_0._ascii.ob_base, - &_Py_ID(__main__), - & importlib__bootstrap_external_toplevel_consts_43_consts_4._ascii.ob_base, - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -const_str__get_main_module_details = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_main_module_details", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -runpy_toplevel_consts_15_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & const_str__get_module_details._ascii.ob_base, - & const_str__Error._ascii.ob_base, - & const_str__get_main_module_details._ascii.ob_base, - & const_str_sys._ascii.ob_base, - & const_str_executable._ascii.ob_base, - & const_str_exit._ascii.ob_base, - &_Py_ID(modules), - &_Py_ID(__dict__), - & const_str_origin._ascii.ob_base, - & const_str_argv._ascii.ob_base, - & const_str__run_code._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str__run_module_as_main = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_run_module_as_main", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[211]; - } -runpy_toplevel_consts_15_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 210, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x1c\x07\x05\x16\xd8\x0b\x15\xf0\x00\x03\x09\x48\x01\x98\x18\xa0\x5a\xd2\x19\x2f\xd0\x19\x2f\xdd\x27\x3a\xb8\x38\xc5\x56\xd1\x27\x4c\xd4\x27\x4c\xd1\x0c\x24\x88\x48\x90\x68\xa0\x04\xa0\x04\xe5\x27\x3f\xc5\x06\xd1\x27\x47\xd4\x27\x47\xd1\x0c\x24\x88\x48\x90\x68\xa0\x04\xf8\xf8\xdd\x0b\x11\xf0\x00\x02\x05\x16\xf0\x00\x02\x05\x16\xf0\x00\x02\x05\x16\xdd\x1a\x1d\x9c\x2e\x98\x2e\x98\x2e\xa8\x23\xa8\x23\xd0\x0e\x2e\x88\x03\xdd\x08\x0b\x8c\x08\x90\x13\x89\x0d\x8c\x0d\x88\x0d\x88\x0d\x88\x0d\x88\x0d\x88\x0d\x88\x0d\xf8\xf8\xf8\xf8\xf0\x05\x02\x05\x16\xf8\xf8\xf8\xf5\x06\x00\x14\x17\x94\x3b\x98\x7a\xd4\x13\x2a\xd4\x13\x33\x80\x4c\xd8\x07\x11\xf0\x00\x01\x05\x26\xd8\x16\x1e\x94\x6f\x8d\x03\x8c\x08\x90\x11\x89\x0b\xdd\x0b\x14\x90\x54\x98\x3c\xa8\x14\xd8\x15\x1f\xa0\x18\xf1\x03\x01\x0c\x2b\xf4\x00\x01\x0c\x2b\xf0\x00\x01\x05\x2b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[22]; - } -runpy_toplevel_consts_15_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 21, - }, - .ob_shash = -1, - .ob_sval = "\x82\x3a\x3d\x00\xbd\x0a\x41\x36\x03\xc1\x07\x25\x41\x31\x03\xc1\x31\x05\x41\x36\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_alter_argv = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "alter_argv", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_main_globals = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "main_globals", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[7]; - }_object; - } -runpy_toplevel_consts_15_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 7, - }, - .ob_item = { - & const_str_mod_name._ascii.ob_base, - & const_str_alter_argv._ascii.ob_base, - & const_str_mod_spec._ascii.ob_base, - &_Py_ID(code), - & const_str_exc._ascii.ob_base, - &_Py_ID(msg), - & const_str_main_globals._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(370) -runpy_toplevel_consts_15 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 185, - }, - .co_consts = & runpy_toplevel_consts_15_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_15_names._object.ob_base.ob_base, - .co_exceptiontable = & runpy_toplevel_consts_15_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 173, - .co_nlocalsplus = 7, - .co_nlocals = 7, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_15_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_39_consts_12_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__run_module_as_main._ascii.ob_base, - .co_qualname = & const_str__run_module_as_main._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_15_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x09\x00\x7c\x01\x73\x06\x7c\x00\x64\x01\x6b\x03\x00\x00\x00\x00\x72\x1a\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x00\x7d\x02\x7d\x03\x6e\x18\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x00\x7d\x02\x7d\x03\x6e\x3c\x23\x00\x74\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x2f\x7d\x04\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x01\x64\x02\x7c\x04\x9b\x01\x9d\x03\x7d\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x59\x00\x64\x03\x7d\x04\x7e\x04\x6e\x08\x64\x03\x7d\x04\x7e\x04\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x06\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x06\x7c\x01\x72\x14\x7c\x02\x6a\x08\x00\x00\x00\x00\x00\x00\x00\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x09\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x3c\x00\x00\x00\x74\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x7c\x06\x64\x03\x64\x01\x7c\x02\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyCompactUnicodeObject _compact; - uint16_t _data[801]; - } -runpy_toplevel_consts_17_consts_0 = { - ._compact = { - ._base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 800, - .hash = -1, - .state = { - .kind = 2, - .compact = 1, - .ascii = 0, - .ready = 1, - }, - }, - }, - ._data = { - 69, 120, 101, 99, 117, 116, 101, 32, 97, 32, 109, 111, 100, 117, 108, 101, - 39, 115, 32, 99, 111, 100, 101, 32, 119, 105, 116, 104, 111, 117, 116, 32, - 105, 109, 112, 111, 114, 116, 105, 110, 103, 32, 105, 116, 46, 10, 10, 32, - 32, 32, 32, 32, 32, 32, 109, 111, 100, 95, 110, 97, 109, 101, 32, 45, - 45, 32, 97, 110, 32, 97, 98, 115, 111, 108, 117, 116, 101, 32, 109, 111, - 100, 117, 108, 101, 32, 110, 97, 109, 101, 32, 111, 114, 32, 112, 97, 99, - 107, 97, 103, 101, 32, 110, 97, 109, 101, 46, 10, 10, 32, 32, 32, 32, - 32, 32, 32, 79, 112, 116, 105, 111, 110, 97, 108, 32, 97, 114, 103, 117, - 109, 101, 110, 116, 115, 58, 10, 32, 32, 32, 32, 32, 32, 32, 105, 110, - 105, 116, 95, 103, 108, 111, 98, 97, 108, 115, 32, 45, 45, 32, 100, 105, - 99, 116, 105, 111, 110, 97, 114, 121, 32, 117, 115, 101, 100, 32, 116, 111, - 32, 112, 114, 101, 45, 112, 111, 112, 117, 108, 97, 116, 101, 32, 116, 104, - 101, 32, 109, 111, 100, 117, 108, 101, 8217, 115, 10, 32, 32, 32, 32, 32, - 32, 32, 103, 108, 111, 98, 97, 108, 115, 32, 100, 105, 99, 116, 105, 111, - 110, 97, 114, 121, 32, 98, 101, 102, 111, 114, 101, 32, 116, 104, 101, 32, - 99, 111, 100, 101, 32, 105, 115, 32, 101, 120, 101, 99, 117, 116, 101, 100, - 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 114, 117, 110, 95, 110, 97, - 109, 101, 32, 45, 45, 32, 105, 102, 32, 110, 111, 116, 32, 78, 111, 110, - 101, 44, 32, 116, 104, 105, 115, 32, 119, 105, 108, 108, 32, 98, 101, 32, - 117, 115, 101, 100, 32, 102, 111, 114, 32, 115, 101, 116, 116, 105, 110, 103, - 32, 95, 95, 110, 97, 109, 101, 95, 95, 59, 10, 32, 32, 32, 32, 32, - 32, 32, 111, 116, 104, 101, 114, 119, 105, 115, 101, 44, 32, 95, 95, 110, - 97, 109, 101, 95, 95, 32, 119, 105, 108, 108, 32, 98, 101, 32, 115, 101, - 116, 32, 116, 111, 32, 109, 111, 100, 95, 110, 97, 109, 101, 32, 43, 32, - 39, 95, 95, 109, 97, 105, 110, 95, 95, 39, 32, 105, 102, 32, 116, 104, - 101, 10, 32, 32, 32, 32, 32, 32, 32, 110, 97, 109, 101, 100, 32, 109, - 111, 100, 117, 108, 101, 32, 105, 115, 32, 97, 32, 112, 97, 99, 107, 97, - 103, 101, 32, 97, 110, 100, 32, 116, 111, 32, 106, 117, 115, 116, 32, 109, - 111, 100, 95, 110, 97, 109, 101, 32, 111, 116, 104, 101, 114, 119, 105, 115, - 101, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 97, 108, 116, 101, 114, - 95, 115, 121, 115, 32, 45, 45, 32, 105, 102, 32, 84, 114, 117, 101, 44, - 32, 115, 121, 115, 46, 97, 114, 103, 118, 91, 48, 93, 32, 105, 115, 32, - 117, 112, 100, 97, 116, 101, 100, 32, 119, 105, 116, 104, 32, 116, 104, 101, - 32, 118, 97, 108, 117, 101, 32, 111, 102, 10, 32, 32, 32, 32, 32, 32, - 32, 95, 95, 102, 105, 108, 101, 95, 95, 32, 97, 110, 100, 32, 115, 121, - 115, 46, 109, 111, 100, 117, 108, 101, 115, 91, 95, 95, 110, 97, 109, 101, - 95, 95, 93, 32, 105, 115, 32, 117, 112, 100, 97, 116, 101, 100, 32, 119, - 105, 116, 104, 32, 97, 32, 116, 101, 109, 112, 111, 114, 97, 114, 121, 10, - 32, 32, 32, 32, 32, 32, 32, 109, 111, 100, 117, 108, 101, 32, 111, 98, - 106, 101, 99, 116, 32, 102, 111, 114, 32, 116, 104, 101, 32, 109, 111, 100, - 117, 108, 101, 32, 98, 101, 105, 110, 103, 32, 101, 120, 101, 99, 117, 116, - 101, 100, 46, 32, 66, 111, 116, 104, 32, 97, 114, 101, 10, 32, 32, 32, - 32, 32, 32, 32, 114, 101, 115, 116, 111, 114, 101, 100, 32, 116, 111, 32, - 116, 104, 101, 105, 114, 32, 111, 114, 105, 103, 105, 110, 97, 108, 32, 118, - 97, 108, 117, 101, 115, 32, 98, 101, 102, 111, 114, 101, 32, 116, 104, 101, - 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 114, 101, 116, 117, 114, 110, - 115, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 82, 101, 116, 117, 114, - 110, 115, 32, 116, 104, 101, 32, 114, 101, 115, 117, 108, 116, 105, 110, 103, - 32, 109, 111, 100, 117, 108, 101, 32, 103, 108, 111, 98, 97, 108, 115, 32, - 100, 105, 99, 116, 105, 111, 110, 97, 114, 121, 46, 10, 32, 32, 32, 32, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -runpy_toplevel_consts_17_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & runpy_toplevel_consts_17_consts_0._compact._base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -runpy_toplevel_consts_17_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str__get_module_details._ascii.ob_base, - & const_str__run_module_code._ascii.ob_base, - & const_str__run_code._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[89]; - } -runpy_toplevel_consts_17_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 88, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf5\x2a\x00\x20\x33\xb0\x38\xd1\x1f\x3c\xd4\x1f\x3c\xd1\x04\x1c\x80\x48\x88\x68\x98\x04\xd8\x07\x0f\xd0\x07\x17\xd8\x13\x1b\x88\x08\xd8\x07\x10\xf0\x00\x04\x05\x45\x01\xdd\x0f\x1f\xa0\x04\xa0\x6c\xb0\x48\xb8\x68\xd1\x0f\x47\xd4\x0f\x47\xd0\x08\x47\xf5\x06\x00\x10\x19\x98\x14\x98\x72\xa0\x3c\xb0\x18\xb8\x38\xd1\x0f\x44\xd4\x0f\x44\xd0\x08\x44", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_run_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "run_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_alter_sys = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "alter_sys", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -runpy_toplevel_consts_17_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_mod_name._ascii.ob_base, - & const_str_init_globals._ascii.ob_base, - & const_str_run_name._ascii.ob_base, - & const_str_alter_sys._ascii.ob_base, - & const_str_mod_spec._ascii.ob_base, - &_Py_ID(code), - }, - }, -}; -static - struct _PyCode_DEF(126) -runpy_toplevel_consts_17 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 63, - }, - .co_consts = & runpy_toplevel_consts_17_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_17_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 4, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 7, - .co_firstlineno = 201, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_17_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str_run_module._ascii.ob_base, - .co_qualname = & const_str_run_module._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_17_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x00\x7d\x04\x7d\x05\x7c\x02\x80\x02\x7c\x00\x7d\x02\x7c\x03\x72\x12\x74\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x7c\x01\x7c\x02\x7c\x04\xa6\x04\x00\x00\xab\x04\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x69\x00\x7c\x01\x7c\x02\x7c\x04\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -runpy_toplevel_consts_18_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "can't find ", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -runpy_toplevel_consts_18_consts_3 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = " module in ", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[5]; - }_object; - } -runpy_toplevel_consts_18_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 5, - }, - .ob_item = { - Py_None, - &_Py_ID(__main__), - & runpy_toplevel_consts_18_consts_2._ascii.ob_base, - & runpy_toplevel_consts_18_consts_3._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -runpy_toplevel_consts_18_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_sys._ascii.ob_base, - &_Py_ID(modules), - & const_str__get_module_details._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str_str._ascii.ob_base, - &_Py_ID(path), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[193]; - } -runpy_toplevel_consts_18_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 192, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x0a\x00\x11\x1b\x80\x49\xdd\x11\x14\x94\x1b\x98\x59\xd4\x11\x27\x80\x4a\xdd\x08\x0b\x8c\x0b\x90\x49\xd0\x08\x1e\xf0\x02\x08\x05\x2c\xdd\x0f\x22\xa0\x39\xd1\x0f\x2d\xd4\x0f\x2d\xf0\x0e\x00\x22\x2c\x8d\x03\x8c\x0b\x90\x49\xd1\x08\x1e\xd0\x08\x1e\xf8\xf5\x0d\x00\x0c\x17\xf0\x00\x04\x05\x0e\xf0\x00\x04\x05\x0e\xf0\x00\x04\x05\x0e\xd8\x0b\x14\x9d\x03\x98\x43\x99\x08\x9c\x08\xd0\x0b\x20\xd0\x0b\x20\xd8\x12\x17\x90\x25\x90\x25\xd8\x1f\x28\x98\x79\x98\x79\xad\x23\xac\x28\xb0\x31\xac\x2b\xa8\x2b\xf0\x03\x01\x19\x37\xf1\x00\x01\x13\x38\xf4\x00\x01\x13\x38\xd8\x3d\x40\xf0\x03\x01\x0d\x41\x01\xe0\x08\x0d\xf8\xf8\xf8\xf8\xf0\x09\x04\x05\x0e\xf8\xf8\xf8\xf8\xf0\x0c\x00\x22\x2c\x8d\x03\x8c\x0b\x90\x49\xd1\x08\x1e\xd0\x08\x2b\xd0\x08\x2b\xd0\x08\x2b\xd0\x08\x2b", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[36]; - } -runpy_toplevel_consts_18_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 35, - }, - .ob_shash = -1, - .ob_sval = "\xa3\x0e\x41\x01\x00\xc1\x01\x0a\x42\x04\x03\xc1\x0b\x34\x41\x3f\x03\xc1\x3f\x05\x42\x04\x03\xc2\x04\x03\x42\x07\x00\xc2\x07\x11\x42\x18\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_main_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "main_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -const_str_saved_main = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "saved_main", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -runpy_toplevel_consts_18_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - & const_str_error._ascii.ob_base, - & const_str_main_name._ascii.ob_base, - & const_str_saved_main._ascii.ob_base, - & const_str_exc._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(310) -runpy_toplevel_consts_18 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 155, - }, - .co_consts = & runpy_toplevel_consts_18_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_18_names._object.ob_base.ob_base, - .co_exceptiontable = & runpy_toplevel_consts_18_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 1, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 8, - .co_firstlineno = 231, - .co_nlocalsplus = 4, - .co_nlocals = 4, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_18_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_33_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__get_main_module_details._ascii.ob_base, - .co_qualname = & const_str__get_main_module_details._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_18_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x7d\x01\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3d\x00\x09\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x53\x00\x23\x00\x74\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x39\x7d\x03\x7c\x01\x74\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x76\x00\x72\x22\x02\x00\x7c\x00\x64\x02\x7c\x01\x9b\x02\x64\x03\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9b\x02\x9d\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\x82\x02\x82\x00\x64\x00\x7d\x03\x7e\x03\x77\x01\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x7c\x02\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x3c\x00\x00\x00\x77\x00\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_read_code = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "read_code", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -runpy_toplevel_consts_19_consts_2 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_read_code._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -runpy_toplevel_consts_19_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_None, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & runpy_toplevel_consts_19_consts_2._object.ob_base.ob_base, - & const_str_exec._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[8]; - } -const_str_pkgutil = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 7, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "pkgutil", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -runpy_toplevel_consts_19_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - & const_str_pkgutil._ascii.ob_base, - & const_str_read_code._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(path), - & const_str_abspath._ascii.ob_base, - & const_str_fsdecode._ascii.ob_base, - & const_str_io._ascii.ob_base, - & const_str_open_code._ascii.ob_base, - & const_str_compile._ascii.ob_base, - &_Py_ID(read), - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -const_str__get_code_from_file = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "_get_code_from_file", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[299]; - } -runpy_toplevel_consts_19_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 298, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xe0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xd0\x04\x21\xdd\x13\x15\x94\x37\x97\x3f\x92\x3f\xa5\x32\xa4\x3b\xa8\x75\xd1\x23\x35\xd4\x23\x35\xd1\x13\x36\xd4\x13\x36\x80\x4c\xdd\x09\x0b\x8c\x1c\x90\x6c\xd1\x09\x23\xd4\x09\x23\xf0\x00\x01\x05\x1c\xa0\x71\xd8\x0f\x18\x88\x79\x98\x11\x89\x7c\x8c\x7c\x88\x04\xf0\x03\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf1\x00\x01\x05\x1c\xf4\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf8\xf8\xf8\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xf0\x00\x01\x05\x1c\xe0\x07\x0b\x80\x7c\xe5\x0d\x0f\x8c\x5c\x98\x2c\xd1\x0d\x27\xd4\x0d\x27\xf0\x00\x01\x09\x34\xa8\x31\xdd\x13\x1a\x98\x31\x9f\x36\x9a\x36\x99\x38\x9c\x38\xa0\x55\xa8\x46\xd1\x13\x33\xd4\x13\x33\x88\x44\xf0\x03\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf1\x00\x01\x09\x34\xf4\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf8\xf8\xf8\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xf0\x00\x01\x09\x34\xe0\x0b\x0f\x90\x15\x88\x3b\xd0\x04\x16", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[37]; - } -runpy_toplevel_consts_19_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 36, - }, - .ob_shash = -1, - .ob_sval = "\xc1\x0c\x0c\x41\x24\x03\xc1\x24\x04\x41\x28\x07\xc1\x2b\x01\x41\x28\x07\xc2\x05\x24\x42\x35\x03\xc2\x35\x04\x42\x39\x07\xc2\x3c\x01\x42\x39\x07", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_decoded_path = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "decoded_path", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -runpy_toplevel_consts_19_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_run_name._ascii.ob_base, - & const_str_fname._ascii.ob_base, - & const_str_read_code._ascii.ob_base, - & const_str_decoded_path._ascii.ob_base, - & const_str_f._ascii.ob_base, - &_Py_ID(code), - }, - }, -}; -static - struct _PyCode_DEF(392) -runpy_toplevel_consts_19 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 196, - }, - .co_consts = & runpy_toplevel_consts_19_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_19_names._object.ob_base.ob_base, - .co_exceptiontable = & runpy_toplevel_consts_19_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 2, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 6, - .co_firstlineno = 250, - .co_nlocalsplus = 6, - .co_nlocals = 6, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_19_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & importlib__bootstrap_toplevel_consts_23_consts_4_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str__get_code_from_file._ascii.ob_base, - .co_qualname = & const_str__get_code_from_file._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_19_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x01\x64\x02\x6c\x00\x6d\x01\x7d\x02\x01\x00\x74\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x03\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x04\x02\x00\x7c\x02\x7c\x04\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x05\x80\x4f\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x07\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x04\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x04\xa0\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x01\x64\x03\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x00\x64\x00\x64\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x7c\x05\x7c\x01\x66\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyCompactUnicodeObject _compact; - uint16_t _data[531]; - } -runpy_toplevel_consts_20_consts_0 = { - ._compact = { - ._base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 530, - .hash = -1, - .state = { - .kind = 2, - .compact = 1, - .ascii = 0, - .ready = 1, - }, - }, - }, - ._data = { - 69, 120, 101, 99, 117, 116, 101, 32, 99, 111, 100, 101, 32, 108, 111, 99, - 97, 116, 101, 100, 32, 97, 116, 32, 116, 104, 101, 32, 115, 112, 101, 99, - 105, 102, 105, 101, 100, 32, 102, 105, 108, 101, 115, 121, 115, 116, 101, 109, - 32, 108, 111, 99, 97, 116, 105, 111, 110, 46, 10, 10, 32, 32, 32, 32, - 32, 32, 32, 112, 97, 116, 104, 95, 110, 97, 109, 101, 32, 45, 45, 32, - 102, 105, 108, 101, 115, 121, 115, 116, 101, 109, 32, 108, 111, 99, 97, 116, - 105, 111, 110, 32, 111, 102, 32, 97, 32, 80, 121, 116, 104, 111, 110, 32, - 115, 99, 114, 105, 112, 116, 44, 32, 122, 105, 112, 102, 105, 108, 101, 44, - 10, 32, 32, 32, 32, 32, 32, 32, 111, 114, 32, 100, 105, 114, 101, 99, - 116, 111, 114, 121, 32, 99, 111, 110, 116, 97, 105, 110, 105, 110, 103, 32, - 97, 32, 116, 111, 112, 32, 108, 101, 118, 101, 108, 32, 95, 95, 109, 97, - 105, 110, 95, 95, 46, 112, 121, 32, 115, 99, 114, 105, 112, 116, 46, 10, - 10, 32, 32, 32, 32, 32, 32, 32, 79, 112, 116, 105, 111, 110, 97, 108, - 32, 97, 114, 103, 117, 109, 101, 110, 116, 115, 58, 10, 32, 32, 32, 32, - 32, 32, 32, 105, 110, 105, 116, 95, 103, 108, 111, 98, 97, 108, 115, 32, - 45, 45, 32, 100, 105, 99, 116, 105, 111, 110, 97, 114, 121, 32, 117, 115, - 101, 100, 32, 116, 111, 32, 112, 114, 101, 45, 112, 111, 112, 117, 108, 97, - 116, 101, 32, 116, 104, 101, 32, 109, 111, 100, 117, 108, 101, 8217, 115, 10, - 32, 32, 32, 32, 32, 32, 32, 103, 108, 111, 98, 97, 108, 115, 32, 100, - 105, 99, 116, 105, 111, 110, 97, 114, 121, 32, 98, 101, 102, 111, 114, 101, - 32, 116, 104, 101, 32, 99, 111, 100, 101, 32, 105, 115, 32, 101, 120, 101, - 99, 117, 116, 101, 100, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 114, - 117, 110, 95, 110, 97, 109, 101, 32, 45, 45, 32, 105, 102, 32, 110, 111, - 116, 32, 78, 111, 110, 101, 44, 32, 116, 104, 105, 115, 32, 119, 105, 108, - 108, 32, 98, 101, 32, 117, 115, 101, 100, 32, 116, 111, 32, 115, 101, 116, - 32, 95, 95, 110, 97, 109, 101, 95, 95, 59, 10, 32, 32, 32, 32, 32, - 32, 32, 111, 116, 104, 101, 114, 119, 105, 115, 101, 44, 32, 39, 60, 114, - 117, 110, 95, 112, 97, 116, 104, 62, 39, 32, 119, 105, 108, 108, 32, 98, - 101, 32, 117, 115, 101, 100, 32, 102, 111, 114, 32, 95, 95, 110, 97, 109, - 101, 95, 95, 46, 10, 10, 32, 32, 32, 32, 32, 32, 32, 82, 101, 116, - 117, 114, 110, 115, 32, 116, 104, 101, 32, 114, 101, 115, 117, 108, 116, 105, - 110, 103, 32, 109, 111, 100, 117, 108, 101, 32, 103, 108, 111, 98, 97, 108, - 115, 32, 100, 105, 99, 116, 105, 111, 110, 97, 114, 121, 46, 10, 32, 32, - 32, 32, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[11]; - } -runpy_toplevel_consts_20_consts_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 10, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_get_importer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "get_importer", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -runpy_toplevel_consts_20_consts_5 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_get_importer._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[4]; - } -const_str_imp = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 3, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "imp", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -const_str_NullImporter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "NullImporter", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -runpy_toplevel_consts_20_consts_10 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_pkg_name._ascii.ob_base, - & const_str_script_name._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[11]; - }_object; - } -runpy_toplevel_consts_20_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 11, - }, - .ob_item = { - & runpy_toplevel_consts_20_consts_0._compact._base.ob_base, - Py_None, - & runpy_toplevel_consts_20_consts_2._ascii.ob_base, - &_Py_STR(dot), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - & runpy_toplevel_consts_20_consts_5._object.ob_base.ob_base, - Py_False, - & const_str_imp._ascii.ob_base, - & const_str_NullImporter._ascii.ob_base, - Py_True, - & runpy_toplevel_consts_20_consts_10._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[21]; - }_object; - } -runpy_toplevel_consts_20_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 21, - }, - .ob_item = { - & const_str_rpartition._ascii.ob_base, - & const_str_pkgutil._ascii.ob_base, - & const_str_get_importer._ascii.ob_base, - & const_str_type._ascii.ob_base, - &_Py_ID(__module__), - &_Py_ID(__name__), - &_Py_ID(isinstance), - & const_str__get_code_from_file._ascii.ob_base, - & const_str__run_module_code._ascii.ob_base, - & const_str_sys._ascii.ob_base, - &_Py_ID(path), - & const_str_insert._ascii.ob_base, - & const_str__get_main_module_details._ascii.ob_base, - & const_str__TempModule._ascii.ob_base, - & const_str__ModifiedArgv0._ascii.ob_base, - & const_str_module._ascii.ob_base, - &_Py_ID(__dict__), - & const_str__run_code._ascii.ob_base, - &_Py_ID(copy), - & const_str_remove._ascii.ob_base, - & const_str_ValueError._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[770]; - } -runpy_toplevel_consts_20_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 769, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xf0\x1e\x00\x08\x10\xd0\x07\x17\xd8\x13\x1f\x88\x08\xd8\x0f\x17\xd7\x0f\x22\xd2\x0f\x22\xa0\x33\xd1\x0f\x27\xd4\x0f\x27\xa8\x01\xd4\x0f\x2a\x80\x48\xd8\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd0\x04\x24\xd8\x0f\x1b\x88\x7c\x98\x49\xd1\x0f\x26\xd4\x0f\x26\x80\x48\xe0\x16\x1b\x80\x4f\xdd\x07\x0b\x88\x48\x81\x7e\x84\x7e\xd4\x07\x20\xa0\x45\xd2\x07\x29\xd0\x07\x29\xdd\x0b\x0f\x90\x08\x89\x3e\x8c\x3e\xd4\x0b\x22\xa0\x6e\xd2\x0b\x34\xd0\x0b\x34\xd8\x1e\x22\x88\x4f\xdd\x07\x11\x90\x28\x9d\x44\xa0\x14\x99\x4a\x9c\x4a\xd1\x07\x27\xd4\x07\x27\xf0\x00\x1b\x05\x15\xa8\x3f\xf0\x00\x1b\x05\x15\xf5\x06\x00\x17\x2a\xa8\x28\xb0\x49\xd1\x16\x3e\xd4\x16\x3e\x89\x0b\x88\x04\x88\x65\xdd\x0f\x1f\xa0\x04\xa0\x6c\xb0\x48\xd8\x29\x31\xb8\x75\xf0\x03\x01\x10\x46\x01\xf1\x00\x01\x10\x46\x01\xf4\x00\x01\x10\x46\x01\xf0\x00\x01\x09\x46\x01\xf5\x0a\x00\x09\x0c\x8c\x08\x8f\x0f\x8a\x0f\x98\x01\x98\x39\xd1\x08\x25\xd4\x08\x25\xd0\x08\x25\xf0\x02\x11\x09\x15\xf5\x0e\x00\x28\x40\x01\xd1\x27\x41\xd4\x27\x41\xd1\x0c\x24\x88\x48\x90\x68\xa0\x04\xdd\x11\x1c\x98\x58\xd1\x11\x26\xd4\x11\x26\xf0\x00\x04\x0d\x49\x01\xa8\x2b\xdd\x11\x1f\xa0\x09\xd1\x11\x2a\xd4\x11\x2a\xf0\x03\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xe0\x1e\x29\xd4\x1e\x30\xd4\x1e\x39\x90\x0b\xdd\x17\x20\xa0\x14\xa0\x7b\xb0\x4c\xd8\x24\x2c\xa8\x68\xb8\x08\xf1\x03\x01\x18\x42\x01\xf4\x00\x01\x18\x42\x01\xdf\x42\x46\xc2\x24\xc1\x26\xc4\x26\xf0\x09\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf1\x00\x04\x0d\x49\x01\xf4\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf1\x00\x04\x0d\x49\x01\xf4\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x0c\x03\x0d\x15\xdd\x10\x13\x94\x08\x97\x0f\x92\x0f\xa0\x09\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf0\x11\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf8\xf8\xf8\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf1\x00\x04\x0d\x49\x01\xf4\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf8\xf8\xf8\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x00\x04\x0d\x49\x01\xf0\x0c\x03\x0d\x15\xdd\x10\x13\x94\x08\x97\x0f\x92\x0f\xa0\x09\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf0\x05\x03\x0d\x15\xdd\x10\x13\x94\x08\x97\x0f\x92\x0f\xa0\x09\xd1\x10\x2a\xd4\x10\x2a\xd0\x10\x2a\xd0\x10\x2a\xf8\xdd\x13\x1d\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xf0\x00\x01\x0d\x15\xd8\x10\x14\x90\x04\xf0\x03\x01\x0d\x15\xf8\xf8\xf8\xf8\xf8\xf8", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[163]; - } -runpy_toplevel_consts_20_exceptiontable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 162, - }, - .ob_shash = -1, - .ob_sval = "\xc3\x0c\x21\x47\x0d\x00\xc3\x2d\x10\x46\x0f\x03\xc3\x3d\x32\x45\x38\x05\xc4\x2f\x0c\x46\x0f\x03\xc4\x3b\x0c\x47\x0d\x00\xc5\x08\x1f\x45\x28\x02\xc5\x28\x0a\x45\x35\x05\xc5\x34\x01\x45\x35\x05\xc5\x38\x04\x45\x3c\x09\xc5\x3c\x03\x46\x0f\x03\xc5\x3f\x01\x45\x3c\x09\xc6\x00\x03\x46\x0f\x03\xc6\x03\x0c\x47\x0d\x00\xc6\x0f\x04\x46\x13\x07\xc6\x13\x03\x47\x0d\x00\xc6\x16\x01\x46\x13\x07\xc6\x17\x03\x47\x0d\x00\xc6\x1b\x1f\x46\x3c\x00\xc6\x3c\x0a\x47\x0a\x03\xc7\x09\x01\x47\x0a\x03\xc7\x0d\x01\x47\x3f\x03\xc7\x0f\x1f\x47\x2f\x04\xc7\x2e\x01\x47\x3f\x03\xc7\x2f\x0a\x47\x3c\x07\xc7\x39\x02\x47\x3f\x03\xc7\x3b\x01\x47\x3c\x07\xc7\x3c\x03\x47\x3f\x03", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[10]; - } -const_str_path_name = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 9, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "path_name", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[9]; - } -const_str_importer = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 8, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "importer", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[16]; - } -const_str_is_NullImporter = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 15, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "is_NullImporter", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[13]; - }_object; - } -runpy_toplevel_consts_20_localsplusnames = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 13, - }, - .ob_item = { - & const_str_path_name._ascii.ob_base, - & const_str_init_globals._ascii.ob_base, - & const_str_run_name._ascii.ob_base, - & const_str_pkg_name._ascii.ob_base, - & const_str_get_importer._ascii.ob_base, - & const_str_importer._ascii.ob_base, - & const_str_is_NullImporter._ascii.ob_base, - &_Py_ID(code), - & const_str_fname._ascii.ob_base, - & const_str_mod_name._ascii.ob_base, - & const_str_mod_spec._ascii.ob_base, - & const_str_temp_module._ascii.ob_base, - & const_str_mod_globals._ascii.ob_base, - }, - }, -}; -static - struct _PyCode_DEF(1028) -runpy_toplevel_consts_20 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 514, - }, - .co_consts = & runpy_toplevel_consts_20_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_20_names._object.ob_base.ob_base, - .co_exceptiontable = & runpy_toplevel_consts_20_exceptiontable.ob_base.ob_base, - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 3, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 10, - .co_firstlineno = 262, - .co_nlocalsplus = 13, - .co_nlocals = 13, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = & runpy_toplevel_consts_20_localsplusnames._object.ob_base.ob_base, - .co_localspluskinds = & posixpath_toplevel_consts_32_localspluskinds.ob_base.ob_base, - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = & const_str_run_path._ascii.ob_base, - .co_qualname = & const_str_run_path._ascii.ob_base, - .co_linetable = & runpy_toplevel_consts_20_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x7c\x02\x80\x02\x64\x02\x7d\x02\x7c\x02\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x03\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x03\x64\x04\x64\x05\x6c\x01\x6d\x02\x7d\x04\x01\x00\x02\x00\x7c\x04\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x05\x64\x06\x7d\x06\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x64\x07\x6b\x02\x00\x00\x00\x00\x72\x1a\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x05\x00\x00\x00\x00\x00\x00\x00\x00\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x02\x64\x09\x7d\x06\x74\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x05\x74\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x73\x02\x7c\x06\x72\x27\x74\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x02\x00\x00\x7d\x07\x7d\x08\x74\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x01\x7c\x02\x7c\x03\x7c\x08\xac\x0a\xa6\x05\x00\x00\xab\x05\x00\x00\x00\x00\x00\x00\x00\x00\x53\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x04\x7c\x00\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x03\x00\x00\x7d\x09\x7d\x0a\x7d\x07\x74\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x02\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x7d\x0b\x74\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x35\x00\x01\x00\x7c\x0b\x6a\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x10\x00\x00\x00\x00\x00\x00\x00\x00\x7d\x0c\x74\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x07\x7c\x0c\x7c\x01\x7c\x02\x7c\x0a\x7c\x03\xa6\x06\x00\x00\xab\x06\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x63\x02\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x63\x02\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x53\x00\x23\x00\x74\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x64\x01\x64\x01\x64\x01\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x6e\x0b\x23\x00\x31\x00\x73\x04\x77\x02\x78\x03\x59\x00\x77\x01\x01\x00\x59\x00\x01\x00\x01\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x01\x53\x00\x23\x00\x74\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x04\x01\x00\x59\x00\x64\x01\x53\x00\x77\x00\x78\x03\x59\x00\x77\x01\x23\x00\x09\x00\x74\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6a\x0a\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x77\x00\x23\x00\x74\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x24\x00\x72\x03\x01\x00\x59\x00\x77\x00\x77\x00\x78\x03\x59\x00\x77\x01\x78\x03\x59\x00\x77\x01", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[34]; - } -runpy_toplevel_consts_23 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 33, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "No module specified for execution", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -runpy_toplevel_consts_27 = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_None, - Py_None, - Py_False, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[29]; - }_object; - } -runpy_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 29, - }, - .ob_item = { - & runpy_toplevel_consts_0._ascii.ob_base, - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 0], - Py_None, - & const_str_run_module._ascii.ob_base, - & const_str_run_path._ascii.ob_base, - & runpy_toplevel_consts_5.ob_base.ob_base, - & const_str__TempModule._ascii.ob_base, - & runpy_toplevel_consts_7.ob_base.ob_base, - & const_str__ModifiedArgv0._ascii.ob_base, - & runpy_toplevel_consts_9.ob_base.ob_base, - & runpy_toplevel_consts_10.ob_base.ob_base, - & runpy_toplevel_consts_11.ob_base.ob_base, - & runpy_toplevel_consts_12.ob_base.ob_base, - & const_str__Error._ascii.ob_base, - Py_True, - & runpy_toplevel_consts_15.ob_base.ob_base, - Py_False, - & runpy_toplevel_consts_17.ob_base.ob_base, - & runpy_toplevel_consts_18.ob_base.ob_base, - & runpy_toplevel_consts_19.ob_base.ob_base, - & runpy_toplevel_consts_20.ob_base.ob_base, - &_Py_ID(__main__), - (PyObject *)&_PyLong_SMALL_INTS[_PY_NSMALLNEGINTS + 2], - & runpy_toplevel_consts_23._ascii.ob_base, - & importlib__bootstrap_toplevel_consts_18_consts_3._object.ob_base.ob_base, - & codecs_toplevel_consts_12_consts_7._object.ob_base.ob_base, - & importlib__bootstrap_external_toplevel_consts_83._object.ob_base.ob_base, - & runpy_toplevel_consts_27._object.ob_base.ob_base, - & importlib__bootstrap_toplevel_consts_37_consts_12._object.ob_base.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -runpy_toplevel_names_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "importlib.machinery", -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[15]; - } -runpy_toplevel_names_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 14, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "importlib.util", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[29]; - }_object; - } -runpy_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 29, - }, - .ob_item = { - &_Py_ID(__doc__), - & const_str_sys._ascii.ob_base, - & runpy_toplevel_names_2._ascii.ob_base, - &_Py_ID(importlib), - & runpy_toplevel_names_4._ascii.ob_base, - & const_str_io._ascii.ob_base, - & const_str_os._ascii.ob_base, - &_Py_ID(__all__), - & const_str_type._ascii.ob_base, - & const_str_ModuleType._ascii.ob_base, - & const_str_object._ascii.ob_base, - & const_str__TempModule._ascii.ob_base, - & const_str__ModifiedArgv0._ascii.ob_base, - & const_str__run_code._ascii.ob_base, - & const_str__run_module_code._ascii.ob_base, - & const_str_ImportError._ascii.ob_base, - & const_str__get_module_details._ascii.ob_base, - & const_str_Exception._ascii.ob_base, - & const_str__Error._ascii.ob_base, - & const_str__run_module_as_main._ascii.ob_base, - & const_str_run_module._ascii.ob_base, - & const_str__get_main_module_details._ascii.ob_base, - & const_str__get_code_from_file._ascii.ob_base, - & const_str_run_path._ascii.ob_base, - &_Py_ID(__name__), - &_Py_ID(len), - & const_str_argv._ascii.ob_base, - & const_str_print._ascii.ob_base, - &_Py_ID(stderr), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[543]; - } -runpy_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 542, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x02\x07\x01\x04\xf0\x00\x07\x01\x04\xf0\x18\x00\x01\x0b\x80\x0a\x80\x0a\x80\x0a\xd8\x00\x1a\xd0\x00\x1a\xd0\x00\x1a\xd0\x00\x1a\xd8\x00\x15\xd0\x00\x15\xd0\x00\x15\xd0\x00\x15\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xd8\x00\x09\x80\x09\x80\x09\x80\x09\xf0\x06\x00\x05\x11\x90\x2a\xf0\x03\x02\x0b\x02\x80\x07\xf0\x0a\x00\x0e\x12\x88\x54\x90\x23\x89\x59\x8c\x59\x80\x0a\xf0\x04\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x00\x15\x01\x20\x90\x26\xf1\x00\x15\x01\x20\xf4\x00\x15\x01\x20\xf0\x00\x15\x01\x20\xf0\x2e\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\x90\x56\xf1\x00\x0d\x01\x28\xf4\x00\x0d\x01\x28\xf0\x00\x0d\x01\x28\xf0\x20\x00\x2f\x33\xd8\x26\x2a\xd8\x29\x2d\xf0\x05\x18\x01\x17\xf0\x00\x18\x01\x17\xf0\x00\x18\x01\x17\xf0\x00\x18\x01\x17\xf0\x34\x00\x29\x2d\xd8\x2c\x30\xd8\x2f\x33\xf0\x05\x0b\x01\x1e\xf0\x00\x0b\x01\x1e\xf0\x00\x0b\x01\x1e\xf0\x00\x0b\x01\x1e\xf0\x1c\x00\x29\x34\xf0\x00\x3b\x01\x20\xf0\x00\x3b\x01\x20\xf0\x00\x3b\x01\x20\xf0\x00\x3b\x01\x20\xf0\x7a\x01\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\x88\x59\xf1\x00\x01\x01\x4d\x01\xf4\x00\x01\x01\x4d\x01\xf0\x00\x01\x01\x4d\x01\xf0\x0e\x1a\x01\x2b\xf0\x00\x1a\x01\x2b\xf0\x00\x1a\x01\x2b\xf0\x00\x1a\x01\x2b\xf0\x38\x00\x27\x2b\xd8\x28\x2d\xf0\x03\x1c\x01\x45\x01\xf0\x00\x1c\x01\x45\x01\xf0\x00\x1c\x01\x45\x01\xf0\x00\x1c\x01\x45\x01\xf0\x3c\x00\x24\x2f\xf0\x00\x10\x01\x2c\xf0\x00\x10\x01\x2c\xf0\x00\x10\x01\x2c\xf0\x00\x10\x01\x2c\xf0\x26\x0a\x01\x17\xf0\x00\x0a\x01\x17\xf0\x00\x0a\x01\x17\xf0\x18\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x00\x34\x01\x15\xf0\x6e\x01\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xe0\x07\x0a\x80\x73\x88\x33\x8c\x38\x81\x7d\x84\x7d\x90\x71\xd2\x07\x18\xd0\x07\x18\xd8\x08\x0d\x88\x05\xd0\x0e\x31\xb8\x03\xbc\x0a\xd0\x08\x43\xd1\x08\x43\xd4\x08\x43\xd0\x08\x43\xd0\x08\x43\xd0\x08\x43\xe0\x0c\x0f\x8c\x48\x90\x51\x88\x4b\xd8\x08\x1b\xd0\x08\x1b\x98\x43\x9c\x48\xa0\x51\x9c\x4b\xd1\x08\x28\xd4\x08\x28\xd0\x08\x28\xd0\x08\x28\xd0\x08\x28\xf0\x0d\x00\x04\x1a\xd0\x03\x19", -}; -static - struct _PyCode_DEF(402) -runpy_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 201, - }, - .co_consts = & runpy_toplevel_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 5, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & runpy_toplevel_consts_5_consts_2_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & runpy_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x64\x02\x6c\x01\x5a\x01\x64\x01\x64\x02\x6c\x02\x5a\x03\x64\x01\x64\x02\x6c\x04\x5a\x03\x64\x01\x64\x02\x6c\x05\x5a\x05\x64\x01\x64\x02\x6c\x06\x5a\x06\x64\x03\x64\x04\x67\x02\x5a\x07\x02\x00\x65\x08\x65\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x09\x02\x00\x47\x00\x64\x05\x84\x00\x64\x06\x65\x0a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0b\x02\x00\x47\x00\x64\x07\x84\x00\x64\x08\x65\x0a\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x0c\x09\x00\x09\x00\x09\x00\x64\x19\x64\x09\x84\x01\x5a\x0d\x09\x00\x09\x00\x09\x00\x64\x19\x64\x0a\x84\x01\x5a\x0e\x65\x0f\x66\x01\x64\x0b\x84\x01\x5a\x10\x02\x00\x47\x00\x64\x0c\x84\x00\x64\x0d\x65\x11\xa6\x03\x00\x00\xab\x03\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x12\x64\x1a\x64\x0f\x84\x01\x5a\x13\x09\x00\x09\x00\x64\x1b\x64\x11\x84\x01\x5a\x14\x65\x0f\x66\x01\x64\x12\x84\x01\x5a\x15\x64\x13\x84\x00\x5a\x16\x64\x1c\x64\x14\x84\x01\x5a\x17\x65\x18\x64\x15\x6b\x02\x00\x00\x00\x00\x72\x48\x02\x00\x65\x19\x65\x01\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x64\x16\x6b\x00\x00\x00\x00\x00\x72\x14\x02\x00\x65\x1b\x64\x17\x65\x01\x6a\x1c\x00\x00\x00\x00\x00\x00\x00\x00\xac\x18\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00\x65\x01\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x3d\x00\x02\x00\x65\x13\x65\x01\x6a\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void runpy_do_patchups(void) { - if (sizeof(wchar_t) == 2) { - runpy_toplevel_consts_17_consts_0._compact._base.wstr = (wchar_t *) runpy_toplevel_consts_17_consts_0._data; - runpy_toplevel_consts_17_consts_0._compact.wstr_length = 800; - } - if (sizeof(wchar_t) == 2) { - runpy_toplevel_consts_20_consts_0._compact._base.wstr = (wchar_t *) runpy_toplevel_consts_20_consts_0._data; - runpy_toplevel_consts_20_consts_0._compact.wstr_length = 530; - } -} - -PyObject * -_Py_get_runpy_toplevel(void) -{ - runpy_do_patchups(); - return Py_NewRef((PyObject *) &runpy_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_TestFrozenUtf8_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "TestFrozenUtf8_1", -}; -static - struct { - PyCompactUnicodeObject _compact; - uint8_t _data[2]; - } -__hello___toplevel_consts_1_consts_1 = { - ._compact = { - ._base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 0, - .ready = 1, - }, - }, - }, - ._data = { - 182, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -__hello___toplevel_consts_1_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_TestFrozenUtf8_1._ascii.ob_base, - & __hello___toplevel_consts_1_consts_1._compact._base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[19]; - } -__hello___toplevel_consts_1_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 18, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[20]; - } -__hello___toplevel_consts_1_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 19, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x10\x80\x4c\x80\x4c\x80\x4c", -}; -static - struct _PyCode_DEF(18) -__hello___toplevel_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 9, - }, - .co_consts = & __hello___toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 3, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_TestFrozenUtf8_1._ascii.ob_base, - .co_qualname = & const_str_TestFrozenUtf8_1._ascii.ob_base, - .co_linetable = & __hello___toplevel_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_TestFrozenUtf8_2 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "TestFrozenUtf8_2", -}; -static - struct { - PyCompactUnicodeObject _compact; - uint16_t _data[2]; - } -__hello___toplevel_consts_3_consts_1 = { - ._compact = { - ._base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 2, - .compact = 1, - .ascii = 0, - .ready = 1, - }, - }, - }, - ._data = { - 960, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -__hello___toplevel_consts_3_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_TestFrozenUtf8_2._ascii.ob_base, - & __hello___toplevel_consts_3_consts_1._compact._base.ob_base, - Py_None, - }, - }, -}; -static - struct _PyCode_DEF(18) -__hello___toplevel_consts_3 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 9, - }, - .co_consts = & __hello___toplevel_consts_3_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 6, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_TestFrozenUtf8_2._ascii.ob_base, - .co_qualname = & const_str_TestFrozenUtf8_2._ascii.ob_base, - .co_linetable = & __hello___toplevel_consts_1_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[17]; - } -const_str_TestFrozenUtf8_4 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 16, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "TestFrozenUtf8_4", -}; -static - struct { - PyCompactUnicodeObject _compact; - uint32_t _data[2]; - } -__hello___toplevel_consts_5_consts_1 = { - ._compact = { - ._base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 1, - .hash = -1, - .state = { - .kind = 4, - .compact = 1, - .ascii = 0, - .ready = 1, - }, - }, - }, - ._data = { - 128512, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -__hello___toplevel_consts_5_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_TestFrozenUtf8_4._ascii.ob_base, - & __hello___toplevel_consts_5_consts_1._compact._base.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -__hello___toplevel_consts_5_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\x80\x00\x80\x00\x80\x00\x80\x00\xd8\x04\x14\xd0\x04\x14\xd0\x04\x14\xd0\x04\x14", -}; -static - struct _PyCode_DEF(18) -__hello___toplevel_consts_5 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 9, - }, - .co_consts = & __hello___toplevel_consts_5_consts._object.ob_base.ob_base, - .co_names = & runpy_toplevel_consts_12_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 9, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_TestFrozenUtf8_4._ascii.ob_base, - .co_qualname = & const_str_TestFrozenUtf8_4._ascii.ob_base, - .co_linetable = & __hello___toplevel_consts_5_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x65\x00\x5a\x01\x64\x00\x5a\x02\x64\x01\x5a\x03\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[13]; - } -__hello___toplevel_consts_7_consts_1 = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 12, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "Hello world!", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -__hello___toplevel_consts_7_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - Py_None, - & __hello___toplevel_consts_7_consts_1._ascii.ob_base, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[1]; - }_object; - } -__hello___toplevel_consts_7_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 1, - }, - .ob_item = { - & const_str_print._ascii.ob_base, - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[23]; - } -__hello___toplevel_consts_7_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 22, - }, - .ob_shash = -1, - .ob_sval = "\x80\x00\xdd\x04\x09\x88\x2e\xd1\x04\x19\xd4\x04\x19\xd0\x04\x19\xd0\x04\x19\xd0\x04\x19", -}; -static - struct _PyCode_DEF(36) -__hello___toplevel_consts_7 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & __hello___toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & __hello___toplevel_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 12, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_main._ascii.ob_base, - .co_qualname = & const_str_main._ascii.ob_base, - .co_linetable = & __hello___toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[10]; - }_object; - } -__hello___toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 10, - }, - .ob_item = { - Py_True, - & __hello___toplevel_consts_1.ob_base.ob_base, - & const_str_TestFrozenUtf8_1._ascii.ob_base, - & __hello___toplevel_consts_3.ob_base.ob_base, - & const_str_TestFrozenUtf8_2._ascii.ob_base, - & __hello___toplevel_consts_5.ob_base.ob_base, - & const_str_TestFrozenUtf8_4._ascii.ob_base, - & __hello___toplevel_consts_7.ob_base.ob_base, - &_Py_ID(__main__), - Py_None, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[12]; - } -const_str_initialized = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 11, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "initialized", -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[6]; - }_object; - } -__hello___toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 6, - }, - .ob_item = { - & const_str_initialized._ascii.ob_base, - & const_str_TestFrozenUtf8_1._ascii.ob_base, - & const_str_TestFrozenUtf8_2._ascii.ob_base, - & const_str_TestFrozenUtf8_4._ascii.ob_base, - & const_str_main._ascii.ob_base, - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[182]; - } -__hello___toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 181, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x0e\x12\x80\x0b\xf0\x04\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf1\x00\x01\x01\x11\xf4\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x06\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf1\x00\x01\x01\x11\xf4\x00\x01\x01\x11\xf0\x00\x01\x01\x11\xf0\x06\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf1\x00\x01\x01\x15\xf4\x00\x01\x01\x15\xf0\x00\x01\x01\x15\xf0\x06\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x06\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xd8\x04\x08\x80\x44\x81\x46\x84\x46\x80\x46\x80\x46\x80\x46\xf0\x03\x00\x04\x1a\xd0\x03\x19", -}; -static - struct _PyCode_DEF(130) -__hello___toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 65, - }, - .co_consts = & __hello___toplevel_consts._object.ob_base.ob_base, - .co_names = & __hello___toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 4, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __hello___toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & __hello___toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x02\x00\x47\x00\x64\x01\x84\x00\x64\x02\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x01\x02\x00\x47\x00\x64\x03\x84\x00\x64\x04\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x02\x02\x00\x47\x00\x64\x05\x84\x00\x64\x06\xa6\x02\x00\x00\xab\x02\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x03\x64\x07\x84\x00\x5a\x04\x65\x05\x64\x08\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x04\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x09\x53\x00\x64\x09\x53\x00", - ._co_firsttraceable = 0, -}; -static void __hello___do_patchups(void) { - if (sizeof(wchar_t) == 2) { - __hello___toplevel_consts_3_consts_1._compact._base.wstr = (wchar_t *) __hello___toplevel_consts_3_consts_1._data; - __hello___toplevel_consts_3_consts_1._compact.wstr_length = 1; - } - if (sizeof(wchar_t) == 4) { - __hello___toplevel_consts_5_consts_1._compact._base.wstr = (wchar_t *) __hello___toplevel_consts_5_consts_1._data; - __hello___toplevel_consts_5_consts_1._compact.wstr_length = 1; - } -} - -PyObject * -_Py_get___hello___toplevel(void) -{ - __hello___do_patchups(); - return Py_NewRef((PyObject *) &__hello___toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[20]; - } -__phello___toplevel_consts_1_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 19, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct _PyCode_DEF(36) -__phello___toplevel_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & __hello___toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & __hello___toplevel_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 3, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __phello___toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_main._ascii.ob_base, - .co_qualname = & const_str_main._ascii.ob_base, - .co_linetable = & __hello___toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -__phello___toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_True, - & __phello___toplevel_consts_1.ob_base.ob_base, - &_Py_ID(__main__), - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -__phello___toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - & const_str_initialized._ascii.ob_base, - & const_str_main._ascii.ob_base, - &_Py_ID(__name__), - }, - }, -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[62]; - } -__phello___toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 61, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x0e\x12\x80\x0b\xf0\x04\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x00\x01\x01\x1a\xf0\x06\x00\x04\x0c\x88\x7a\xd2\x03\x19\xd0\x03\x19\xd8\x04\x08\x80\x44\x81\x46\x84\x46\x80\x46\x80\x46\x80\x46\xf0\x03\x00\x04\x1a\xd0\x03\x19", -}; -static - struct _PyCode_DEF(52) -__phello___toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & __phello___toplevel_consts._object.ob_base.ob_base, - .co_names = & __phello___toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __phello___toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & __phello___toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x84\x00\x5a\x01\x65\x02\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static void __phello___do_patchups(void) { -} - -PyObject * -_Py_get___phello___toplevel(void) -{ - __phello___do_patchups(); - return Py_NewRef((PyObject *) &__phello___toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[24]; - } -__phello___ham_toplevel_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 23, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[16]; - } -__phello___ham_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 15, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xf0\x00\x01\x01\x01\xf0\x00\x01\x01\x01", -}; -static - struct _PyCode_DEF(6) -__phello___ham_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __phello___ham_toplevel_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & __phello___ham_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static void __phello___ham_do_patchups(void) { -} - -PyObject * -_Py_get___phello___ham_toplevel(void) -{ - __phello___ham_do_patchups(); - return Py_NewRef((PyObject *) &__phello___ham_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[29]; - } -__phello___ham_eggs_toplevel_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 28, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct _PyCode_DEF(6) -__phello___ham_eggs_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 3, - }, - .co_consts = & importlib__bootstrap_toplevel_consts_1_consts._object.ob_base.ob_base, - .co_names = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 1, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __phello___ham_eggs_toplevel_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & __phello___ham_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static void __phello___ham_eggs_do_patchups(void) { -} - -PyObject * -_Py_get___phello___ham_eggs_toplevel(void) -{ - __phello___ham_eggs_do_patchups(); - return Py_NewRef((PyObject *) &__phello___ham_eggs_toplevel); -} - -static - struct { - PyASCIIObject _ascii; - uint8_t _data[25]; - } -__phello___spam_toplevel_consts_1_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 24, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct _PyCode_DEF(36) -__phello___spam_toplevel_consts_1 = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 18, - }, - .co_consts = & __hello___toplevel_consts_7_consts._object.ob_base.ob_base, - .co_names = & __hello___toplevel_consts_7_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 3, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 3, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __phello___spam_toplevel_consts_1_filename._ascii.ob_base, - .co_name = & const_str_main._ascii.ob_base, - .co_qualname = & const_str_main._ascii.ob_base, - .co_linetable = & __hello___toplevel_consts_7_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x00\x53\x00", - ._co_firsttraceable = 0, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[4]; - }_object; - } -__phello___spam_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 4, - }, - .ob_item = { - Py_True, - & __phello___spam_toplevel_consts_1.ob_base.ob_base, - &_Py_ID(__main__), - Py_None, - }, - }, -}; -static - struct _PyCode_DEF(52) -__phello___spam_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 26, - }, - .co_consts = & __phello___spam_toplevel_consts._object.ob_base.ob_base, - .co_names = & __phello___toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 2, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & __phello___spam_toplevel_consts_1_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & __phello___toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x64\x01\x84\x00\x5a\x01\x65\x02\x64\x02\x6b\x02\x00\x00\x00\x00\x72\x0c\x02\x00\x65\x01\xa6\x00\x00\x00\xab\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x03\x53\x00\x64\x03\x53\x00", - ._co_firsttraceable = 0, -}; -static void __phello___spam_do_patchups(void) { -} - -PyObject * -_Py_get___phello___spam_toplevel(void) -{ - __phello___spam_do_patchups(); - return Py_NewRef((PyObject *) &__phello___spam_toplevel); -} - -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[3]; - }_object; - } -frozen_only_toplevel_consts = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 3, - }, - .ob_item = { - Py_True, - & __hello___toplevel_consts_7_consts_1._ascii.ob_base, - Py_None, - }, - }, -}; -static - struct { - PyGC_Head _gc_head; - struct { - PyObject_VAR_HEAD - PyObject *ob_item[2]; - }_object; - } -frozen_only_toplevel_names = { - ._object = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyTuple_Type, - }, - .ob_size = 2, - }, - .ob_item = { - & const_str_initialized._ascii.ob_base, - & const_str_print._ascii.ob_base, - }, - }, -}; -static - struct { - PyASCIIObject _ascii; - uint8_t _data[21]; - } -frozen_only_toplevel_filename = { - ._ascii = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyUnicode_Type, - }, - .length = 20, - .hash = -1, - .state = { - .kind = 1, - .compact = 1, - .ascii = 1, - .ready = 1, - }, - }, - ._data = "", -}; -static - struct { - PyObject_VAR_HEAD - Py_hash_t ob_shash; - char ob_sval[33]; - } -frozen_only_toplevel_linetable = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyBytes_Type, - }, - .ob_size = 32, - }, - .ob_shash = -1, - .ob_sval = "\xf0\x03\x01\x01\x01\xd8\x0e\x12\x80\x0b\xd8\x00\x05\x80\x05\x80\x6e\xd1\x00\x15\xd4\x00\x15\xd0\x00\x15\xd0\x00\x15\xd0\x00\x15", -}; -static - struct _PyCode_DEF(32) -frozen_only_toplevel = { - .ob_base = { - .ob_base = { - .ob_refcnt = 999999999, - .ob_type = &PyCode_Type, - }, - .ob_size = 16, - }, - .co_consts = & frozen_only_toplevel_consts._object.ob_base.ob_base, - .co_names = & frozen_only_toplevel_names._object.ob_base.ob_base, - .co_exceptiontable = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_flags = 0, - .co_warmup = QUICKENING_INITIAL_WARMUP_VALUE, - ._co_linearray_entry_size = 0, - .co_argcount = 0, - .co_posonlyargcount = 0, - .co_kwonlyargcount = 0, - .co_stacksize = 3, - .co_firstlineno = 1, - .co_nlocalsplus = 0, - .co_nlocals = 0, - .co_nplaincellvars = 0, - .co_ncellvars = 0, - .co_nfreevars = 0, - .co_localsplusnames = (PyObject *)& _Py_SINGLETON(tuple_empty), - .co_localspluskinds = (PyObject *)&_Py_SINGLETON(bytes_empty), - .co_filename = & frozen_only_toplevel_filename._ascii.ob_base, - .co_name = &_Py_STR(anon_module), - .co_qualname = &_Py_STR(anon_module), - .co_linetable = & frozen_only_toplevel_linetable.ob_base.ob_base, - ._co_code = NULL, - ._co_linearray = NULL, - .co_code_adaptive = "\x97\x00\x64\x00\x5a\x00\x02\x00\x65\x01\x64\x01\xa6\x01\x00\x00\xab\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x64\x02\x53\x00", - ._co_firsttraceable = 0, -}; -static void frozen_only_do_patchups(void) { -} - -PyObject * -_Py_get_frozen_only_toplevel(void) -{ - frozen_only_do_patchups(); - return Py_NewRef((PyObject *) &frozen_only_toplevel); -} - -void -_Py_Deepfreeze_Fini(void) { - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_AttributeError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_type); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_1_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__object_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hasattr); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_setattr); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_update); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__wrap); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_new); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_old); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sys); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__new_module); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__DeadlockError); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ModuleLock); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__thread); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_allocate_lock); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lock); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_wakeup); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_owner); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_count); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_waiters); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_self); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_ident); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_set); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__blocking_on); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_has_deadlock); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_me); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_seen); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_4_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_acquire); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_release); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_RuntimeError); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_format); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_id); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_7_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__DummyModuleLock); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_9_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_5); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ModuleLockManager); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__lock); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_11_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_lock); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_11_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_11_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_args); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_kwargs); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__imp); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_acquire_lock); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_locks); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_release_lock); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cb); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_13_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ref); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_KeyError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__weakref); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_14_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_15_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__call_with_frames_removed); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_f); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_kwds); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_verbosity); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_1_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_1_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_18_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_file); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_flags); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_verbose); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_startswith); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_print); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__verbose_message); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_message); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_19_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_19_consts_1_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_builtin_module_names); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ImportError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_builtin_wrapper); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_19_consts_1_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fullname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fxn); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_builtin); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_20_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_20_consts_1_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_frozen); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_frozen_wrapper); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_20_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__requires_frozen); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_21_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_21_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__warnings); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_warn); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_DeprecationWarning); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spec_from_loader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__exec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__load); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__load_module_shim); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_module); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_repr); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_22_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_repr_from_spec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Exception); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_repr); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ModuleSpec); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_origin); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_state); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_package); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_submodule_search_locations); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__set_fileattr); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__cached); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cached); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_has_location); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_NotImplemented); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_other); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_smsl); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__bootstrap_external); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_NotImplementedError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_cached); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_7); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rpartition); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_23_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bool); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_value); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_property); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_setter); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_26_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ORIGIN); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spec_from_file_location); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_search); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___cached__); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_list); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__spec_from_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_location); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_27); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_override); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_NamespaceLoader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__init_module_attrs); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_30); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_31_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_create_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_module); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_31_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_from_spec); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_31); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_32_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_32_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_32); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_33_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ImportWarning); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_load_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pop); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_33); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__load_backward_compatible); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_34); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_35_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__load_unlocked); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_35); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_36_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_36); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BuiltinImporter); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_builtin); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_spec); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_5_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cls); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_target); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_module); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_create_builtin); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_builtin); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_code); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_11_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_37_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_staticmethod); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_classmethod); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FrozenImporter); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_frozen); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_3_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_m); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___origname__); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_4_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_origname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_vars); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_frozen_package); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__resolve_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_implementation); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_insert); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sorted); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_state); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ispkg); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkgdir); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__stdlib_dir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_win32); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__SEP); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_platform); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_alias); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_relfile); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_frozen); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_8_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_info); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_9_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_frozen_object); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_12_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_12_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_14_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_15_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_39_consts_15_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_15); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ImportLockContext); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_41_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_type); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_value); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_traceback); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_43_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_43_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_43_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rsplit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__resolve_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_package); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_level); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bits); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_base); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_43); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_44_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_spec_legacy); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_finder); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_44); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_45_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_45_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_45_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_meta_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_spec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_reload); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_45); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_46_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_str); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_TypeError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ValueError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__sanity_check); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_46); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_47); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_48); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_49_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_49_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_49_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ERR_MSG); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ModuleNotFoundError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_and_load_unlocked); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_import_); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_spec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_child); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_49); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_50_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_50_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__NEEDS_LOADING); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_50); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_52_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__gcd_import); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_52); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_recursive); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_54_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fromlist); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_x); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_where); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_from_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_54); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_stacklevel); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_55_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__calc___package__); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_globals); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_55); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_57_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_partition); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_locals); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_globals_); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cut_off); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_57); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_58_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__builtin_from_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_58); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_59_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__setup); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sys_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__imp_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_type); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_self_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_builtin_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_builtin_module); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_59); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_60_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__install); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_60); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_toplevel_consts_61_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__frozen_importlib_external); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__install_external_importers); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel_consts_61); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ERR_MSG_PREFIX); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_object); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_6_filename); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_6_localsplusnames_0); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_s); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_win); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cygwin); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_darwin); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PYTHONCASEOK); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ignore_environment); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__os); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_environ); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__relax_case); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_key); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_4_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__CASE_INSENSITIVE_PLATFORMS); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__CASE_INSENSITIVE_PLATFORMS_STR_KEY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__make_relax_case); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_12_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_int); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_to_bytes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__pack_uint32); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_from_bytes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__unpack_uint32); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_data); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__unpack_uint16); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rstrip); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_separators); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_5_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_p); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_map); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_splitroot); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_sep_tuple); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_endswith); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_sep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_casefold); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_join); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_parts); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_root); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_root); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tail); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_part); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rfind); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_max); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_split); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_i); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_18_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_stat); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_stat); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_19_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_OSError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_mode); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_is_mode_type); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_stat_info); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_20_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_isfile); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_21_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getcwd); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_isdir); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_22_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_22_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_isabs); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_22); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_25_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_wb); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_EXCL); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_CREAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_WRONLY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__io); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileIO); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_unlink); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__write_atomic); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_tmp); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fd); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_25); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___pycache__); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_31); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_33); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_34); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_optimization); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_36_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fspath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_tag); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_optimize); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isalnum); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__OPT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BYTECODE_SUFFIXES); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pycache_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lstrip); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__PYCACHE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_from_source); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_debug_override); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_head); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rest); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tag); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_almost_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_36); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_37_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SOURCE_SUFFIXES); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_from_cache); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pycache_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_found_in_pycache_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_stripped_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pycache); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dot_count); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_opt_level); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_base_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_37); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_38_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_py); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lower); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytecode_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_extension); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_path); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_38); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tuple); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_39); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_40_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__calc_mode); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_40); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_name_wrapper); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_method); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_42_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_42_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_42_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_loader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_module_shim); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_portions); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_42); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_43_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAGIC_NUMBER); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_EOFError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__classify_pyc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_details); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_magic); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_43); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_44_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_44_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__validate_timestamp_pyc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_mtime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_size); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_44); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_45_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_45_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__validate_hash_pyc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_hash); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_45); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_46_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_46_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_46_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_marshal); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_loads); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__code_type); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__fix_co_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__compile_bytecode); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_46); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_47_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytearray); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dumps); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__code_to_timestamp_pyc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mtime); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_47); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_49_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__code_to_hash_pyc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_checked); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_49); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_50_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tokenize); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BytesIO); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_detect_encoding); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_IncrementalNewlineDecoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decode_source); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_bytes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_bytes_readline); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_newline_decoder); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_50); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_52_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_supported_file_loaders); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__POPULATE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_class); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_suffixes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_52); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_WindowsRegistryFinder); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_winreg); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_OpenKey); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HKEY_CURRENT_USER); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HKEY_LOCAL_MACHINE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__open_registry); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sys_version); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_DEBUG_BUILD); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_REGISTRY_KEY_DEBUG); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_REGISTRY_KEY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_version_info); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_QueryValue); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__search_registry); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_registry_key); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hkey); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_filepath); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__MS_WINDOWS); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_EXTENSION_SUFFIXES); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__LoaderBasics); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_filename_base); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tail_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SourceLoader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_mtime); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_stats); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_data); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__cache_bytecode); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_path); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_data); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__optimize); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dont_inherit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_compile); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source_to_code); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_never); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_always); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_size); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_memoryview); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_hash_based_pycs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__RAW_MAGIC_NUMBER); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dont_write_bytecode); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hash_based); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_source); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytes_data); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_code_object); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileLoader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hash); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_super); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_r); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ExtensionFileLoader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_open_code); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileReader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8_names_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_resource_reader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SourceFileLoader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_mtime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_size); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__mode); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mkdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileExistsError); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SourcelessFileLoader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_create_dynamic); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_dynamic); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_suffix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_any); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_10); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__NamespacePath); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_parent_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__last_parent_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__epoch); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__last_epoch); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_finder); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_finder); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_parent_path_names); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dot); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_5_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_module_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_attr_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__recalculate); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_path); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_8_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_index); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_12_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_item); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_13); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_NamespaceReader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_9); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PathFinder); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_invalidate_caches); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MetadataPathFinder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_importer_cache); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2_names_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_hooks); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_hooks); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hook); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileNotFoundError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_importer_cache); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__legacy_get_spec); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_spec); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_namespace_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_entry); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_find_distributions); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FileFinder); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__loaders); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_mtime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_cache); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__relaxed_path_cache); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_details); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_loaders); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__fill_cache); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_namespace); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tail_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cache_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_base_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_init_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_full_path); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fn); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_listdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PermissionError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_NotADirectoryError); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_contents); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lower_suffix_contents); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_hook_for_FileFinder); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_hook); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ns); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cpathname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_75); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_76_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_extension_suffixes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_extensions); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_source); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytecode); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_76); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__set_bootstrap_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__bootstrap_module); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_77); - _PyStaticUnicode_Dealloc((PyObject *)&importlib__bootstrap_external_toplevel_consts_78_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_supported_loaders); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_78); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_nt); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_posix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_all); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__pathseps_with_colon); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__CASE_INSENSITIVE_PLATFORMS_BYTES_KEY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___code__); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_DEBUG_BYTECODE_SUFFIXES); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_OPTIMIZED_BYTECODE_SUFFIXES); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__NamespaceLoader); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib__bootstrap_external_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ZipImportError); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_7_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_alt_path_sep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__zip_directory_cache); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__read_directory); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__files); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_archive); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_basename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_files); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_4_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_info); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__is_dir); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mi); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_modpath); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_info); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_code); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ispackage); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_data); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_8_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_toc_entry); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_10_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_10_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fullpath); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_11_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_type); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_12_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ZipReader); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_14_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_15_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_15_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_11_consts_15_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11_consts_15); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_12); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirpath); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__zip_searchorder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isbytecode); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_28); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ascii); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_21_consts_34); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_END_CENTRAL_DIR_SIZE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_STRING_END_ARCHIVE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAX_COMMENT_LEN); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UnicodeDecodeError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_translate); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cp437_table); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fp); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_offset); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_header_position); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_size); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_max_comment_start); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pos); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_header_size); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_header_offset); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_arc_offset); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_compress); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_time); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_date); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_crc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_data_size); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_name_size); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_extra_size); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_comment_size); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_offset); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_t); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_23_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_23_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decompress); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_23_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__importing_zlib); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_zlib); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_decompress_func); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_24_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_24_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_24_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_datapath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_raw_data); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_24); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__eq_mtime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_t1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_t2); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_25); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_26_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_26_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_pyc_source); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_mtime_and_size_of_source); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__unmarshal_code); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__normalize_line_endings); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_27); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__compile_source); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_28); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mktime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__parse_dostime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_d); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_29); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_c); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_o); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_IndexError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_uncompressed_size); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_30); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_31); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_32_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&zipimport_toplevel_consts_32_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_import_error); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel_consts_32); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__frozen_importlib); - _PyStaticCode_Dealloc((PyCodeObject *)&zipimport_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_1_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_1_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractmethod); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_funcobj); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractclassmethod); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_2_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_callable); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_2_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractstaticmethod); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_4_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_4_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_4_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstractproperty); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_6_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_cache_token); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_init); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_register); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_instancecheck); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_subclasscheck); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_dump); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__reset_registry); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__reset_caches); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ABCMeta); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mcls); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bases); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_namespace); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_register); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_subclass); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_instance); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__dump_registry); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_registry); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_cache); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_negative_cache); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_negative_cache_version); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_registry_clear); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc_caches_clear); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_10_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10_consts_9); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abc); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_frozenset); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_update_abstractmethods); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abstracts); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_scls); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ABC); - _PyStaticUnicode_Dealloc((PyObject *)&abc_toplevel_consts_15_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__py_abc); - _PyStaticCode_Dealloc((PyCodeObject *)&abc_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lookup); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_EncodedFile); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_BE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_LE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM32_BE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM32_LE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM64_BE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM64_LE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF16); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF16_LE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF16_BE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF32); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF32_LE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BOM_UTF32_BE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_CodecInfo); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Codec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_IncrementalEncoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_IncrementalDecoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamReader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamWriter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamReaderWriter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_StreamRecoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getencoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getdecoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getincrementalencoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getincrementaldecoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getreader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getwriter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_iterencode); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_iterdecode); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_strict_errors); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ignore_errors); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_replace_errors); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_xmlcharrefreplace_errors); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_backslashreplace_errors); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_namereplace_errors); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_register_error); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lookup_error); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_incrementalencoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_incrementaldecoder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_streamwriter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_streamreader); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_5_filename); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_12_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_12_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_12_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_input); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_14_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_14_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_14_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_5_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_final); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_16_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16_consts_8); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedIncrementalEncoder); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__buffer_encode); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_result); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_consumed); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_18_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18_consts_9); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_20_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20_consts_8); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedIncrementalDecoder); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__buffer_decode); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_22_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22_consts_9); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_stream); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_writelines); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_whence); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_10_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tb); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_11_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_24_consts_11_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_proto); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24_consts_11); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_24); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytebuffer); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_charbuffertype); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__empty_charbuffer); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_charbuffer); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_linebuffer); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_keepends); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_start); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_splitlines); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_chars); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_firstline); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_newdata); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_newchars); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decodedbytes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lines); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_9_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytes); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_9_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_readsize); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_line0withend); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_line0withoutend); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_readlines); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_10_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sizehint); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_11_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_StopIteration); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_14_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_15_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_16_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_17_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_18_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_26_consts_19_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26_consts_19); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_unknown); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_reader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_writer); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Reader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Writer); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_12_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_14_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_16_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_17_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_18_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_19_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_28_consts_20_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28_consts_20); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_28); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytesencoded); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_12_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytesdecoded); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_14_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_16_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_17_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_18_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_19_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_30_consts_20_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_data_encoding); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_encoding); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_30); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_35_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_b); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_buffering); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_srw); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_35); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_36_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_data_info); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_file_info); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sr); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_36); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_37_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_37); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_38_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_38); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_39_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_LookupError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_encoder); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_39); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_40_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decoder); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_40); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_41_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_41); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_42_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_42); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_43_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_output); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_43); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_44_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_44); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_45_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_45_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_45_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_make_identity_dict); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rng); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_45); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_46_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_make_encoding_map); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decoding_map); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_k); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_v); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel_consts_46); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_xmlcharrefreplace); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_backslashreplace); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_namereplace); - _PyStaticUnicode_Dealloc((PyObject *)&codecs_toplevel_consts_53); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__codecs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_why); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SystemError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_byteorder); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__false); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodings); - _PyStaticCode_Dealloc((PyCodeObject *)&codecs_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BlockingIOError); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_IOBase); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_RawIOBase); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_StringIO); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedIOBase); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedReader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedWriter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedRWPair); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BufferedRandom); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_TextIOBase); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UnsupportedOperation); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SEEK_SET); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SEEK_CUR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SEEK_END); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_DEFAULT_BUFFER_SIZE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_text_encoding); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_OpenWrapper); - _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&io_toplevel_consts_6_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_io); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__IOBase); - _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__RawIOBase); - _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__BufferedIOBase); - _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__TextIOBase); - _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__WindowsConsoleIO); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___author__); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_klass); - _PyStaticCode_Dealloc((PyCodeObject *)&io_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_5_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__f); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Awaitable); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Coroutine); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_AsyncIterable); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_AsyncIterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_AsyncGenerator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Hashable); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Iterable); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Generator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Reversible); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Sized); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Container); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Callable); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Collection); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Set); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MutableSet); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Mapping); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MutableMapping); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MappingView); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_KeysView); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ItemsView); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ValuesView); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Sequence); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MutableSequence); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ByteString); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_7); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__coro); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ag); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___mro__); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_methods); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_C); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_methods); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_B); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_17_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_17_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_20_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_20_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_GenericAlias); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_with_traceback); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_typ); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_val); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_GeneratorExit); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_22_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_24_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_24_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_24); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_StopAsyncIteration); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_26_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_asend); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_athrow); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_6_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_aclose); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_28_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_7); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_28); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_30_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_30_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_30); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_32_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_32); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_34_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_34_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_34); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_36_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_7); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_36); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_38_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_38_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_38); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_40_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_40_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_40); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_42_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_42_consts_2); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_42); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__CallableGenericAlias); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_3_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_3_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__is_param_expr); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_t_args); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_t_result); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__type_repr); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_5_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_a); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_44_consts_6_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_args); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_44); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_46_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ParamSpec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ConcatenateGenericAlias); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_typing); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_46_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_46_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Ellipsis); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_names); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_46); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_47_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_47_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_repr); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FunctionType); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_47); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_48_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_48_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_48); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_3_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_elem); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__from_iterable); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_8_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_it); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_9_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isdisjoint); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_11_consts_1_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_e); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_11_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_chain); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_12_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_12_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_13_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_14_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_15_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_maxsize); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__hash); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_50_consts_15_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAX); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MASK); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_n); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_h); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hx); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_15); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_50); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_discard); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_remove); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_52_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_11); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_52); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_54_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_11); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_54); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__mapping); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mapping); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_4_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_56_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_56); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_58_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_58_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_58_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_58); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_60_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_60_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_60_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_60); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_62_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_62_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_62); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__MutableMapping__marker); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_popitem); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_setdefault); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_64_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_10); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_64); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_range); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_10_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_stop); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sum); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_66_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_66); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_68_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_68); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_reverse); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_11_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_12_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_12_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&_collections_abc_toplevel_consts_70_consts_13_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_13); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel_consts_70); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_EllipsisType); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytes_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bytearray_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_keyiterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_valueiterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_itemiterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_list_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_list_reverseiterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_range_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_longrange_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_str_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tuple_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_zip); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_zip_iterator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_keys); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_values); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dict_items); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mappingproxy); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_generator); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_coroutine); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_async_generator); - _PyStaticCode_Dealloc((PyCodeObject *)&_collections_abc_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Quitter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_eof); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_1_filename); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SystemExit); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_3_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_4_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_os); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__data); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__lines); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__filenames); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirs); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_5_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_split); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__linecnt); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___setup); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_6_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Printer__setup); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MAXLINES); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_7_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_q); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_5_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_prompt); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_7); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Helper); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pydoc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_help); - _PyStaticUnicode_Dealloc((PyObject *)&_sitebuiltins_toplevel_consts_7_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel_consts_7); - _PyStaticCode_Dealloc((PyCodeObject *)&_sitebuiltins_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_commonprefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exists); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getatime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getctime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getmtime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getsize); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isfile); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_samefile); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sameopenfile); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_samestat); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_4_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_4_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISREG); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISDIR); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_7_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_8_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_atime); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_ctime); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_11_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_min); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_enumerate); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_s1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_s2); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_12_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_ino); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_dev); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_f1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_f2); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fstat); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fp1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fp2); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_15_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__splitext); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_altsep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_extsep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sepIndex); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_altsepIndex); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dotIndex); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_filenameIndex); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_16_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&genericpath_toplevel_consts_16_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_arg_types); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_funcname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hasstr); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_hasbytes); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel_consts_16); - _PyStaticCode_Dealloc((PyCodeObject *)&genericpath_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_nul); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_normcase); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isabs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_splitdrive); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_splitext); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_islink); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lexists); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ismount); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_expanduser); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_expandvars); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_normpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abspath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_curdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pardir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathsep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_defpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_devnull); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_realpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_unicode_filenames); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_relpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_commonpath); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_12_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_12_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_bothseps); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_LCMapStringEx); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_LOCALE_NAME_INVARIANT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_LCMAP_LOWERCASE); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_surrogateescape); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getfilesystemencoding); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__LCMapStringEx); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__LOCALE_NAME_INVARIANT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__LCMAP_LOWERCASE); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fsencode); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fsdecode); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_16_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_16_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_colon_sep); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_BytesWarning); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_genericpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_paths); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_seps); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_colon); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_result_drive); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_result_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_p_drive); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_p_path); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_18_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_18_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_upper); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_find); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_unc_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_normp); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_index2); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_19_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_19); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_21_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_22_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_23_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lstat); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISLNK); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_24_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_24); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__getvolumepathname); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_26_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_y); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_27_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_27_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_USERPROFILE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HOMEPATH); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HOMEDRIVE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_USERNAME); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_tilde); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_userhome); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_drive); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_target_user); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_current_user); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_27); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_environb); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_28_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_string); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ascii_letters); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_digits); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_varchars); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_quote); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_percent); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_brace); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rbrace); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dollar); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_res); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathlen); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_var); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_28); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__path_normpath); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_30_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_30); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_comps); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_31); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_32_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getcwdb); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__abspath_fallback); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cwd); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_32); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__getfullpathname); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_34_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_34); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__getfinalpathname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_readlink); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__nt_readlink); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_winerror); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__readlink_deep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_allowed_winerror); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_old_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ex); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_36); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__getfinalpathname_nonstrict); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_path); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_37); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_40_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_40_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_unc_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_had_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_initial_winerror); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spath); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_40); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getwindowsversion); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_44_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_44_consts_11); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_44_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_abs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_abs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_drive); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_rest); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_drive); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_rest); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_start_list); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_list); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_e1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_e2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rel_list); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_44); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_9); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_12); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_16); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&ntpath_toplevel_consts_45_consts_18_consts_0_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_drivesplits); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_split_paths); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_common); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel_consts_45); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__isdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__winapi); - _PyStaticCode_Dealloc((PyCodeObject *)&ntpath_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_11_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_sep); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_12_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_12); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_14_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_15_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_15); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_17_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_17); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_18); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_20_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_20); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_22_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dev1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dev2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ino1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ino2); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_23_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HOME); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ASCII); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_vxworks); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pwd); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getpwuid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getuid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pw_dir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getpwnam); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pwent); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_24_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_24_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__varprogb); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_re); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__varprog); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_span); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_group); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_end); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_j); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_24); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_empty); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dotdot); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_initial_slashes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_new_comps); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_comp); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_27); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_28_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_28); - _PyStaticUnicode_Dealloc((PyObject *)&posixpath_toplevel_consts_31_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__joinrealpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ok); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_31); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_newpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_link); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_32); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_34_consts_9); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_34_consts_10); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_34); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_7); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_8); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel_consts_35); - _PyStaticCode_Dealloc((PyCodeObject *)&posixpath_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_linesep); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_exec_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fdopen); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_5_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__exists); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_6_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_6_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_exports_list); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__exit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__have_functions); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__globals); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__set); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__add); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FACCESSAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_access); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHMODAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_chmod); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHOWNAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_chown); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FSTATAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FUTIMESAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_utime); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LINKAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_link); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_MKDIRAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_MKFIFOAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mkfifo); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_MKNODAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mknod); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_OPENAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_READLINKAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_RENAMEAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_SYMLINKAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_symlink); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_UNLINKAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rmdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_UTIMENSAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHDIR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_chdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHMOD); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FCHOWN); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FDOPENDIR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_scandir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FEXECVE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execve); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FTRUNCATE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FUTIMENS); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FUTIMES); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FPATHCONF); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pathconf); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_statvfs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fstatvfs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_FSTATVFS); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LCHFLAGS); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_chflags); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LCHMOD); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lchown); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LCHOWN); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LUTIMES); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_HAVE_LSTAT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_MS_WINDOWS); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_80_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exist_ok); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_makedirs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cdir); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_80); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_81_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_removedirs); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_81); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_82_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_renames); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_82); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_85_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_85_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_audit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__walk); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_walk); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_topdown); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_onerror); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_followlinks); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_85); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_dir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_symlink); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_nondirs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_walk_dirs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_scandir_it); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_error); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_walk_into); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_86); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_follow_symlinks); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dir_fd); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_90_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_90_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_RDONLY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_O_NONBLOCK); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__fwalk); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fwalk); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_orig_st); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_topfd); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_90); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_toppath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isbytes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_entries); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dirfd); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_err); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_91); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_93_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execv); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execl); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_93); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_94_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execle); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_env); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_94); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_95_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execvp); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execlp); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_95); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_96_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execvpe); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execlpe); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_96); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_97_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__execvpe); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_97); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_98_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_98); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_func); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_argrest); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_saved_exc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_last_exc); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_100); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_101_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PATH); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_101_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_catch_warnings); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_simplefilter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_bytes_environ); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_listb); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_101); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Environ); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodekey); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decodekey); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodevalue); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decodevalue); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__data); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_putenv); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_unsetenv); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_encodedkey); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_7_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_7_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_formatted_items); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_8_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_9_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_10_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_11_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_103_consts_12_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103_consts_12); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_103); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_str); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_105_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__createenviron); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_105); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_106_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getenv); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_106); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_108_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__check_bytes); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_108); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_109_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getenvb); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_109); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_1_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_111_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_111_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_111_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getfilesystemencodeerrors); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__fscodec); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_111); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fork); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnv); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_P_WAIT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_P_NOWAIT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_P_NOWAITO); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_116_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_116_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_waitpid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_WIFSTOPPED); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_waitstatus_to_exitcode); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__spawnvef); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_func); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_wpid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sts); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_116); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_117_consts_0); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_117); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_118_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnve); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_118); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_119_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnvp); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_119); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_120_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnvpe); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_120); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_122_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnl); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_122); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_123_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnle); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_123); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_127_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnlp); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_127); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_128_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_spawnlpe); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_128); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_134_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_w); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_134_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_134_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_shell); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bufsize); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_subprocess); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Popen); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PIPE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__wrap_close); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_popen); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cmd); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_proc); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_134); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__stream); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__proc); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_wait); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_returncode); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_135_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_135); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_138_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_138); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_139_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_139_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_139_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__fspath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_type); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_repr); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_139); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PathLike); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_141_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_141_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_141_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_141); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__AddedDllDirectory); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__cookie); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__remove_dll_directory); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_1_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_cookie); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_remove_dll_directory); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_5_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_143_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143_consts_5); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_143); - _PyStaticUnicode_Dealloc((PyObject *)&os_toplevel_consts_145_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__add_dll_directory); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_add_dll_directory); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel_consts_145); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__collections_abc); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__names); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_posixpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ntpath); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_dir_fd); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_effective_ids); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_fd); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_supports_follow_symlinks); - _PyStaticCode_Dealloc((PyCodeObject *)&os_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_3_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__trace); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_makepath); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_abs_paths); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_loader_module); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_removeduppaths); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_L); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_known_paths); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dircase); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_7_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__init_pathinfo); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_itemcase); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_flags); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_st_file_attributes); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_13_1); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_8_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_HIDDEN); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_HIDDEN); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_strip); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_traceback); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_format_exception); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exc_info); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_addpackage); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitedir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_record); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_5_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_9_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_9_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_addsitedir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitedircase); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_geteuid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getgid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getegid); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_no_user_site); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_check_enableusersite); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PYTHONUSERBASE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_emscripten); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_wasi); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_joinuser); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_11_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_11_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_APPDATA); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Python); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Library); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_11_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__framework); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__getuserbase); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_env_base); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_12_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_winver); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_userbase); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ver_nodot); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_USER_BASE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getuserbase); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_14_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_USER_SITE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ENABLE_USER_SITE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getusersitepackages); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_15_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_15_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_addusersitepackages); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_user_site); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_16_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_lib); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_16_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_16_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Lib); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_PREFIXES); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_platlibdir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_getsitepackages); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_prefixes); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitepackages); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_libdirs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_libdir); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_17_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_17_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_addsitepackages); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_18_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_18_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_18_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_quit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__sitebuiltins); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_setquit); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_copyright); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_java); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_credits); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_LICENSE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_license); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_19_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_setcopyright); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_here); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sethelper); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_libedit); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_write_history_file); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_write_history); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_consts_9_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_history); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_21_consts_1_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_atexit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_rlcompleter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_parse_and_bind); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_read_init_file); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_current_history_length); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_read_history_file); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_register_readline); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_21_consts_1_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_readline_doc); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_21_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___interactivehook__); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_enablerlcompleter); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___PYVENV_LAUNCHER__); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_4_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_conffile); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_22_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_true); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_22_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_home); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__base_executable); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_executable); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__home); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exec_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_venv); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_exe_dir); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_site_prefix); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_conf_basename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_candidate_confs); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_virtual_conf); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_system_site); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_23_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_sitecustomize); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_23_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execsitecustomize); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_24_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_usercustomize); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_24_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_execusercustomize); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_24); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_25_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_isolated); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_main); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_orig_path); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_25); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_7_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_7_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_26_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&site_toplevel_consts_26_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_argv); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_textwrap); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_dedent); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__script); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_user_base); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_no_site); - _PyStaticCode_Dealloc((PyCodeObject *)&site_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_11_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_11_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IMODE); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_12_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFMT); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_20_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFDIR); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_21_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFCHR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISCHR); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_22_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFBLK); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISBLK); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_23_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFREG); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_24_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFIFO); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISFIFO); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_24); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_25_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFLNK); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_25); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_26_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFSOCK); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISSOCK); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_27_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISDOOR); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_27); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_28_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISPORT); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_28); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_29_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISWHT); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_29); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_l); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_47); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_T); - _PyStaticUnicode_Dealloc((PyObject *)&stat_toplevel_consts_58_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__filemode_table); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_filemode); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_perm); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_table); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_bit); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_char); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel_consts_58); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_MODE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_INO); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_DEV); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_NLINK); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_UID); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_GID); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_SIZE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_ATIME); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_MTIME); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ST_CTIME); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFDOOR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFPORT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IFWHT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISUID); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISGID); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ENFMT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_ISVTX); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IREAD); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWRITE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IEXEC); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRWXU); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRUSR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWUSR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IXUSR); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRWXG); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRGRP); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWGRP); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IXGRP); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IRWXO); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IROTH); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IWOTH); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_S_IXOTH); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_NODUMP); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_IMMUTABLE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_APPEND); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_OPAQUE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_NOUNLINK); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_UF_COMPRESSED); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_ARCHIVED); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_IMMUTABLE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_APPEND); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_NOUNLINK); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_SF_SNAPSHOT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_ARCHIVE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_COMPRESSED); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_DEVICE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_DIRECTORY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_ENCRYPTED); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_INTEGRITY_STREAM); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_NORMAL); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_NOT_CONTENT_INDEXED); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_NO_SCRUB_DATA); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_OFFLINE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_READONLY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_REPARSE_POINT); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_SPARSE_FILE); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_SYSTEM); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_TEMPORARY); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_FILE_ATTRIBUTE_VIRTUAL); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__stat); - _PyStaticCode_Dealloc((PyCodeObject *)&stat_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_Loader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_contextmanager); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_16_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_16_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_17_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_17_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_resolve_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_character); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_18_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_18_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_18_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__find_spec_from_path); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_19_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_19_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_19_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_parent_name); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___initializing__); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__module_to_load); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_21_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_21_consts_1_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_package_wrapper); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_21_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_21_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_functools); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_wraps); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_package); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_22_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_loader_wrapper); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_22_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_22_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_set_loader); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_22); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_23_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_for_loader_wrapper); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_23_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_23_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_module_for_loader); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__LazyModule); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_loading); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_types); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_ModuleType); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_2_qualname); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_attr); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_original_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_attrs_then); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_attrs_now); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_attrs_updated); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_delattr); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_24_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_24); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_LazyLoader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_2_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str___check_eager_loader); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_3_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_3_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__LazyLoader__check_eager_loader); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_factory); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_4); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_5_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_6_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_RLock); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_util_toplevel_consts_26_consts_6_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_6); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel_consts_26); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_contextlib); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_util_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_machinery_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_machinery_toplevel_consts_13_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&importlib_machinery_toplevel_consts_13_filename); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_all_suffixes); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_machinery_toplevel_consts_13); - _PyStaticCode_Dealloc((PyCodeObject *)&importlib_machinery_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_path); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__TempModule); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__saved_module); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_2_filename); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_5_consts_4_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5_consts_4); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__ModifiedArgv0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__saved_value); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__sentinel); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_1_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_2_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_2_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_7_consts_3_qualname); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7_consts_3); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_9_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__run_code); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_globals); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_init_globals); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod_spec); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkg_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_script_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_fname); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_9); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_10_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__run_module_code); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_temp_module); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_mod_globals); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_6); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_8); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_10); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_13); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_14); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_16); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_11_consts_21); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_RuntimeWarning); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_util); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_module_details); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_existing); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkg_main_name); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_11); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__Error); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_12_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_12); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_15_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_main_module_details); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__run_module_as_main); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_alter_argv); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_main_globals); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_15); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_17_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_run_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_alter_sys); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_17); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_18_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_18_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_main_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_saved_main); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_18); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_read_code); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_pkgutil); - _PyStaticUnicode_Dealloc((PyObject *)&const_str__get_code_from_file); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_decoded_path); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_19); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_20_consts_0); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_20_consts_2); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_get_importer); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_imp); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_NullImporter); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_path_name); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_importer); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_is_NullImporter); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel_consts_20); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_consts_23); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_names_2); - _PyStaticUnicode_Dealloc((PyObject *)&runpy_toplevel_names_4); - _PyStaticCode_Dealloc((PyCodeObject *)&runpy_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_TestFrozenUtf8_1); - _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_1_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_1_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_1); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_TestFrozenUtf8_2); - _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_3_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_3); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_TestFrozenUtf8_4); - _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_5_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_5); - _PyStaticUnicode_Dealloc((PyObject *)&__hello___toplevel_consts_7_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel_consts_7); - _PyStaticUnicode_Dealloc((PyObject *)&const_str_initialized); - _PyStaticCode_Dealloc((PyCodeObject *)&__hello___toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&__phello___toplevel_consts_1_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&__phello___toplevel_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&__phello___toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&__phello___ham_toplevel_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&__phello___ham_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&__phello___ham_eggs_toplevel_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&__phello___ham_eggs_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&__phello___spam_toplevel_consts_1_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&__phello___spam_toplevel_consts_1); - _PyStaticCode_Dealloc((PyCodeObject *)&__phello___spam_toplevel); - _PyStaticUnicode_Dealloc((PyObject *)&frozen_only_toplevel_filename); - _PyStaticCode_Dealloc((PyCodeObject *)&frozen_only_toplevel); -} -int -_Py_Deepfreeze_Init(void) { - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_27) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_30) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_31) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_32) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_33) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_34) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_35) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_36) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_37) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_39) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_41) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_43) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_44) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_45) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_46) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_49) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_50) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_52) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_54) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_55) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_57) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_58) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_59) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_60) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel_consts_61) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_25) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_36) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_37) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_38) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_39) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_40) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_41) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_42) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_43) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_44) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_45) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_46) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_47) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_49) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_50) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_52) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_53) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_55) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_57) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_59) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_61) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_63) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_65) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_67) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_69) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_71) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_73) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_75) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_76) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_77) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel_consts_78) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib__bootstrap_external_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_25) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_27) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_28) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_29) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_30) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_31) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel_consts_32) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&zipimport_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_2_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_4_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&abc_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_12_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_12_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_14_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_14_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_28) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_30) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_35) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_36) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_37) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_38) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_39) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_40) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_41) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_42) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_43) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_44) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_45_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_45) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel_consts_46) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&codecs_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&io_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_17_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_20_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_24_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_28) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_30_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_30) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_32) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_34_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_34) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_36) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_38_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_38) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_40_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_40) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_42_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_42) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_44) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_46_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_46) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_47) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_48_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_48) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_50) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_52) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_54) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_56) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_58) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_60) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_62_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_62) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_64) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_66) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_68) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel_consts_70) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_collections_abc_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_7_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&_sitebuiltins_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&genericpath_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_27) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_28) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_30) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_31) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_32) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_34) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_36) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_37) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_40) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_44_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_44_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_44) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18_consts_0) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel_consts_45) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&ntpath_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_27) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_28) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_31) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_32) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_34_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_34_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_34) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11_consts_0) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel_consts_35) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&posixpath_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_6_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_80) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_81) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_82) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_85) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_86) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_90) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_91) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_93) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_94) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_95) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_96) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_97) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_98) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_100) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_101) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_7_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_103) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_105) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_106) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_108) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_109) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_111_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_111_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_111) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_116) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_117) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_118) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_119) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_120) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_122) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_123) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_127) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_128) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_134) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_135) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_138) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_139) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_141_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_141_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_141) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_143) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel_consts_145) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&os_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_8) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_9_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_11_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_14) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_21_consts_1_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_21_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_22_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_25) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_26_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&site_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_25) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_27) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_28) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_29) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel_consts_58) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&stat_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_16) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_21_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_21) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_22_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_22) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_23_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_23) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_24_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_24) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26_consts_6) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel_consts_26) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_util_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_machinery_toplevel_consts_13) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&importlib_machinery_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5_consts_4) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7_consts_2) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_9) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_10) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_11) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_12) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_15) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_17) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_18) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_19) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel_consts_20) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&runpy_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_3) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_5) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel_consts_7) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__hello___toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___toplevel_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___ham_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___ham_eggs_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___spam_toplevel_consts_1) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&__phello___spam_toplevel) < 0) { - return -1; - } - if (_PyStaticCode_InternStrings((PyCodeObject *)&frozen_only_toplevel) < 0) { - return -1; - } - return 0; -} From 697323b4bedfd4bb65f626846144d257b7420c59 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Wed, 19 Mar 2025 20:30:32 -0700 Subject: [PATCH 4/9] add test for optimization --- Lib/test/test_capi/test_opt.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index c985009e120203..b6a36e2e7c13c0 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -1418,6 +1418,7 @@ def testfunc(n): self.assertNotIn("_GUARD_NOS_INT", uops) self.assertNotIn("_GUARD_TOS_INT", uops) + def test_decref_escapes(self): class Convert9999ToNone: def __del__(self): @@ -1564,6 +1565,23 @@ def f(n): # But all of the appends we care about are still there: self.assertEqual(uops.count("_CALL_LIST_APPEND"), len("ABCDEFG")) +def test_compare_pop_two_load_const_inline_borrow(self): + def testfunc(n): + x = 0 + for _ in range(n): + a = 10 + b = 10 + if a == b: + x += 1 + return x + + res, ex = self._run_with_optimizer(testfunc, TIER2_THRESHOLD) + self.assertEqual(res, 1) + self.assertIsNotNone(ex) + uops = get_opnames(ex) + self.assertNotIn("_COMPARE_OP_INT", uops) + self.assertNotIn("_POP_TWO_LOAD_CONST_INLINE_BORROW", uops) + def global_identity(x): return x From 6c98c24075f2557a36aa4c315f5a23b5d8708eb4 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Wed, 19 Mar 2025 20:32:54 -0700 Subject: [PATCH 5/9] fix assert --- Lib/test/test_capi/test_opt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index b6a36e2e7c13c0..b82b211982a69a 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -1580,7 +1580,7 @@ def testfunc(n): self.assertIsNotNone(ex) uops = get_opnames(ex) self.assertNotIn("_COMPARE_OP_INT", uops) - self.assertNotIn("_POP_TWO_LOAD_CONST_INLINE_BORROW", uops) + self.assertIn("_POP_TWO_LOAD_CONST_INLINE_BORROW", uops) def global_identity(x): return x From 5cf0e166c86417cf4d401addf52a15777c35a8a1 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Wed, 19 Mar 2025 20:42:28 -0700 Subject: [PATCH 6/9] remove extra newline --- Lib/test/test_capi/test_opt.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index b82b211982a69a..695c0c6a932b1e 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -1418,7 +1418,6 @@ def testfunc(n): self.assertNotIn("_GUARD_NOS_INT", uops) self.assertNotIn("_GUARD_TOS_INT", uops) - def test_decref_escapes(self): class Convert9999ToNone: def __del__(self): From 69d14ef8ed725813ad7ca6d2bc0505e292019bf9 Mon Sep 17 00:00:00 2001 From: "blurb-it[bot]" <43283697+blurb-it[bot]@users.noreply.github.com> Date: Thu, 20 Mar 2025 03:45:24 +0000 Subject: [PATCH 7/9] =?UTF-8?q?=F0=9F=93=9C=F0=9F=A4=96=20Added=20by=20blu?= =?UTF-8?q?rb=5Fit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2025-03-20-03-45-20.gh-issue-130415.VtJhoG.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Core_and_Builtins/2025-03-20-03-45-20.gh-issue-130415.VtJhoG.rst diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2025-03-20-03-45-20.gh-issue-130415.VtJhoG.rst b/Misc/NEWS.d/next/Core_and_Builtins/2025-03-20-03-45-20.gh-issue-130415.VtJhoG.rst new file mode 100644 index 00000000000000..6e9a3c1a4719d3 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2025-03-20-03-45-20.gh-issue-130415.VtJhoG.rst @@ -0,0 +1 @@ +Optimize comparison of two constants in JIT builds From e40e580d6163b0fd75d359c822f90fda72d70835 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Wed, 19 Mar 2025 21:03:41 -0700 Subject: [PATCH 8/9] Apply suggestions from code review Co-authored-by: Brandt Bucher --- Lib/test/test_capi/test_opt.py | 2 +- Python/bytecodes.c | 2 +- Python/optimizer_bytecodes.c | 10 +++------- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index 695c0c6a932b1e..ead893741be079 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -1575,7 +1575,7 @@ def testfunc(n): return x res, ex = self._run_with_optimizer(testfunc, TIER2_THRESHOLD) - self.assertEqual(res, 1) + self.assertEqual(res, TIER2_THRESHOLD) self.assertIsNotNone(ex) uops = get_opnames(ex) self.assertNotIn("_COMPARE_OP_INT", uops) diff --git a/Python/bytecodes.c b/Python/bytecodes.c index ebc9af0a63a365..b5f2b3205ef437 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -5132,7 +5132,7 @@ dummy_func( value = PyStackRef_FromPyObjectImmortal(ptr); } - tier2 pure op (_POP_TWO_LOAD_CONST_INLINE_BORROW, (ptr/4, pop1, pop2 -- value)) { + tier2 pure op(_POP_TWO_LOAD_CONST_INLINE_BORROW, (ptr/4, pop1, pop2 -- value)) { PyStackRef_CLOSE(pop2); PyStackRef_CLOSE(pop1); value = PyStackRef_FromPyObjectImmortal(ptr); diff --git a/Python/optimizer_bytecodes.c b/Python/optimizer_bytecodes.c index e111501ca3867e..7089bb63b3d378 100644 --- a/Python/optimizer_bytecodes.c +++ b/Python/optimizer_bytecodes.c @@ -457,15 +457,11 @@ dummy_func(void) { if (tmp == NULL) { goto error; } + assert(PyBool_Check(tmp)); + assert(_Py_IsImmortal(tmp)); + REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)tmp); res = sym_new_const(ctx, tmp); Py_DECREF(tmp); - - if (_Py_IsImmortal(res)) { - REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)tmp); - } - else { - res = sym_new_type(ctx, &PyBool_Type); - } } else { res = sym_new_type(ctx, &PyBool_Type); From 76213594a8769bf4ee37114dd3f2b178346e0a83 Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Thu, 20 Mar 2025 19:43:08 -0700 Subject: [PATCH 9/9] Fix indentation, remove extra check --- Lib/test/test_capi/test_opt.py | 4 ++-- Python/optimizer_bytecodes.c | 3 +-- Python/optimizer_cases.c.h | 12 ++++-------- 3 files changed, 7 insertions(+), 12 deletions(-) diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index ead893741be079..cc6b4c88fe0fce 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -1531,7 +1531,7 @@ def f(n): # But all of the appends we care about are still there: self.assertEqual(uops.count("_CALL_LIST_APPEND"), len("ABCDEFG")) -def test_narrow_type_to_constant_str_empty(self): + def test_narrow_type_to_constant_str_empty(self): def f(n): trace = [] for i in range(n): @@ -1564,7 +1564,7 @@ def f(n): # But all of the appends we care about are still there: self.assertEqual(uops.count("_CALL_LIST_APPEND"), len("ABCDEFG")) -def test_compare_pop_two_load_const_inline_borrow(self): + def test_compare_pop_two_load_const_inline_borrow(self): def testfunc(n): x = 0 for _ in range(n): diff --git a/Python/optimizer_bytecodes.c b/Python/optimizer_bytecodes.c index 7089bb63b3d378..c443dcf4fe9648 100644 --- a/Python/optimizer_bytecodes.c +++ b/Python/optimizer_bytecodes.c @@ -446,8 +446,7 @@ dummy_func(void) { } op(_COMPARE_OP_INT, (left, right -- res)) { - if (sym_is_const(ctx, left) && sym_is_const(ctx, right) && - sym_matches_type(left, &PyLong_Type) && sym_matches_type(right, &PyLong_Type)) + if (sym_is_const(ctx, left) && sym_is_const(ctx, right)) { assert(PyLong_CheckExact(sym_get_const(ctx, left))); assert(PyLong_CheckExact(sym_get_const(ctx, right))); diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index dd1af6d447d302..02e2842988fc35 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -1282,8 +1282,7 @@ JitOptSymbol *res; right = stack_pointer[-1]; left = stack_pointer[-2]; - if (sym_is_const(ctx, left) && sym_is_const(ctx, right) && - sym_matches_type(left, &PyLong_Type) && sym_matches_type(right, &PyLong_Type)) + if (sym_is_const(ctx, left) && sym_is_const(ctx, right)) { assert(PyLong_CheckExact(sym_get_const(ctx, left))); assert(PyLong_CheckExact(sym_get_const(ctx, right))); @@ -1295,17 +1294,14 @@ if (tmp == NULL) { goto error; } + assert(PyBool_Check(tmp)); + assert(_Py_IsImmortal(tmp)); + REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)tmp); res = sym_new_const(ctx, tmp); stack_pointer[0] = res; stack_pointer += 1; assert(WITHIN_STACK_BOUNDS()); Py_DECREF(tmp); - if (_Py_IsImmortal(res)) { - REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)tmp); - } - else { - res = sym_new_type(ctx, &PyBool_Type); - } } else { res = sym_new_type(ctx, &PyBool_Type);